Mercurial > repos > vimalkumarvelayudhan > riboplot
annotate riboplot.xml @ 21:3429405e2ce1
Add toolshed URL link in tool dependencies
author | Vimalkumar Velayudhan <vimalkumarvelayudhan@gmail.com> |
---|---|
date | Mon, 31 Aug 2015 14:54:40 +0100 |
parents | a013fc01d8f3 |
children | e623f4daf567 |
rev | line source |
---|---|
3 | 1 <tool id="riboplot" name="riboplot" version="0.1.0"> |
2 <description>Plot and output read counts for a single transcript in an alignment (BAM) | |
3 </description> | |
4 <requirements> | |
18
cff63cf0dea8
Update tool_dependencies to install package from pip
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
8
diff
changeset
|
5 <requirement type="package" version="0.1.0">riboplot</requirement> |
3 | 6 </requirements> |
7 <stdio> | |
8 <exit_code range="1:" level="fatal" description="Error" /> | |
9 </stdio> | |
18
cff63cf0dea8
Update tool_dependencies to install package from pip
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
8
diff
changeset
|
10 <command interpreter="python">riboplot |
3 | 11 --ribo_file "${ribo_file}" |
12 --transcriptome_fasta "${transcriptome_fasta}" | |
13 --transcript_name "${transcript_name}" | |
14 #if $rnacov.rnacov_select=="yes" | |
15 --rna_file "${rna_file}" | |
16 #end if | |
17 --read_length "${read_length}" | |
18 --read_offset "${read_offset}" | |
19 --html_file "${html_file}" | |
20 --output_path "${html_file.files_path}" | |
21 ## --debug | |
22 </command> | |
23 <inputs> | |
24 <param name="ribo_file" type="data" format="bam" label="Ribo-Seq alignment file in BAM format"/> | |
25 <param name="transcriptome_fasta" type="data" format="fasta" label="FASTA format file of the transcriptome"/> | |
26 <param name="transcript_name" type="text" label="Name of the transcript to plot (as in FASTA)" size="40"> | |
27 <validator type="expression" message="Please input a single transcript name">len(value.split(',')) == 1</validator> | |
28 <validator type="empty_field" message="Field requires a value"/> | |
29 <sanitizer> | |
30 <valid> | |
31 <add value="|"/> | |
32 </valid> | |
33 </sanitizer> | |
34 </param> | |
35 <conditional name="rnacov"> | |
36 <param name="rnacov_select" type="select" label="Include RNA Coverage"> | |
37 <option value="no">No</option> | |
38 <option value="yes">Yes</option> | |
39 </param> | |
40 <when value="yes"> | |
41 <param name="rna_file" type="data" format="bam" label="RNA-Seq alignment file in BAM format"/> | |
42 </when> | |
43 <when value="no" /> | |
44 </conditional> | |
45 <param name="read_length" type="integer" label="Read length to consider" value="28"/> | |
46 <param name="read_offset" type="integer" label="Offset" value="0"/> | |
47 </inputs> | |
48 <outputs> | |
49 <data format="html" name="html_file" label="riboplot (HTML report)"/> | |
50 </outputs> | |
51 <help> | |
8
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
52 **RiboPlot** |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
53 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
54 Plot and output Ribo-Seq read counts of a single transcript from an alignment file (sorted BAM). |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
55 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
56 ---- |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
57 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
58 **Parameters** |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
59 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
60 1. Ribo-Seq alignment file (Sorted BAM file) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
61 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
62 A Bowtie 1 output (BAM) from an alignment of Ribo-Seq data to the transcriptome. This BAM |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
63 file should be sorted. This can be done using one of the following methods. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
64 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
65 1. RiboGalaxy -> Sort Data -> Sort BAM dataset. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
66 2. ``samtools sort input.bam inputsorted`` |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
67 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
68 2. Transcriptome (FASTA) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
69 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
70 A FASTA format file with sequences of the transcripts. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
71 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
72 3. Name of the transcript to plot (Text) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
73 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
74 The name of the transcript to plot **should** match the name in the transcriptome (FASTA) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
75 and the Ribo-Seq/RNA-Seq alignment (BAM). |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
76 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
77 4. RNA coverage [optional] (Sorted BAM file) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
78 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
79 If you have RNA-Seq data (sorted BAM), you can select the option to plot RNA coverage. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
80 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
81 5. Read lengths to consider [Optional] (Integer - 0 or greater) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
82 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
83 If this option is provided, only Ribo-Seq data of the given length is considered. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
84 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
85 6. Offset [optional] (Integer - 0 or greater) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
86 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
87 If this option is provided, this offset is added to the read alignment positions. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
88 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
89 ---- |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
90 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
91 **Output** |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
92 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
93 1. Plots (PNG and SVG) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
94 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
95 Ribo-Seq read counts as a bar plot in 3 frames (color codes: 1: red, 2: green, 3: blue) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
96 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
97 RNA coverage as a gray background (if the RNA coverage option was selected). |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
98 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
99 The open reading frame architecture appears below the plot with start (ATG) and stop codons ('TAA', 'TAG', 'TGA') in all 3 frames. |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
100 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
101 The color codes are start (white) and stop (dark gray). |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
102 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
103 .. image:: images/riboplot.png |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
104 |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
105 2. RiboSeq read counts in 3 frames for each position in the transcript (CSV) |
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
4
diff
changeset
|
106 |
3 | 107 </help> |
108 </tool> |