Mercurial > repos > lparsons > rseqc
comparison bam_stat.xml @ 1:cd2daa987b69 draft default tip
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/rseqc commit 2400cce6e3918648fda8f2a8d8485ab251a58827
| author | lparsons |
|---|---|
| date | Tue, 07 Jul 2015 14:14:04 -0400 |
| parents | 306127635959 |
| children |
comparison
equal
deleted
inserted
replaced
| 0:306127635959 | 1:cd2daa987b69 |
|---|---|
| 15 <expand macro="stdio" /> | 15 <expand macro="stdio" /> |
| 16 | 16 |
| 17 <version_command><![CDATA[bam_stat.py --version]]></version_command> | 17 <version_command><![CDATA[bam_stat.py --version]]></version_command> |
| 18 | 18 |
| 19 <command><![CDATA[ | 19 <command><![CDATA[ |
| 20 bam_stat.py -i $input -q $mapqual 2> $output | 20 bam_stat.py -i $input -q $mapq 2> $output |
| 21 ]]> | 21 ]]> |
| 22 </command> | 22 </command> |
| 23 | 23 |
| 24 <inputs> | 24 <inputs> |
| 25 <param name="input" type="data" label="Input .bam/.sam File" format="bam,sam" /> | 25 <param name="input" type="data" label="Input .bam File" format="bam" help="(--input-file)"/> |
| 26 <param label="Minimum mapping quality (default=30" type="integer" value="30" name="mapqual" /> | 26 <param name="mapq" value="30" type="integer" label="Minimum mapping quality for an alignment to be called 'uniquly mapped'" help="(--mapq)" /> |
| 27 </inputs> | 27 </inputs> |
| 28 | 28 |
| 29 <outputs> | 29 <outputs> |
| 30 <data format="txt" name="output" /> | 30 <data format="txt" name="output" /> |
| 31 </outputs> | 31 </outputs> |
| 40 <help><