Mercurial > repos > chrisd > testing
comparison gene_fraction/src/gene_fraction.xml @ 0:f95150c37d38 draft default tip
planemo upload for repository https://github.com/ChrisD11/Tools commit ddc95e5d6b5f2c0a5340c0bc384aa822db8856d5
author | chrisd |
---|---|
date | Sun, 21 Feb 2016 23:31:55 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f95150c37d38 |
---|---|
1 <tool id="gene_fraction" name="Coverage sampler" version="0.1.0"> | |
2 <requirements> | |
3 </requirements> | |
4 <stdio> | |
5 <exit_code range="1:" /> | |
6 </stdio> | |
7 <command><![CDATA[ | |
8 csa | |
9 -amr_fp $input1 | |
10 -sam_fp $input2 | |
11 -min $min | |
12 -max $max | |
13 -skip $skip | |
14 -t $threshold | |
15 -samples $samples | |
16 -out_fp $output1 | |
17 ]]></command> | |
18 <inputs> | |
19 <param type="data" name="input1" format="fasta" /> | |
20 <param type="data" name="input2" format="sam" /> | |
21 <param name="min" type="integer" label="Minimum sample value" | |
22 value="1" min="1" max="100" help="(-min)" /> | |
23 <param name="max" type="integer" label="Maximum sample value" | |
24 value="1" min="1" max="100" help="(-max)" /> | |
25 <param name="skip" type="integer" label="Amount of levels to skip" | |
26 value="1" min="1" max="100" help="(-skip)" /> | |
27 <param name="threshold" type="integer" label="Gene fraction threshold" | |
28 value="1" min="1" max="100" help="(-t)" /> | |
29 <param name="samples" type="integer" label="Amount of samples per level" | |
30 value="1" min="1" max="100" help="(-samples)" /> | |
31 </inputs> | |
32 <outputs> | |
33 <data name="output1" format="tabular" /> | |
34 </outputs> | |
35 <help><![CDATA[ | |
36 | |
37 Program: Coverage Sampler | |
38 Contact: Chris Dean <cdean11@rams.colostate.edu | |
39 | |
40 Usage: csa [options] | |
41 | |
42 Options: | |
43 | |
44 -amr_fp amr database path | |
45 -sam_fp sam file path | |
46 -min starting level | |
47 -max ending level | |
48 -skip amount of levels to skip | |
49 -t gene fraction threshold | |
50 -samples amount of samples per level | |
51 -d directory parsing | |
52 -bam bam file parsing | |
53 -out_fp output file path | |
54 | |
55 | |
56 ]]></help> | |
57 </tool> |