Mercurial > repos > nml > quasitools
comparison complexity.xml @ 6:9fb9fed71486 draft
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
author | nml |
---|---|
date | Fri, 12 Oct 2018 09:16:03 -0400 |
parents | |
children | dcd43b402eb3 |
comparison
equal
deleted
inserted
replaced
5:b69e898b8109 | 6:9fb9fed71486 |
---|---|
1 <tool id="complexity" name="Complexity" version="0.5.0"> | |
2 <description>measures the complexity of the quasispecies reads</description> | |
3 <requirements> | |
4 <requirement type="package" version="0.5.0">quasitools</requirement> | |
5 </requirements> | |
6 <command detect_errors="exit_code"><![CDATA[ | |
7 | |
8 quasitools complexity $input_fasta > complexity.txt | |
9 | |
10 ]]></command> | |
11 <inputs> | |
12 <param name="input_fasta" type="data" format="fasta" optional="false" label="Aligned FASTA Input" /> | |
13 </inputs> | |
14 <outputs> | |
15 <data format="txt" label="Complexity" name="output_complexity" from_work_dir="complexity.txt" /> | |
16 </outputs> | |
17 | |
18 <tests> | |
19 <test> | |
20 <param name="input_fasta" value="msa.fasta" /> | |
21 <output name="output_complexity"> | |
22 <assert_contents> | |
23 <has_text text="Number of haplotypes (H) : 8" /> | |
24 <has_text text="Mutation Frequency (Mfe) : 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 <citations> | |
43 </citations> | |
44 </tool> |