Entering edit mode
12.3 years ago
Avoks
▴
40
Hi all,
I am trying to run a batch file with the Haploview command line interface but I can't seem to figure out how to get my output into a folder as individual files.
java -jar Haploview.jar -n -out Results -batch file_test.txt -blockoutput ALL -minMAF 0.05 -check -svg -pairwiseTagging
java -jar Haploview.jar -n -out \Results\ -batch file_test.txt -blockoutput ALL -minMAF 0.05 -check -svg -pairwiseTagging
java -jar Haploview.jar -n -out "\Results\" -batch file_test.txt -blockoutput ALL -minMAF 0.05 -check -svg -pairwiseTagging
None of these seem to give the desired result. Any suggestions will be greatly appreciated.
Thanks.
-Avoks
What exactly happens when you run the command? Does the results folder exist and spelled right (case sensitive)?
Hi Dk. The folder does exist. The first option creates Results.TAGS in the working directory, one of the files to be created per file in the batch input and just overwrites it over and over so there are results for just one entry. The second and third options are similar. They create a file simply called ".TAGS" in the Results folder and overwrites it just like the first option. The input for the -out argument is meant to be <fileroot> and I think that's where the Results folder is located.
Sorted...perl script.