Mercurial > repos > devteam > picard
annotate picard_RevertOriginalBaseQualitiesAndAddMateCigar.xml @ 12:05087b27692a draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
author | devteam |
---|---|
date | Sun, 27 Nov 2016 15:11:50 -0500 |
parents | 3a3234d7a2e8 |
children | 7e6fd3d0f16e |
rev | line source |
---|---|
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
1 <tool name="RevertOriginalBaseQualitiesAndAddMateCigar" id="picard_RevertOriginalBaseQualitiesAndAddMateCigar" version="@TOOL_VERSION@.0"> |
5 | 2 <description>revert the original base qualities and add the mate cigar tag</description> |
3 <macros> | |
4 <import>picard_macros.xml</import> | |
5 </macros> | |
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
6 <expand macro="requirements" /> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
5 | 8 @java_options@ |
9 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
10 picard |
5 | 11 RevertOriginalBaseQualitiesAndAddMateCigar |
12 | |
13 INPUT="${inputFile}" | |
14 OUTPUT="${outFile}" | |
15 | |
16 RESTORE_ORIGINAL_QUALITIES="${restore_original_qualities}" | |
17 MAX_RECORDS_TO_EXAMINE="${max_records_to_examine}" | |
18 | |
19 SORT_ORDER=coordinate | |
20 VALIDATION_STRINGENCY="${validation_stringency}" | |
21 QUIET=true | |
22 VERBOSITY=ERROR | |
23 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
24 ]]></command> |
5 | 25 <inputs> |
26 <param format="sam,bam" name="inputFile" type="data" multiple="True" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset"/> | |
27 <param name="restore_original_qualities" type="boolean" checked="True" label="Restore original qualities from the OQ field to the QUAL field if available" help="RESTORE_ORIGINAL_QUALITIES; default=True"/> | |
28 <param name="max_records_to_examine" type="integer" value="10000" min="0" label="The maximum number of records to examine to determine if we can exit early and not output, given that there are a no original base qualities (if we are to restore) and mate cigars exist. Set to 0 to never skip the dataset" help="MAX_RECORDS_TO_EXAMINE; default=10,000"/> | |
29 | |
30 <expand macro="VS" /> | |
31 | |
32 </inputs> | |
33 | |
34 <outputs> | |
35 <data format="bam" name="outFile" label="${tool.name} on ${on_string}: Reverted BAM dataset"/> | |
36 </outputs> | |
37 | |
38 <tests> | |
39 <test> | |
40 <param name="inputFile" value="picard_RevertOriginalBaseQualitiesAndAddMateCigar.bam" ftype="bam"/> | |
41 <param name="restore_original_qualities" value="True"/> | |
42 <param name="max_records_to_examine" value="10000"/> | |
43 <param name="validation_stringency" value="LENIENT"/> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
44 <output name="outFile" file="picard_RevertOriginalBaseQualitiesAndAddMateCigar_test1.bam" ftype="bam" lines_diff="4"/> |
5 | 45 </test> |
46 </tests> | |
47 | |
48 | |
49 <help> | |
50 | |
51 **Purpose** | |
52 | |
53 Reverts the original base qualities and adds the mate cigar tag to SAM or BAMs. | |
54 | |
55 @dataset_collections@ | |
56 | |
57 @description@ | |
58 | |
59 RESTORE_ORIGINAL_QUALITIES=Boolean | |
60 OQ=Boolean True to restore original qualities from the OQ field to the QUAL field if available. | |
61 Default value: true. Possible values: {true, false} | |
62 | |
63 MAX_RECORDS_TO_EXAMINE=IntegerThe maximum number of records to examine to determine if we can exit early and not | |
64 output, given that there are a no original base qualities (if we are to restore) and mate | |
65 cigars exist. Set to 0 to never skip the file. Default value: 10000. | |
66 | |
67 @more_info@ | |
68 | |
69 </help> | |
70 </tool> | |
71 | |
72 |