Mercurial > repos > ryotas > export2sam
comparison export2sam.xml @ 0:61f3089ddc74 default tip
commit
| author | ryo_tas <yamanaka@genome.rcast.u-tokyo.ac.jp> |
|---|---|
| date | Tue, 30 Dec 2014 18:53:23 +0900 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:61f3089ddc74 |
|---|---|
| 1 <tool id="export2sam" name="Export to SAM" version="0.1"> | |
| 2 <description></description> | |
| 3 <parallelism method="basic"></parallelism> | |
| 4 <command interpreter="sh"> | |
| 5 export2sam.sh | |
| 6 -a $read1 | |
| 7 #if $pairCondition.pairSelect == "yes" | |
| 8 -b $read2 | |
| 9 #end if | |
| 10 -o $output | |
| 11 $gunzip | |
| 12 $remove | |
| 13 </command> | |
| 14 <inputs> | |
| 15 <param name="read1" type="data" format="eland_export" label="ELAND export file" help="" /> | |
| 16 <param name="gunzip" type="boolean" truevalue="-g" falsevalue="" checked="True" label="Input file is gzipped" help="" /> | |
| 17 <param name="remove" type="boolean" truevalue="-r" falsevalue="" checked="True" label="Remove (chr).fa and chr_fragments.fa/" help="" /> | |
| 18 <conditional name="pairCondition"> | |
| 19 <param name="pairSelect" type="select" label="Pair end?"> | |
| 20 <option value="yes">Yes</option> | |
| 21 <option value="no" selected="True">No</option> | |
| 22 </param> | |
| 23 <when value="yes"> | |
| 24 <param name="read2" type="data" format="eland_export" label="ELAND export file" help="" /> | |
| 25 </when> | |
| 26 <when value="no"></when> | |
| 27 </conditional> | |
| 28 </inputs> | |
| 29 <outputs> | |
| 30 <data format="sam" name="output" label="${tool.name} on ${on_string}"/> | |
| 31 </outputs> | |
| 32 <help>If thou thyself canst do it, attend no other's help or hand.</help> | |
| 33 </tool> |
