comparison picard_RevertOriginalBaseQualitiesAndAddMateCigar.xml @ 13:7e6fd3d0f16e draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit bf94a1505c131fb3f67c867b6e1d886780efa42e
author devteam
date Tue, 06 Dec 2016 10:04:41 -0500
parents 05087b27692a
children 5053a18d9bc8
comparison
equal deleted inserted replaced
12:05087b27692a 13:7e6fd3d0f16e
4 <import>picard_macros.xml</import> 4 <import>picard_macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[ 7 <command detect_errors="exit_code"><![CDATA[
8 @java_options@ 8 @java_options@
9
10 picard 9 picard
11 RevertOriginalBaseQualitiesAndAddMateCigar 10 RevertOriginalBaseQualitiesAndAddMateCigar
12 11
13 INPUT="${inputFile}" 12 INPUT='$inputFile'
14 OUTPUT="${outFile}" 13 OUTPUT="${outFile}"
15 14
16 RESTORE_ORIGINAL_QUALITIES="${restore_original_qualities}" 15 RESTORE_ORIGINAL_QUALITIES="${restore_original_qualities}"
17 MAX_RECORDS_TO_EXAMINE="${max_records_to_examine}" 16 MAX_RECORDS_TO_EXAMINE="${max_records_to_examine}"
18 17
19 SORT_ORDER=coordinate 18 SORT_ORDER=coordinate
20 VALIDATION_STRINGENCY="${validation_stringency}" 19 VALIDATION_STRINGENCY="${validation_stringency}"
21 QUIET=true 20 QUIET=true
22 VERBOSITY=ERROR 21 VERBOSITY=ERROR
23 22
24 ]]></command> 23 ]]></command>
25 <inputs> 24 <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"/> 25 <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"/> 26 <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"/> 27 <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 28
30 <expand macro="VS" /> 29 <expand macro="VS" />
31 30
32 </inputs> 31 </inputs>
33 32
34 <outputs> 33 <outputs>
35 <data format="bam" name="outFile" label="${tool.name} on ${on_string}: Reverted BAM dataset"/> 34 <data format="bam" name="outFile" label="${tool.name} on ${on_string}: Reverted BAM dataset"/>
36 </outputs> 35 </outputs>
37 36
38 <tests> 37 <tests>
39 <test> 38 <test>
40 <param name="inputFile" value="picard_RevertOriginalBaseQualitiesAndAddMateCigar.bam" ftype="bam"/> 39 <param name="inputFile" value="picard_RevertOriginalBaseQualitiesAndAddMateCigar.bam" ftype="bam"/>
41 <param name="restore_original_qualities" value="True"/> 40 <param name="restore_original_qualities" value="True"/>
42 <param name="max_records_to_examine" value="10000"/> 41 <param name="max_records_to_examine" value="10000"/>
43 <param name="validation_stringency" value="LENIENT"/> 42 <param name="validation_stringency" value="LENIENT"/>
44 <output name="outFile" file="picard_RevertOriginalBaseQualitiesAndAddMateCigar_test1.bam" ftype="bam" lines_diff="4"/> 43 <output name="outFile" file="picard_RevertOriginalBaseQualitiesAndAddMateCigar_test1.bam" ftype="bam" lines_diff="4"/>
45 </test> 44 </test>
46 </tests> 45 </tests>
47 46
48 47
49 <help> 48 <help>
50 49
51 **Purpose** 50 **Purpose**
52 51
53 Reverts the original base qualities and adds the mate cigar tag to SAM or BAMs. 52 Reverts the original base qualities and adds the mate cigar tag to SAM or BAMs.
55 @dataset_collections@ 54 @dataset_collections@
56 55
57 @description@ 56 @description@
58 57
59 RESTORE_ORIGINAL_QUALITIES=Boolean 58 RESTORE_ORIGINAL_QUALITIES=Boolean
60 OQ=Boolean True to restore original qualities from the OQ field to the QUAL field if available. 59 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} 60 Default value: true. Possible values: {true, false}
62 61
63 MAX_RECORDS_TO_EXAMINE=IntegerThe maximum number of records to examine to determine if we can exit early and not 62 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 63 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. 64 cigars exist. Set to 0 to never skip the file. Default value: 10000.
66 65
67 @more_info@ 66 @more_info@
68 67
69 </help> 68 </help>