comparison pangolin.xml @ 0:f612c8391bd8 draft

"planemo upload for repository https://github.com/hCoV-2019/pangolin commit 5278814fe0175e7ac73ae3f43c443bbe549197ee"
author nml
date Fri, 01 May 2020 11:30:48 -0400
parents
children b91b3923656e
comparison
equal deleted inserted replaced
-1:000000000000 0:f612c8391bd8
1 <tool id="pangolon" name="Pangolin" version="@VERSION@+galaxy0">
2 <description> CoV-2019 Phylogenetic Assignment of Named Global Outbreak LINeages</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8
9 pangolin '$input1' -t "\${GALAXY_SLOTS:-1}" --max-ambig '$additional.max_ambig' --min-length '$additional.min_length'
10
11 ]]></command>
12 <inputs>
13 <param name="input1" type="data" format="fasta"
14 label="Input multi-sequence fasta file"
15 />
16 <section name="additional" title="Additional Parameters" expanded="false">
17 <param name="max_ambig" type="float" value="0.5" min="0" max="1.0"
18 label="Maximum proportion of Ns allowed to attempt assignment"
19 argument="--max-ambig"
20 />
21 <param name="min_length" type="integer" value="10000" min="0"
22 label="Minimum query length to attempt assignment"
23 argument="--min-length"
24 />
25 </section>
26 </inputs>
27 <outputs>
28 <data format="csv" from_work_dir="lineage_report.csv" name="lineage_report" label="${input1.name}_lineage_report" />
29 </outputs>
30 <tests>
31 <test>
32 <param name="input1" value="test_seqs.fasta" />
33 <output name="lineage_report" value="lineage_report.csv" />
34 </test>
35 </tests>
36 <help><![CDATA[
37
38 Pangolin
39 --------
40
41 Pangolin assigns SARS-CoV-2 genome sequences in fasta format to global lineages from `Rambaut et al. <https://doi.org/10.1101/2020.04.17.046086>`_.
42 To do this, Pangolin employs the use of external programs including: `iqtree <http://www.iqtree.org/#download>`_, `mafft <https://mafft.cbrc.jp/alignment/software/>`_,
43 and `snakemake <https://snakemake.readthedocs.io/en/stable/index.html>`_.
44
45 More information can be obtained from the authors github site: https://github.com/hCoV-2019/pangolin
46
47 --------------
48
49 **Input** - Multi sequence fasta file
50
51
52 **Output** - lineage report:
53
54 +---------+---------+------+-------------+------------------+-----------+-----------+
55 | Taxon | Lineage | aLRT | UFbootstrap | lineages_version | status | note |
56 +=========+=========+======+=============+==================+===========+===========+
57 | Sample1 | A.1 | 100 | 60 | 2020-04-27 | passed_qc | |
58 +---------+---------+------+-------------+------------------+-----------+-----------+
59 | Sample2 | B.1 | 80 | 80 | 2020-04-27 | passed_qc | |
60 +---------+---------+------+-------------+------------------+-----------+-----------+
61 | Sample3 | B.1.4 | 60 | 100 | 2020-04-27 | fail | seq_len:0 |
62 +---------+---------+------+-------------+------------------+-----------+-----------+
63
64
65 Resources for interpreting aLRT and UFbootstrap values:
66
67 - `IQ_TREE: Assessing branch supports with single branch tests <http://www.iqtree.org/doc/Tutorial#assessing-branch-supports-with-single-branch-tests>`_
68
69 - `IQ_TREE: Command Reference <http://www.iqtree.org/doc/Command-Reference>`_
70
71 ]]></help>
72 <expand macro="citations" />
73 </tool>