blob: 05c3b10520efcabfad37258b02bbc25956e3fe7d (
plain)
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
26
27
28
29
30
31
32
|
<tool id="total_count" name="Kmer Total Count">
<description>count kmers in a samlpe</description>
<command>
kmer_total_count
-k $kmer
#if labels:
-l
#endif
#if $reverse
-c
#endif
#if $sparse:
-n
#endif
-i $input > $output
</command>
<inputs>
<param name="input" type="data" format="fasta" label="input fasta file"/>
<param name="kmer" type="integer" size="2" value="6" label="What mer size to use?" help="range 1 - 30"/>
<param name="labels" type="boolean" value="True" label="do you want mer labels (AAA, AAC, AAG) shown?" help="" />
<param name="reverse" type="boolean" value="True" label="do you want to count both strands (the reverse compliment)?" help="" />
<param name="sparse" type="boolean" value="True" label="do you want to output only nonzero counts?"help="" />
</inputs>
<outputs>
<data name="output" format="tabular"/>
</outputs>
<help>
input a sample file, get a count of kmers in each sequence
</help>
</tool>
|