74
|
1 <tool id="predict_pipeline" name="RNA Structure Prediction" version="1.0">
|
|
2 <description></description>
|
|
3 <command interpreter="python">
|
|
4 #if $reactivity.type == "restraint"
|
|
5 predict_RNAs.py $rna_list $reference_file $reactivity.type $temperature $output $reactivity.reactivity_file $reactivity.slope $reactivity.intercept
|
|
6 #else
|
|
7 predict_RNAs.py $rna_list $reference_file $reactivity.type $temperature $output
|
|
8 #end if
|
|
9 </command>
|
81
|
10 <stdio>
|
|
11 <exit_code range="1:" />
|
|
12 <exit_code range=":-1" />
|
|
13 <regex match="Error:" />
|
|
14 <regex match="Exception:" />
|
|
15 </stdio>
|
74
|
16 <requirements>
|
|
17 <requirement type="package" version="1.61">biopython</requirement>
|
|
18 <requirement type="package" version="1.7.1">numpy</requirement>
|
|
19 <requirement type="package" version="1.2.1">matplotlib</requirement>
|
|
20 </requirements>
|
|
21 <inputs>
|
|
22 <param name="rna_list" type="data" format="txt" label="List of RNA ids to predict"/>
|
|
23 <param name="reference_file" type="data" format="fasta" label="Reference genome/transcriptome"/>
|
|
24 <param name="temperature" type="float" value="310.15" label="Temperature (K)"/>
|
|
25 <conditional name="reactivity">
|
|
26 <param name="type" type="select" label="RNA structure prediction type">
|
|
27 <option value="silico">In silico</option>
|
|
28 <option value="restraint">With experimental restraints</option>
|
|
29 </param>
|
|
30 <when value="silico"/>
|
|
31 <when value="restraint">
|
|
32 <param name="reactivity_file" type="data" label="Reactivity file"/>
|
|
33 <param name="slope" type="float" value="1.8" label="Slope used with structural restraints"/>
|
|
34 <param name="intercept" type="float" value="-0.6" label="Intercept used with structural restraints"/>
|
|
35 </when>
|
|
36 </conditional>
|
|
37
|
|
38 </inputs>
|
|
39 <outputs>
|
82
|
40 <data name="output" format=".tar"/>
|
74
|
41 </outputs>
|
|
42
|
|
43 <help>
|
|
44
|
|
45
|
|
46 **TIPS**:
|
|
47
|
|
48 -----
|
|
49
|
|
50 **Input**:
|
|
51
|
|
52 * 1. A file with transcript Ids (Max num. 100), (each ID one line)
|
|
53 * 2. Reference file (fasta) used to map the reads to
|
|
54 * 3. Temperature for RNA structure prediction
|
|
55 * [Optional]:
|
|
56 * 1. A reactivity file with structural reactivity for each nucleotide on the sequence provided
|
|
57 * 2. Slope used with structural restraints (default 1.8)
|
|
58 * 3. Intercept used with structural restraints (default -0.6)
|
|
59
|
|
60 -----
|
|
61
|
|
62 **Output**:
|
|
63
|
|
64 * 1. .ct files with predicted RNA structures [transciptID.ct]
|
|
65 * 2. .ps files which depict the predicted RNA structures [[transciptID.ps]
|
|
66 * [Optional]
|
|
67 * 3. .png files that shows the distribution of the reactivity of each nucleotide on the transcripts of interest. [transciptID.png]
|
|
68
|
|
69 -----
|
|
70
|
|
71 **Attention**
|
|
72
|
|
73 Make sure any of the transcript Ids does not contain "|" or space!
|
|
74
|
|
75 -----
|
|
76
|
|
77 **Backend program**:
|
|
78
|
|
79 * 1. This module is using RNAstructure (http://rna.urmc.rochester.edu/RNAstructure.html) as the backend program to predict RNA structures.
|
|
80 * 2. Default parameters are used for RNAstructure expect -T (Temperature), -sm (slope used with SHAPE restraints) and -si (intercept used with SHAPE restraints) which users can specify the value
|
|
81
|
|
82
|
|
83
|
|
84 </help>
|
|
85 </tool>
|