Mercurial > repos > devteam > picard
comparison picard_DownsampleSam.xml @ 20:2a17c789e0a5 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard commit 5ebd6c8453b49dd6a36e372eb1eb6e323bb7ad8a
author | iuc |
---|---|
date | Tue, 19 Jun 2018 11:28:49 -0400 |
parents | 5053a18d9bc8 |
children | f9242e01365a |
comparison
equal
deleted
inserted
replaced
19:5053a18d9bc8 | 20:2a17c789e0a5 |
---|---|
1 <tool name="Downsample SAM/BAM" id="picard_DownsampleSam" version="@TOOL_VERSION@.@WRAPPER_VERSION@"> | 1 <tool name="Downsample SAM/BAM" id="picard_DownsampleSam" version="@TOOL_VERSION@.@WRAPPER_VERSION@"> |
2 <description>Downsample a file to retain a subset of the reads</description> | 2 <description>Downsample a file to retain a subset of the reads</description> |
3 <macros> | 3 <macros> |
4 <import>picard_macros.xml</import> | 4 <import>picard_macros.xml</import> |
5 <token name="@WRAPPER_VERSION@">0</token> | 5 <token name="@WRAPPER_VERSION@">1</token> |
6 </macros> | 6 </macros> |
7 <expand macro="requirements" /> | 7 <expand macro="requirements" /> |
8 <command detect_errors="exit_code"><![CDATA[ | 8 <command detect_errors="exit_code"><![CDATA[ |
9 @java_options@ | 9 @java_options@ |
10 @symlink_element_identifier@ | 10 @symlink_element_identifier@ |
14 OUTPUT="${outFile}" | 14 OUTPUT="${outFile}" |
15 PROBABILITY=${probability} | 15 PROBABILITY=${probability} |
16 RANDOM_SEED=${seed} | 16 RANDOM_SEED=${seed} |
17 QUIET=true | 17 QUIET=true |
18 VERBOSITY=ERROR | 18 VERBOSITY=ERROR |
19 @TMPDIR_OPTION@ | |
19 VALIDATION_STRINGENCY=${validation_stringency} | 20 VALIDATION_STRINGENCY=${validation_stringency} |
20 ]]></command> | 21 ]]></command> |
21 <inputs> | 22 <inputs> |
22 <param format="sam,bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM or BAM dataset" /> | 23 <param format="sam,bam" name="inputFile" type="data" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM or BAM dataset" /> |
23 <param name="probability" type="float" min="0.0" max="1.0" label="Probability (between 0 and 1) that any given read will be kept" help="PROBABILITY; specify 1 to keep all reads, 0.1 to keep 10% of the reads" value="1" /> | 24 <param name="probability" type="float" min="0.0" max="1.0" label="Probability (between 0 and 1) that any given read will be kept" help="PROBABILITY; specify 1 to keep all reads, 0.1 to keep 10% of the reads" value="1" /> |