Renders, in SAM/BAM format, all reads from the input data set in the order in which they appear in the input file.
PrintReads can dynamically merge the contents of multiple input BAM files, resulting in merged output sorted in coordinate order. Can also optionally filter reads based on the --read_filter command line argument.
One or more bam files.
A single processed bam file.
java -Xmx2g -jar GenomeAnalysisTK.jar \ -R ref.fasta \ -T PrintReads \ -o output.bam \ -I input1.bam \ -I input2.bam \ --read_filter MappingQualityZero // Prints the first 2000 reads in the BAM file java -Xmx2g -jar GenomeAnalysisTK.jar \ -R ref.fasta \ -T PrintReads \ -o output.bam \ -I input.bam \ -n 2000 // Downsamples BAM file to 25% java -Xmx2g -jar GenomeAnalysisTK.jar \ -R ref.fasta \ -T PrintReads \ -o output.bam \ -I input.bam \ -ds 0.25
| Name | Type | Default value | Summary |
|---|---|---|---|
| Required | |||
| --out | SAMFileWriter | stdout | Write output to this BAM filename instead of STDOUT |
| Optional | |||
| --downsample_coverage | double | 1.0 | Downsample BAM to desired coverage |
| --number | int | -1 | Print the first n reads from the file, discarding the rest |
| --platform | String | NA | Exclude all reads with this platform from the output |
| --readGroup | String | NA | Exclude all reads with this read group from the output |
| --sample_file | Set[File] | [] | File containing a list of samples (one per line). Can be specified multiple times |
| --sample_name | Set[String] | [] | Sample name to be included in the analysis. Can be specified multiple times. |
| --simplify | boolean | false | Simplify all reads. |
Downsample BAM to desired coverage. Downsamples the bam file by the given ratio, printing only approximately the given percentage of reads. The downsampling is balanced (over the entire coverage)
Print the first n reads from the file, discarding the rest. Only prints the first n reads of the file
Write output to this BAM filename instead of STDOUT.
Exclude all reads with this platform from the output. For example, --platform ILLUMINA or --platform 454.
Exclude all reads with this read group from the output.
File containing a list of samples (one per line). Can be specified multiple times. Only reads from samples listed in the provided file(s) will be included in the output.
Sample name to be included in the analysis. Can be specified multiple times.. Only reads from the sample(s) will be included in the output.
Simplify all reads.. Erase all extra attributes in the read but keep the read group information
See also Documentation index | GATK Site | GATK support forum
GATK version 2.3-9-ge5ebf34 built at 2013/01/11 22:47:55.