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