comparison galaxy/ribocount.xml @ 3:8e1efafa6277

Updated version * Bugfix: blue lines in some plots (bar colors were not set correctly) * Cookiecutter template * Additional unit tests * Add plot legend
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Wed, 12 Aug 2015 09:27:45 +0100
parents
children
comparison
equal deleted inserted replaced
2:b6fd86c539ea 3:8e1efafa6277
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.8.3">pysam</requirement>
6 </requirements>
7 <stdio>
8 <exit_code range="1:" level="fatal" description="Error" />
9 </stdio>
10 <command interpreter="python">../riboplot/ribocount.py
11 --ribo_file "${ribo_file}"
12 --transcriptome_fasta "${transcriptome_fasta}"
13 --read_length "${read_length}"
14 --read_offset "${read_offset}"
15 --html_file "${html_file}"
16 --output_path "${html_file.files_path}"
17 ## --debug
18 </command>
19 <inputs>
20 <param name="ribo_file" type="data" format="bam" label="Ribo-Seq alignment file in BAM format"/>
21 <param name="transcriptome_fasta" type="data" format="fasta" label="FASTA format file of the transcriptome"/>
22 <param name="read_length" type="integer" label="Read length to consider" value="28"/>
23 <param name="read_offset" type="integer" label="Offset" value="0"/>
24 </inputs>
25 <outputs>
26 <data format="html" name="html_file" label="ribocount (HTML report)"/>
27 </outputs>
28 <help>
29 </help>
30 </tool>