comparison observed_expected.xml @ 0:f40b0b26e766 default tip

First commit
author Vimalkumar Velayudhan <vimalkumarvelayudhan@gmail.com>
date Tue, 20 Oct 2015 13:05:05 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f40b0b26e766
1
2 <tool id="plot_RUST_profile" name="Plot transcripts predicted profiles" version="1">
3 <description>(Step 4)</description>
4 <requirements>
5 <requirement type="package" version="0.1.0">RUST</requirement>
6 <requirement type="package" version="0.1.18">samtools</requirement>
7 </requirements>
8 <command>python \${RUST_PATH}/observed_expected.py $input $alignment $offset $include_lengths $observed_codon $transcript_name $html_file.files_path $html_file </command>
9 <inputs>
10 <param name="transcript_name" type="text" size="30"
11 label="Name of the transcript to be plotted"
12 help="Specific transcript to plot (Use of unique identifier is sufficient for example either '815891337' and 'NM_031946' for 'gi|815891337|ref|NM_031946.6|')">
13 <validator type="expression" message="Please input a single transcript name">len(value.split(',')) == 1</validator>
14 <validator type="empty_field" message="Field requires a value"/>
15 <sanitizer>
16 <valid>
17 <add value="|"/>
18 </valid>
19 </sanitizer>
20 </param>
21
22 <param format="fasta" name="input" type="data" label="Transcriptome file" help="A fasta file whose transcripts are used to produce the metafootprint profile."/>
23 <param format="bam" name="alignment" type="data" label="Alignment file" help="The alignments of ribo-seq/mRNA-seq reads to the Transcriptome file. This should be a sorted bam file."/>
24 <param name="offset" value="17" type="integer" label="Nucleotide offset to A-site"/>
25 <param name="include_lengths" type="text"
26 label="Lengths of ribosome footprints
27 to be included"
28 help="Here you can specify the lengths of ribosome footprints to
29 be included (28:32 includes reads of length 28,29,30,31,32)."
30 value="28:32">
31 <!-- <validator type="expression" message="Please input with correct format">len(value.split(':')) == 2</validator> -->
32 </param>
33 <param format="csv" name="observed_codon" type="data" label="Codon metafootprint" help="RUST codon metafootprint analysis"/>
34 </inputs>
35
36 <outputs>
37 <data format="html" name="html_file" label="$tool.name on $on_string" >
38 </data>
39 </outputs>
40
41
42
43 <help>
44 **What it does**
45
46 Returns both the observed and and expected profiles for a transcript specified by the user in a csv file. A image of both profiles is provided. The data is provided for 120 nucleotides after the start codon and 60 nucleotides before the stop codon.
47
48 ------
49
50 **Citation**
51
52 Surveying the relative impact of mRNA features on local ribosome profiling read density in 28 datasets.
53 Patrick O'Connor, Dmitry Andreev, Pavel Baranov
54 bioRxiv doi: http://dx.doi.org/10.1101/018762
55
56 </help>
57
58 </tool>