annotate picard_EstimateLibraryComplexity.xml @ 5:3d4f1fa26f0e draft

Uploaded
author devteam
date Tue, 16 Dec 2014 19:03:21 -0500
parents
children 4ff1e04010e6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
1 <tool name="EstimateLibraryComplexity" id="picard_EstimateLibraryComplexity" version="1.126.0">
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
2 <description>assess sequence library complexity from read sequences</description>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
3 <requirements>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
4 <requirement type="package" version="1.126.0">picard</requirement>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
5 </requirements>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
6
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
7 <macros>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
8 <import>picard_macros.xml</import>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
9 </macros>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
10
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
11 <command>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
12 @java_options@
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
13
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
14 java -jar \$JAVA_JAR_PATH/picard.jar
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
15 EstimateLibraryComplexity
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
16
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
17 INPUT="${inputFile}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
18 OUTPUT="${outFile}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
19
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
20 MIN_IDENTICAL_BASES="${min_identical_bases}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
21 MAX_DIFF_RATE="${max_diff_rate}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
22 MIN_MEAN_QUALITY="${min_mean_quality}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
23 MAX_GROUP_RATIO="${max_group_ratio}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
24 READ_NAME_REGEX="${read_name_regex}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
25 OPTICAL_DUPLICATE_PIXEL_DISTANCE="${optical_duplicate_pixel_distance}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
26
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
27 VALIDATION_STRINGENCY="${validation_stringency}"
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
28 QUIET=true
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
29 VERBOSITY=ERROR
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
30
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
31 </command>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
32 <inputs>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
33 <param format="bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset" />
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
34 <param name="min_identical_bases" type="integer" value="5" label="The minimum number of bases at the starts of reads that must be identical for reads to be grouped together for duplicate detection" help="MIN_IDENTICAL_BASES; In effect total_reads / 4^max_id_bases reads will be compared at a time, so lower numbers will produce more accurate results but consume exponentially more memory and CPU; default=5"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
35 <param name="max_diff_rate" type="float" value="0.03" label="The maximum rate of differences between two reads to call them identical" help="MAX_DIFF_RATE; default=0.03"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
36 <param name="min_mean_quality" type="integer" min="0" max="93" value="20" label="The minimum mean quality of the bases in a read pair for the read to be analyzed" help="MIN_MEAN_QUALITY; Reads with lower average quality are filtered out and not considered in any calculations; default=20"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
37 <param name="max_group_ratio" type="integer" value="500" label="Do not process self-similar groups that are this many times over the mean expected group size" help="MAX_GROUP_RATIO; I.e. if the input contains 10m read pairs and MIN_IDENTICAL_BASES is set to 5, then the mean expected group size would be approximately 10 reads; default-500"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
38
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
39 <param name="read_name_regex" type="text" size="40" value="[a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*." label="Regular expression that can be used to parse read names in the incoming SAM/BAM dataset" help="READ_NAME_REGEX; Read names are parsed to extract three variables: tile/region, x coordinate and y coordinate. These values are used to estimate the rate of optical duplication in order to give a more accurate estimated library size. See help below for more info; default=[a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*.">
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
40 <sanitizer>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
41 <valid initial="string.printable">
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
42 </valid>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
43 </sanitizer>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
44 </param>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
45 <param name="optical_duplicate_pixel_distance" type="integer" value="100" min="0" max="500" label="The maximum offset between two duplicte clusters in order to consider them optical duplicates" help="OPTICAL_DUPLICATE_PIXEL_DISTANCE; default=100"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
46
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
47 <expand macro="VS" />
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
48
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
49 </inputs>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
50
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
51 <outputs>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
52 <data format="tabular" name="outFile" label="${tool.name} on ${on_string}: Library complexity report"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
53 </outputs>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
54
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
55 <tests>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
56 <test>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
57 <param name="inputFile" value="picard_EstimateLibraryComplexity.bam" ftype="bam"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
58 <param name="min_identical_bases" value="5"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
59 <param name="max_diff_rate" value="0.03"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
60 <param name="min_mean_quality" value="20"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
61 <param name="read_name_regex" value="[a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*."/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
62 <param name="optical_duplicate_pixel_distance" value="100"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
63 <param name="max_group_ratio" value="500"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
64 <param name="validation_stringency" value="LENIENT"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
65 <output name="outFile" file="picard_EstimateLibraryComplexity_test1.tab" ftype="tabular" lines_diff="4"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
66 </test>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
67 </tests>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
68
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
69 <stdio>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
70 <exit_code range="1:" level="fatal"/>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
71 </stdio>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
72
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
73 <help>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
74
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
75 **Purpose**
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
76
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
77 Attempts to estimate library complexity from sequence of read pairs alone. Does so by sorting all reads by the first N bases (5 by default)
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
78 of each read and then comparing reads with the first N bases identical to each other for duplicates. Reads are considered to be duplicates
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
79 if they match each other with no gaps and an overall mismatch rate less than or equal to MAX_DIFF_RATE (0.03 by default).
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
80
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
81 Reads of poor quality are filtered out so as to provide a more accurate estimate. The filtering removes reads with any no-calls in the first
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
82 N bases or with a mean base quality lower than MIN_MEAN_QUALITY across either the first or second read.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
83
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
84 Unpaired reads are ignored in this computation.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
85 The algorithm attempts to detect optical duplicates separately from PCR duplicates and excludes these in the calculation of library size.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
86
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
87 Also, since there is no alignment to screen out technical reads one further filter is applied on the data. After examining all reads a Histogram
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
88 is built of [#reads in duplicate set -> #of duplicate sets]; all bins that contain exactly one duplicate set are then removed from the Histogram
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
89 as outliers before library size is estimated.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
90
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
91 @dataset_collections@
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
92
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
93 @description@
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
94
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
95 MIN_IDENTICAL_BASES=Integer The minimum number of bases at the starts of reads that must be identical for reads to be
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
96 grouped together for duplicate detection. In effect total_reads / 4^max_id_bases reads
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
97 will be compared at a time, so lower numbers will produce more accurate results but
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
98 consume exponentially more memory and CPU. Default value: 5.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
99
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
100 MAX_DIFF_RATE=Double The maximum rate of differences between two reads to call them identical. Default value:
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
101 0.03.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
102
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
103 MIN_MEAN_QUALITY=Integer The minimum mean quality of the bases in a read pair for the read to be analyzed. Reads
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
104 with lower average quality are filtered out and not considered in any calculations.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
105 Default value: 20.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
106
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
107 MAX_GROUP_RATIO=Integer Do not process self-similar groups that are this many times over the mean expected group
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
108 size. I.e. if the input contains 10m read pairs and MIN_IDENTICAL_BASES is set to 5, then
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
109 the mean expected group size would be approximately 10 reads. Default value: 500.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
110
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
111 READ_NAME_REGEX=String Regular expression that can be used to parse read names in the incoming SAM file. Read
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
112 names are parsed to extract three variables: tile/region, x coordinate and y coordinate.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
113 These values are used to estimate the rate of optical duplication in order to give a more
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
114 accurate estimated library size. Set this option to null to disable optical duplicate
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
115 detection. The regular expression should contain three capture groups for the three
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
116 variables, in order. It must match the entire read name. Note that if the default regex
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
117 is specified, a regex match is not actually done, but instead the read name is split on
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
118 colon character. For 5 element names, the 3rd, 4th and 5th elements are assumed to be
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
119 tile, x and y values. For 7 element names (CASAVA 1.8), the 5th, 6th, and 7th elements
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
120 are assumed to be tile, x and y values. Default value:
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
121 [a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
122
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
123 OPTICAL_DUPLICATE_PIXEL_DISTANCE=Integer
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
124 The maximum offset between two duplicte clusters in order to consider them optical
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
125 duplicates. This should usually be set to some fairly small number (e.g. 5-10 pixels)
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
126 unless using later versions of the Illumina pipeline that multiply pixel values by 10, in
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
127 which case 50-100 is more normal. Default value: 100.
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
128
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
129
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
130 @more_info@
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
131
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
132 </help>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
133 </tool>
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
134
3d4f1fa26f0e Uploaded
devteam
parents:
diff changeset
135