Category

Genome Variant Analysis


Usage

java -jar GenomeAnalysisTK.jar -T PrintReads -R reference.fasta -I input1.bam -I input2.bam -o output.bam --read_filter MappingQualityZero // Prints the first 2000 reads in the BAM file java -jar GenomeAnalysisTK.jar -T PrintReads -R reference.fasta -I input.bam -o output.bam -n 2000 // Downsamples BAM file to 25% java -jar GenomeAnalysisTK.jar -T PrintReads -R reference.fasta -I input.bam -o output.bam -dfrac 0.25


Manual

Argument name(s)Default valueSummary
Optional Outputs
--out
 -o
stdoutWrite output to this BAM filename instead of STDOUT
Optional Parameters
--number
 -n
-1Print the first n reads from the file, discarding the rest
--platform
NAExclude all reads with this platform from the output
--readGroup
NAExclude all reads with this read group from the output
--sample_file
 -sf
[]File containing a list of samples (one per line). Can be specified multiple times
--sample_name
 -sn
[]Sample name to be included in the analysis. Can be specified multiple times.
Optional Flags
--simplify
 -s
falseSimplify all reads


Share your experience or ask a question