comparison ribocount.xml @ 0:ca58e9466cbf

First commit
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Mon, 29 Jun 2015 16:38:36 +0100
parents
children 1e9797878349
comparison
equal deleted inserted replaced
-1:000000000000 0:ca58e9466cbf
1 <tool id="ribocount" name="ribocount" version="0.1.0">
2 <description>Get read counts for all transcripts in an alignment (BAM)
3 </description>
4 <requirements>
5 <requirement type="package" version="0.7.7">pysam</requirement>
6 <requirement type="package" version="0.1.18">samtools</requirement>
7 </requirements>
8 <stdio>
9 <exit_code range="1:" level="fatal" description="Error" />
10 </stdio>
11 <command interpreter="python">./riboplot/ribocount.py
12 --ribo_file "${ribo_file}"
13 --transcriptome_fasta "${transcriptome_fasta}"
14 --read_length "${read_length}"
15 --read_offset "${read_offset}"
16 --html_file "${html_file}"
17 --output_path "${html_file.files_path}"
18 ## --debug
19 </command>
20 <inputs>
21 <param name="ribo_file" type="data" format="bam" label="Ribo-Seq alignment file in BAM format"/>
22 <param name="transcriptome_fasta" type="data" format="fasta" label="FASTA format file of the transcriptome"/>
23 <param name="read_length" type="integer" label="Read length to consider" value="28"/>
24 <param name="read_offset" type="integer" label="Offset" value="0"/>
25 </inputs>
26 <outputs>
27 <data format="html" name="html_file" label="ribocount (HTML report)"/>
28 </outputs>
29 <help>
30 </help>
31 </tool>