Mercurial > repos > dave > tn93
comparison readreduce.xml @ 0:08f2130e39b3 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tn93/ commit f009487e8fec49f10396185ffd2fc4fe65bf4f29-dirty
| author | dave |
|---|---|
| date | Tue, 19 Mar 2019 13:25:46 -0400 |
| parents | |
| children | 0a4d18edbdd2 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:08f2130e39b3 |
|---|---|
| 1 <tool id="readreduce" name="Merge matching reads" version="1.0.4"> | |
| 2 <description>into clusters with TN-93</description> | |
| 3 <requirements> | |
| 4 <requirement type="package" version="1.0.4">tn93</requirement> | |
| 5 </requirements> | |
| 6 <version_command><![CDATA[tn93 --version]]></version_command> | |
| 7 <command detect_errors="exit_code"><![CDATA[ | |
| 8 readreduce | |
| 9 -q | |
| 10 -o '$output' | |
| 11 #if str($options.advanced) == 'advanced': | |
| 12 -a $options.ambigs | |
| 13 -l $options.overlap | |
| 14 #if $options.counts_in_name: | |
| 15 -d '$options.counts_in_name' | |
| 16 #end if | |
| 17 -s '$size' | |
| 18 #end if | |
| 19 '$input' | |
| 20 ]]></command> | |
| 21 <inputs> | |
| 22 <param name="input" type="data" format="fasta" label="Input in FASTA format" /> | |
| 23 <conditional name="options"> | |
| 24 <param label="Additional options" name="advanced" type="select"> | |
| 25 <option value="defaults">Use defaults</option> | |
| 26 <option value="advanced">Specify additional parameters</option> | |
| 27 </param> | |
| 28 <when value="defaults" /> | |
| 29 <when value="advanced"> | |
| 30 <param name="size" argument="-s" type="integer" min="0" value="18" label="Mimimum cluster size to report in output" /> | |
| 31 <param name="ambigs" argument="-a" type="select" label="Strategy for ambiguous nucleotides"> | |
| 32 <option value="handle">handle</option> | |
| 33 <option value="resolve">resolve</option> | |
| 34 <option value="average">average</option> | |
| 35 <option value="skip">skip</option> | |
| 36 <option value="gapmm">gapmm</option> | |
| 37 </param> | |
| 38 <param name="overlap" argument="-l" type="integer" value="100" | |
| 39 label="Only count pairs that overlap by at least N bases" /> | |
| 40 <param name="counts_in_name" argument="-d" type="text" | |
| 41 optional="true" label="Sequence name component immediately preceding a copy number" /> | |
| 42 </when> | |
| 43 </conditional> | |
| 44 </inputs> | |
| 45 <outputs> | |
| 46 <data format="fasta" name="output" /> | |
| 47 </outputs> | |
| 48 <tests> | |
| 49 <test> | |
| 50 <param name="input" value="readreduce-in1.fa" /> | |
| 51 <output file="readreduce-out1.fa" ftype="fasta" name="output" sort="True" /> | |
| 52 </test> | |
| 53 <test> | |
| 54 <param name="input" value="readreduce-in2.fa" /> | |
| 55 <output file="readreduce-out2.fa" ftype="fasta" name="output" sort="True" /> | |
| 56 </test> | |
| 57 </tests> | |
| 58 <help>< algorithm. | |
| 64 ]]></help> | |
| 65 <citations> | |
| 66 <citation type="bibtex"> | |
| 67 @UNPUBLISHED{spond, | |
| 68 author = "Sergei Kosakovsky Pond", | |
| 69 title = "HyPhy: Hypothesis Testing using Phylogenies", | |
| 70 year = "2000", | |
| 71 note = "http://hyphy.org/", | |
| 72 url = "http://hyphy.org/"} | |
| 73 </citation> | |
| 74 </citations> | |
| 75 </tool> |
