Fixed up examples: pasting from wiki still had old rod syntax
This commit is contained in:
parent
297c9e513c
commit
c193f52e5d
|
|
@ -64,11 +64,11 @@ import static java.lang.Math.log10;
|
||||||
* <pre>
|
* <pre>
|
||||||
* java -Xmx4000m -jar dist/GenomeAnalysisTK.jar \
|
* java -Xmx4000m -jar dist/GenomeAnalysisTK.jar \
|
||||||
* -R reffile.fasta -T BeagleOutputToVCF \
|
* -R reffile.fasta -T BeagleOutputToVCF \
|
||||||
* -B:variant,VCF input_vcf.vcf \
|
* -V input_vcf.vcf \
|
||||||
* -B:beagleR2,BEAGLE /myrun.beagle_output.r2 \
|
* -beagleR2:BEAGLE /myrun.beagle_output.r2 \
|
||||||
* -B:beaglePhased,BEAGLE /myrun.beagle_output.phased \
|
* -beaglePhased:BEAGLE /myrun.beagle_output.phased \
|
||||||
* -B:beagleProbs,BEAGLE /myrun.beagle_output.gprobs \
|
* -beagleProbs:BEAGLE /myrun.beagle_output.gprobs \
|
||||||
* --out output_vcf.vcf
|
* -o output_vcf.vcf
|
||||||
* </pre>
|
* </pre>
|
||||||
|
|
||||||
<p> Note that Beagle produces some of these files compressed as .gz, so gunzip must be run on them before walker is run in order to decompress them </p>
|
<p> Note that Beagle produces some of these files compressed as .gz, so gunzip must be run on them before walker is run in order to decompress them </p>
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@ import java.util.*;
|
||||||
* <pre>
|
* <pre>
|
||||||
* java -Xmx2g -jar dist/GenomeAnalysisTK.jar -L 20 \
|
* java -Xmx2g -jar dist/GenomeAnalysisTK.jar -L 20 \
|
||||||
* -R reffile.fasta -T ProduceBeagleInput \
|
* -R reffile.fasta -T ProduceBeagleInput \
|
||||||
* -B:variant,VCF path_to_input_vcf/inputvcf.vcf -o path_to_beagle_output/beagle_output
|
* -V path_to_input_vcf/inputvcf.vcf -o path_to_beagle_output/beagle_output
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue