Mercurial > repos > rlegendre > ribo_tools
view kmer_analysis.xml @ 6:29c9c86e17e1
Uploaded
author | rlegendre |
---|---|
date | Mon, 20 Oct 2014 11:07:40 -0400 |
parents | 8d8552899d20 |
children | 313b8f7d2a92 |
line wrap: on
line source
<tool id="kmer_analysis" name="Kmer"> <description>Compute proportion of each kmer and phasing</description> <requirements> <requirement type="package">samtools</requirement> <requirement type="package">numpy</requirement> <requirement type="package">matplotlib</requirement> <requirement type="package">pysam</requirement> </requirements> <command interpreter="python"> kmer_analysis.py --gff $gff --bam $bamfile --dirout $output.files_path --out $output </command> <inputs> <param name="gff" type="data" label="References Input Annotation File (gff)" format="gff" /> <param name="bamfile" type="data" label="Bam file" format="bam" /> </inputs> <outputs> <data format="html" name="output" label="Kmer report"/> </outputs> <help> Summary ------- This tool uses Ribo-seq data (bam file) to compute proportion of each kmer (lenght of footprints) and phasing. Output ------- This tool provides an html report with all kmer proportion and phasing. Dependances ------------ .. class:: warningmark 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. </help> </tool>