Mercurial > repos > devteam > picard_122_up
comparison picard_MarkDuplicates.xml @ 0:b76a4f17bbbb draft
Uploaded
author | devteam |
---|---|
date | Thu, 23 Oct 2014 11:31:30 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b76a4f17bbbb |
---|---|
1 <tool name="MarkDuplicates" id="picard_MarkDuplicates" version="1.122.0"> | |
2 <description>examine aligned records in BAM datasets to locate duplicate molecules</description> | |
3 <requirements> | |
4 <requirement type="package" version="1.122.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/MarkDuplicates.jar | |
15 | |
16 INPUT="${inputFile}" | |
17 OUTPUT="${outFile}" | |
18 | |
19 METRICS_FILE="${metrics_file}" | |
20 #for $element in $comments: | |
21 COMMENT="${element.comment}" | |
22 #end for | |
23 REMOVE_DUPLICATES="${remove_duplicates}" | |
24 ASSUME_SORTED="${assume_sorted}" | |
25 | |
26 DUPLICATE_SCORING_STRATEGY="${duplicate_scoring_strategy}" | |
27 | |
28 READ_NAME_REGEX="${read_name_regex}" | |
29 OPTICAL_DUPLICATE_PIXEL_DISTANCE="${optical_duplicate_pixel_distance}" | |
30 | |
31 VALIDATION_STRINGENCY="${validation_stringency}" | |
32 QUIET=true | |
33 VERBOSITY=ERROR | |
34 | |
35 </command> | |
36 <inputs> | |
37 <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"/> | |
38 <repeat name="comments" title="Comment" min="0" help="You can provide multiple comments"> | |
39 <param name="comment" type="text" size="50" label="Add this comment to BAM dataset"/> | |
40 </repeat> | |
41 <param name="remove_duplicates" type="boolean" label="If true do not write duplicates to the output file instead of writing them with appropriate flags set" help="REMOVE_DUPLICATES; default=False"/> | |
42 <param name="assume_sorted" type="boolean" label="Assume the input file is already sorted" checked="true" truevalue="true" falsevalue="false" help="ASSUME_SORTED; default=True"/> | |
43 | |
44 <param name="duplicate_scoring_strategy" type="select" label="The scoring strategy for choosing the non-duplicate among candidates" help="DUPLICATE_SCORING_STRATEGY; default=SUM_OF_BASE_QUALITIES"> | |
45 <option value="SUM_OF_BASE_QUALITIES">SUM_OF_BASE_QUALITIES</option> | |
46 <option value="TOTAL_MAPPED_REFERENCE_LENGTH">TOTAL_MAPPED_REFERENCE_LENGTH</option> | |
47 </param> | |
48 | |
49 | |
50 <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]+).*."> | |
51 <sanitizer> | |
52 <valid initial="string.printable"> | |
53 </valid> | |
54 </sanitizer> | |
55 </param> | |
56 <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"/> | |
57 | |
58 <expand macro="VS" /> | |
59 | |
60 </inputs> | |
61 | |
62 <outputs> | |
63 <data format="txt" name="metrics_file" label="${tool.name} on ${on_string}: MarkDuplicate metrics"/> | |
64 <data format="bam" name="outFile" label="${tool.name} on ${on_string}: MarkDuplicates BAM output"/> | |
65 </outputs> | |
66 | |
67 <tests> | |
68 <test> | |
69 <param name="inputFile" value="picard_MarkDuplicates.bam" ftype="bam"/> | |
70 <param name="comment" value="test-run"/> | |
71 <param name="assume_sorted" value="True"/> | |
72 <param name="remove_duplicates" value="True"/> | |
73 <param name="read_name_regex" value="[a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*."/> | |
74 <param name="optical_duplicate_pixel_distance" value="100"/> | |
75 <param name="duplicate_scoring_strategy" value="SUM_OF_BASE_QUALITIES"/> | |
76 <param name="validation_stringency" value="LENIENT"/> | |
77 <output name="outFile" file="picard_MarkDuplicates_test1.bam" ftype="bam" lines_diff="2"/> | |
78 </test> | |
79 </tests> | |
80 | |
81 <stdio> | |
82 <exit_code range="1:" level="fatal"/> | |
83 </stdio> | |
84 | |
85 <help> | |
86 | |
87 **Purpose** | |
88 | |
89 Examines aligned records in the supplied SAM or BAM dataset to locate duplicate molecules. All records are then written to the output file with the duplicate records flagged. | |
90 | |
91 @dataset_collections@ | |
92 | |
93 @description@ | |
94 | |
95 COMMENT=String | |
96 CO=String Comment(s) to include in the output file's header. This option may be specified 0 or | |
97 more times. | |
98 | |
99 REMOVE_DUPLICATES=Boolean If true do not write duplicates to the output file instead of writing them with | |
100 appropriate flags set. Default value: false. | |
101 | |
102 READ_NAME_REGEX=String Regular expression that can be used to parse read names in the incoming SAM file. Read | |
103 names are parsed to extract three variables: tile/region, x coordinate and y coordinate. | |
104 These values are used to estimate the rate of optical duplication in order to give a more | |
105 accurate estimated library size. Set this option to null to disable optical duplicate | |
106 detection. The regular expression should contain three capture groups for the three | |
107 variables, in order. It must match the entire read name. Note that if the default regex | |
108 is specified, a regex match is not actually done, but instead the read name is split on | |
109 colon character. For 5 element names, the 3rd, 4th and 5th elements are assumed to be | |
110 tile, x and y values. For 7 element names (CASAVA 1.8), the 5th, 6th, and 7th elements | |
111 are assumed to be tile, x and y values. Default value: | |
112 [a-zA-Z0-9]+:[0-9]:([0-9]+):([0-9]+):([0-9]+).*. | |
113 | |
114 DUPLICATE_SCORING_STRATEGY=ScoringStrategy | |
115 DS=ScoringStrategy The scoring strategy for choosing the non-duplicate among candidates. Default value: | |
116 SUM_OF_BASE_QUALITIES. Possible values: {SUM_OF_BASE_QUALITIES, TOTAL_MAPPED_REFERENCE_LENGTH} | |
117 | |
118 OPTICAL_DUPLICATE_PIXEL_DISTANCE=Integer | |
119 The maximum offset between two duplicte clusters in order to consider them optical | |
120 duplicates. This should usually be set to some fairly small number (e.g. 5-10 pixels) | |
121 unless using later versions of the Illumina pipeline that multiply pixel values by 10, in | |
122 which case 50-100 is more normal. Default value: 100. | |
123 | |
124 @more_info@ | |
125 | |
126 </help> | |
127 </tool> | |
128 | |
129 |