Mercurial > repos > nml > quasitools
comparison complexity_fasta.xml @ 0:1f1214983a1c draft default tip
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
| author | nml |
|---|---|
| date | Mon, 20 Jun 2022 20:05:57 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:1f1214983a1c |
|---|---|
| 1 <tool id="complexity_fasta" name="Complexity FASTA" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@"> | |
| 2 <macros> | |
| 3 <import>macros.xml</import> | |
| 4 </macros> | |
| 5 <expand macro="requirements"/> | |
| 6 <command detect_errors="exit_code"><![CDATA[ | |
| 7 | |
| 8 quasitools complexity fasta '$input_fasta' -o output.csv | |
| 9 | |
| 10 ]]></command> | |
| 11 <inputs> | |
| 12 <param name="input_fasta" type="data" format="fasta" optional="false" label="input file" /> | |
| 13 </inputs> | |
| 14 <outputs> | |
| 15 <data format="csv" name="output" from_work_dir="output.csv" /> | |
| 16 </outputs> | |
| 17 <tests> | |
| 18 <test> | |
| 19 <param name="input_fasta" value="msa.fasta" /> | |
| 20 <output name="output"> | |
| 21 <assert_contents> | |
| 22 <has_text text="Number of Haplotypes" /> | |
| 23 <has_text text="8" /> | |
| 24 <has_text text="0.75" /> | |
| 25 </assert_contents> | |
| 26 </output> | |
| 27 </test> | |
| 28 </tests> | |
| 29 | |
| 30 <help><![CDATA[ | |
| 31 Quasispecies Complexity | |
| 32 ======================= | |
| 33 | |
| 34 Measure the complexity of quasispecies reads using a variety of measures. The input must be an aligned FASTA file, representing a particular reqion of quasispcies from which to measure the complexity. | |
| 35 | |
| 36 The measures of complexity are taken from the following work: | |
| 37 | |
| 38 Gregori, Josep, et al. "Viral quasispecies complexity measures." Virology 493 (2016): 227-237. | |
| 39 | |
| 40 | |
| 41 ]]></help> | |
| 42 <expand macro="citations" /> | |
| 43 </tool> |
