comparison rapidnj.xml @ 0:0c762bc76a1a draft default tip

Uploaded
author simonalpha
date Sat, 18 Apr 2015 07:49:06 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0c762bc76a1a
1 <tool id="rapidnj" name="RapidNJ" version="2.3.0">
2 <description>phylogeny reconstruction</description>
3 <requirements>
4 <requirement type="package" version="2.3.0">rapidnj</requirement>
5 </requirements>
6 <command>rapidnj
7 #if int($bootstrap) > 0:
8 --bootstrap $bootstrap
9 #end if
10 $neg_branch
11 -t $aln_type
12 -i fa
13 -o t
14 -x "${output}"
15 -c \${GALAXY_SLOTS:-1}
16 "${input}"
17 </command>
18 <inputs>
19 <param format="fasta" help="Input isn't sanitised for alignment" label="Source FASTA Alignment" name="input" type="data" />
20 <param label="Alignment Type" name="aln_type" type="select">
21 <option value="d">DNA</option>
22 <option value="p">Protein</option>
23 </param>
24 <param label="Number of bootstrap samples" min="0" name="bootstrap" type="integer" value="0" />
25 <param checked="false" falsevalue="" label="Adjust for negative branch lengths" name="neg_branch" truevalue="-n" type="boolean" />
26 </inputs>
27 <outputs>
28 <data format="nhx" name="output" type="data" />
29 </outputs>
30 <stdio>
31 <regex match="ERROR"
32 source="both"
33 level="fatal"
34 description="Unknown error, check tool output" />
35 </stdio>
36 <help>
37 RapidNJ is an algorithmic engineered implementation of canonical neighbour-joining.
38 http://birc.au.dk/Software/RapidNJ/
39 </help>
40 <citations>
41 <citation type="doi">10.1007/978-3-540-87361-7_10</citation>
42 </citations>
43 </tool>