|
3
|
1 <tool id="kmer_analysis" name="Kmer">
|
|
11
|
2 <description>To calculate the proportion and phasing of each kmer</description>
|
|
3
|
3 <requirements>
|
|
|
4 <requirement type="package">samtools</requirement>
|
|
|
5 <requirement type="package">numpy</requirement>
|
|
|
6 <requirement type="package">matplotlib</requirement>
|
|
|
7 <requirement type="package">pysam</requirement>
|
|
|
8 </requirements>
|
|
|
9 <command interpreter="python">
|
|
|
10 kmer_analysis.py --gff $gff --bam $bamfile --dirout $output.files_path --out $output
|
|
|
11
|
|
|
12 </command>
|
|
|
13
|
|
|
14 <inputs>
|
|
11
|
15 <param name="gff" type="data" label="Reference annotation file (GFF))" format="gff" />
|
|
3
|
16 <param name="bamfile" type="data" label="Bam file" format="bam" />
|
|
|
17 </inputs>
|
|
|
18
|
|
|
19 <outputs>
|
|
13
|
20 <data format="html" name="output" label="Kmer report on ${on_string}"/>
|
|
3
|
21
|
|
|
22 </outputs>
|
|
|
23
|
|
|
24 <help>
|
|
|
25
|
|
|
26 Summary
|
|
|
27 -------
|
|
13
|
28 The kmer tool computes the distribution of footprints length from Bam file and determines the proportion of footprints beginning in each frame, for all annotated genes in the `GFF3`_ file.
|
|
|
29
|
|
3
|
30
|
|
13
|
31 .. _GFF3: http://gmod.org/wiki/GFF3
|
|
|
32
|
|
3
|
33 Output
|
|
|
34 -------
|
|
11
|
35 This tool provides an html report detailing the proportions and phasing of the kmers.
|
|
3
|
36
|
|
|
37
|
|
|
38 Dependances
|
|
|
39 ------------
|
|
|
40
|
|
|
41 .. class:: warningmark
|
|
|
42
|
|
|
43 This tool depends on Python (>=2.7) and following packages : numpy 1.8.0 and matplotlib 1.3.1. Samtools and pysam are used for bam manipulation.
|
|
|
44
|
|
|
45 </help>
|
|
|
46 </tool> |