forked from adrlar/CanSNPer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CanSNPer.xml
25 lines (25 loc) · 1.06 KB
/
CanSNPer.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<tool id="CanSNPer" name="CanSNPer genotyping">
<description>Galaxy interface for CanSNPer</description>
<command interpreter="python">CanSNPer -d --galaxy $verbosity -i $file -r $organism > $outfile1 2> $outfile2</command>
<inputs>
<param name="organism" type="text" size="30" label="Reference organism name"/>
<param format="fasta" name="file" type="data" label="Fasta file"/>
<param name="verbosity" type="select" label="Verbosity">
<option value="">Normal</option>
<option value="-v">Verbose</option>
<option value="-vq">Developer</option>
</param>
</inputs>
<outputs>
<data from_work_dir="CanSNPer_tree_galaxy.pdf" format="pdf" name="savetreefile" label="CanSNPer pdf tree"/>
<data format="tabular" name="outfile1" label="CanSNPer output file"/>
<data format="tabular" name="outfile2" label="CanSNPer error file"/>
</outputs>
<requirements>
<requirement type="python-module">ete2</requirement>
<requirement type="binary">progressiveMauve</requirement>
</requirements>
<help>
This tool runs CanSNPer typing on uploaded fasta file.
</help>
</tool>