annotate tools/picard/rgPicardLibComplexity.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool name="Estimate Library Complexity" id="rgEstLibComp" version="0.01">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 picard_wrapper.py -i "$input_file" -n "$out_prefix" --tmpdir "${__new_file_path__}" --minid "$minIDbases"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 --maxdiff "$maxDiff" --minmeanq "$minMeanQ" --readregex "$readRegex" --optdupdist "$optDupeDist"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 -j "${GALAXY_DATA_INDEX_DIR}/shared/jars/EstimateLibraryComplexity.jar" -d "$html_file.files_path" -t "$html_file"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <param format="bam,sam" name="input_file" type="data" label="SAM/BAM dataset"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 help="If empty, upload or import a SAM/BAM dataset."/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <param name="out_prefix" value="Library Complexity" type="text"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 label="Title for the output file" help="Use this remind you what the job was for." size="80" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <param name="minIDbases" value="5" type="integer" label="Minimum identical bases at starts of reads for grouping" size="5"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 help="Total_reads / 4^max_id_bases reads will be compared at a time. Lower numbers = more accurate results and exponentially more time/memory." />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 <param name="maxDiff" value="0.03" type="float"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 label="Maximum difference rate for identical reads" size="5"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 help="The maximum rate of differences between two reads to call them identical" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <param name="minMeanQ" value="20" type="integer"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 label="Minimum percentage" size="5"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 help="The minimum mean quality of bases in a read pair. Lower average quality reads filtered out from all calculations" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <param name="readRegex" value="[a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*" type="text" size="120"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 label="Regular expression that can be used to parse read names in the incoming SAM file"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 help="Names are parsed to extract: tile/region, x coordinate and y coordinate, to estimate optical duplication rate" >
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <sanitizer>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <valid initial="string.printable">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <remove value="&apos;"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 </valid>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <mapping initial="none">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <add source="&apos;" target="__sq__"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 </mapping>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 </sanitizer>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 <param name="optDupeDist" value="100" type="text"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 label="The maximum offset between two duplicte clusters in order to consider them optical duplicates." size="5"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 help="e.g. 5-10 pixels. Later Illumina software versions multiply pixel values by 10, in which case 50-100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 <data format="html" name="html_file" label="${out_prefix}_lib_complexity.html"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <param name="input_file" value="picard_input_tiny.sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <param name="out_prefix" value="Library Complexity" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 <param name="minIDbases" value="5" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 <param name="maxDiff" value="0.03" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 <param name="minMeanQ" value="20" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 <param name="readRegex" value="[a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 <param name="optDupeDist" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 <output name="html_file" file="picard_output_estlibcomplexity_tinysam.html" ftype="html" lines_diff="30" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 .. class:: infomark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 **Purpose**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 Attempts to estimate library complexity from sequence alone.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 Does so by sorting all reads by the first N bases (5 by default) of each read and then
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 comparing reads with the first N bases identical to each other for duplicates. Reads are considered to be
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 duplicates 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).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 Reads of poor quality are filtered out so as to provide a more accurate estimate.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 The filtering removes reads with any no-calls in the first N bases or with a mean base quality lower than
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 MIN_MEAN_QUALITY across either the first or second read.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 The algorithm attempts to detect optical duplicates separately from PCR duplicates and excludes these in the
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 calculation of library size. Also, since there is no alignment to screen out technical reads one
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 further filter is applied on the data. After examining all reads a histogram is built of
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 [#reads in duplicate set -> #of duplicate sets]; all bins that contain exactly one duplicate set are
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 then removed from the histogram as outliers before library size is estimated.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 **Picard documentation**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 This is a Galaxy wrapper for EstimateLibraryComplexity, a part of the external package Picard-tools_.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 .. _Picard-tools: http://www.google.com/search?q=picard+samtools
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 .. class:: infomark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 **Inputs, outputs, and parameters**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 Picard documentation says (reformatted for Galaxy):
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 .. csv-table::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 :header-rows: 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 Option Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 "INPUT=File","One or more files to combine and estimate library complexity from. Reads can be mapped or unmapped. This option may be specified 0 or more times."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 "OUTPUT=File","Output file to writes per-library metrics to. Required."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 "MIN_IDENTICAL_BASES=Integer","The minimum number of bases at the starts of reads that must be identical for reads to be grouped together for duplicate detection. 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 value: 5."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 "MAX_DIFF_RATE=Double","The maximum rate of differences between two reads to call them identical. Default value: 0.03. "
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 "MIN_MEAN_QUALITY=Integer","The minimum mean quality of the bases in a read pair for the read to be analyzed. Reads with lower average quality are filtered out and not considered in any calculations. Default value: 20."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 "READ_NAME_REGEX=String","Regular expression that can be used to parse read names in the incoming SAM file. 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. The regular expression should contain three capture groups for the three variables, in order. Default value: [a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*. This option can be set to 'null' to clear the default value."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 "OPTICAL_DUPLICATE_PIXEL_DISTANCE=Integer","The maximum offset between two duplicte clusters in order to consider them optical duplicates. This should usually be set to some fairly small number (e.g. 5-10 pixels) unless using later versions of the Illumina pipeline that multiply pixel values by 10, in which case 50-100 is more normal. Default value: 100"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98 "CREATE_MD5_FILE=Boolean","Whether to create an MD5 digest for any BAM files created. Default value: false. This option can be set to 'null' to clear the default value. "
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100 .. class:: warningmark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102 **Warning on SAM/BAM quality**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104 Many SAM/BAM files produced externally and uploaded to Galaxy do not fully conform to SAM/BAM specifications. Galaxy deals with this by using the **LENIENT**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 flag when it runs Picard, which allows reads to be discarded if they're empty or don't map. This appears
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 to be the only way to deal with SAM/BAM that cannot be parsed.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 .. class:: infomark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 **Note on the Regular Expression**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 (from the Picard docs)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 This tool requires a valid regular expression to parse out the read names in the incoming SAM or BAM file.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 These values are used to estimate the rate of optical duplication in order to give a more accurate estimated library size.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115 The regular expression should contain three capture groups for the three variables, in order.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 Default value: [a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 </tool>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122