Mercurial > repos > chrisd > rarefaction_analyzer
comparison rarefaction_analyzer.xml @ 0:9543fccd0efe draft
planemo upload for repository https://github.com/cdeanj/galaxytools/tree/master/tools/rarefactionanalyzer commit e5dfdf9aa83af409ee99a0259ceb23b305b8f949-dirty
author | chrisd |
---|---|
date | Sun, 09 Oct 2016 07:05:56 -0400 |
parents | |
children | 5ec8b052e389 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9543fccd0efe |
---|---|
1 <tool id="rarefaction_analyzer" name="ResistomeAnalyzer" version="0.1.0"> | |
2 <description>A simple tool for creating rarefaction curves for metagenomic sequence data</description> | |
3 <requirements> | |
4 <requirement type="package" version="0.1">rarefactionanalyzer</requirement> | |
5 </requirements> | |
6 <stdio> | |
7 <exit_code range="1:" /> | |
8 </stdio> | |
9 <command><![CDATA[ | |
10 rarefaction | |
11 -ref_fp $reference | |
12 -annot_fp $annotation | |
13 -sam_fp $sam | |
14 -min $min | |
15 -max $max | |
16 -t $threshold | |
17 -samples $samples | |
18 -skip $skip | |
19 -gene_fp $gene | |
20 -mech_fp $mech | |
21 -class_fp $class | |
22 -group_fp $group | |
23 ]]></command> | |
24 <inputs> | |
25 <param type="data" name="reference" format="fasta" label="Reference sequence" /> | |
26 <param type="data" name="sam" format="sam" label="SAM file" /> | |
27 <param type="data" name="annotation" format="csv" label="Annotation file" /> | |
28 <param name="min" type="integer" label="Starting sample level" | |
29 value="1" min="1" max="100" help="(-min)" /> | |
30 <param name="max" type="integer" label="Ending sample level" | |
31 value="1" min="1" max="100" help="(-max)" /> | |
32 <param name="threshold" type="integer" label="Gene fraction threshold" | |
33 value="0" min="0" max="100" help="(-t)" /> | |
34 <param name="skip" type="integer" label="Amount of sample levels to skip" | |
35 value="1" min="1" max="100" help="(-skip)" /> | |
36 <param name="samples" type="integer" label="Iterations per sample level" | |
37 value="1" min="1" max="100" help="(-samples)" /> | |
38 </inputs> | |
39 <outputs> | |
40 <data name="gene" format="tabular" /> | |
41 <data name="mech" format="tabular" /> | |
42 <data name="class" format="tabular" /> | |
43 <data name="group" format="tabular" /> | |
44 </outputs> | |
45 <citations> | |
46 </citations> | |
47 </tool> |