comparison aragorn.xml @ 0:d34f31cbc9dd draft

Uploaded
author bgruening
date Sat, 06 Jul 2013 10:37:13 -0400
parents
children d788d1abe238
comparison
equal deleted inserted replaced
-1:000000000000 0:d34f31cbc9dd
1 <tool id="aragorn_trna" name="tRNA and tmRNA" version="0.3">
2 <description>prediction (Aragon)</description>
3 <requirements>
4 <requirement type="package" version="1.2.36">aragorn</requirement>
5 </requirements>
6 <command>
7 aragorn
8 $input
9 -gc$genbank_gencode
10 $tmRNA
11 $tRNA
12 $mtRNA
13 $mam_mtRNA
14 $topology
15 -o $output
16 $secondary_structure
17 $introns
18 </command>
19 <inputs>
20 <param name="input" type="data" format="fasta" label="Genome Sequence"/>
21 <param name="genbank_gencode" type="select" label="Genetic code">
22 <option value="1" select="True">1. Standard</option>
23 <option value="2">2. Vertebrate Mitochondrial</option>
24 <option value="3">3. Yeast Mitochondrial</option>
25 <option value="4">4. Mold, Protozoan, and Coelenterate Mitochondrial Code and the Mycoplasma/Spiroplasma Code</option>
26 <option value="5">5. Invertebrate Mitochondrial</option>
27 <option value="6">6. Ciliate, Dasycladacean and Hexamita Nuclear Code</option>
28 <option value="9">9. Echinoderm Mitochondrial</option>
29 <option value="10">10. Euplotid Nuclear</option>
30 <option value="11">11. Bacteria and Archaea</option>
31 <option value="12">12. Alternative Yeast Nuclear</option>
32 <option value="13">13. Ascidian Mitochondrial</option>
33 <option value="14">14. Flatworm Mitochondrial</option>
34 <option value="15">15. Blepharisma Macronuclear</option>
35 <option value="16">16. Chlorophycean Mitochondrial</option>
36 <option value="21">21. Trematode Mitochondrial</option>
37 <option value="22">22. Scenedesmus obliquus mitochondrial</option>
38 <option value="23">23. Thraustochytrium Mitochondrial</option>
39 <option value="24">24. Pterobranchia mitochondrial</option>
40 </param>
41 <param name="topology" type="select" label="Topology">
42 <option value="-c">Assume that each sequence has a circular topology</option>
43 <option value="-l">Assume that each sequence has a linear topology</option>
44 </param>
45 <param name='tmRNA' type='boolean' label='Search for tmRNA genes (-m)' truevalue='-m' falsevalue='' checked="true" help='' />
46 <param name='tRNA' type='boolean' label='Search for tRNA genes (-t)' truevalue='-t' falsevalue='' checked="true" help='' />
47 <param name='mtRNA' type='boolean' label='Search for Metazoan mitochondrial tRNA genes (-mt)' truevalue='-mt' falsevalue='' checked="false" help='-i switch ignored. Composite Metazoan mitochondrial genetic code used.' />
48 <param name='mam_mtRNA' type='boolean' label='Search for Mammalian mitochondrial tRNA genes (-mtmam)' truevalue='-mtmam' falsevalue='' checked="false" help='-i switch ignored. -tv switch set. Mammalian mitochondrial genetic code used.' />
49 <param name='introns' type='boolean' label='Search for tRNA genes with introns in anticodon loop ...' truevalue='-i' falsevalue='' checked="false" help='...with maximum length 3000 bases (-i).' />
50 <param name='secondary_structure' type='boolean' label='Print out secondary structure (-fasta,-fon)' truevalue='-fasta' falsevalue='-fon' checked="false" help='' />
51 </inputs>
52 <outputs>
53 <data name="output" format="fasta">
54 <change_format>
55 <when input="secondary_structure" value="true" format="text"/>
56 </change_format>
57 </data>
58 </outputs>
59 <tests>
60 <test>
61 <param name="input" value="trna_arabidopsis.fasta" ftype="fasta" />
62 <param name="genbank_gencode" value="1" />
63 <param name="topology" value="-c" />
64 <param name="tmRNA" value="-m" />
65 <param name="tRNA" value="-t" />
66 <param name="mtRNA" value="" />
67 <param name="mam_mtRNA" value="" />
68 <param name="introns" value="" />
69 <param name="secondary_structure" value="-fon" />
70 <output name="output" file="aragorn_tansl-table-1_tmRNA_tRNA.fasta" ftype="fasta" />
71 </test>
72 </tests>
73 <help>
74
75 **What it does**
76
77 Aragorn_ predicts tRNA (and tmRNA) in nucleotide sequences.
78
79 .. _Aragorn: http://mbio-serv2.mbioekol.lu.se/ARAGORN/
80
81 -----
82
83 **Example**
84
85 Suppose you have the following nucleotide sequences::
86
87 >SQ Sequence 8667507 BP; 1203558 A; 3121252 C; 3129638 G; 1213059 T; 0 other;
88 cccgcggagcgggtaccacatcgctgcgcgatgtgcgagcgaacacccgggctgcgcccg
89 ggtgttgcgctcccgctccgcgggagcgctggcgggacgctgcgcgtcccgctcaccaag
90 cccgcttcgcgggcttggtgacgctccgtccgctgcgcttccggagttgcggggcttcgc
91 cccgctaaccctgggcctcgcttcgctccgccttgggcctgcggcgggtccgctgcgctc
92 ccccgcctcaagggcccttccggctgcgcctccaggacccaaccgcttgcgcgggcctgg
93 ....
94
95 Running this tool can produce a FASTA file with all detected RNAs or a more detailed text file like the following::
96
97 c
98 c
99 a
100 g-c
101 g-c
102 g-c
103 c-g
104 g-c
105 a-t
106 t-a ca
107 t tgacc a
108 ga a !!!!! g
109 t ctcg actgg c
110 g !!!! c tt
111 g gagc t
112 aa g g
113 c-gag
114 t-a
115 t-a
116 c-g
117 g-c
118 t c
119 t a
120 cac
121
122 tRNA-Val(cac)
123 74 bases, %GC = 58.1
124 Sequence [6669703,6669776]
125
126
127 tRNA Anticodon Frequency
128 AAA Phe GAA Phe 1 CAA Leu 1 TAA Leu 1
129 AGA Ser GGA Ser 1 CGA Ser 2 TGA Ser 1
130 ACA Cys GCA Cys 2 CCA Trp 2 TCA seC
131 ATA Tyr GTA Tyr 1 CTA Pyl TTA Stop
132 AAG Leu GAG Leu 3 CAG Leu 1 TAG Leu 2
133 AGG Pro GGG Pro 2 CGG Pro 2 TGG Pro 2
134 ACG Arg 1 GCG Arg 2 CCG Arg 1 TCG Arg
135 ATG His GTG His 2 CTG Gln 2 TTG Gln 1
136 AAC Val GAC Val 3 CAC Val 2 TAC Val 1
137 AGC Ala GGC Ala 2 CGC Ala 3 TGC Ala 1
138 ACC Gly GCC Gly 5 CCC Gly 1 TCC Gly 2
139 ATC Asp GTC Asp 3 CTC Glu 2 TTC Glu 2
140 AAT Ile GAT Ile 3 CAT Met 6 TAT Ile
141 AGT Thr GGT Thr 2 CGT Thr 1 TGT Thr 2
142 ACT Ser GCT Ser 1 CCT Arg 1 TCT Arg 1
143 ATT Asn GTT Asn 3 CTT Lys 3 TTT Lys 2
144 Ambiguous: 1
145
146 tRNA Codon Frequency
147 TTT Phe TTC Phe 1 TTG Leu 1 TTA Leu 1
148 TCT Ser TCC Ser 1 TCG Ser 2 TCA Ser 1
149 TGT Cys TGC Cys 2 TGG Trp 2 TGA seC
150 TAT Tyr TAC Tyr 1 TAG Pyl TAA Stop
151 CTT Leu CTC Leu 3 CTG Leu 1 CTA Leu 2
152 CCT Pro CCC Pro 2 CCG Pro 2 CCA Pro 2
153 CGT Arg 1 CGC Arg 2 CGG Arg 1 CGA Arg
154 CAT His CAC His 2 CAG Gln 2 CAA Gln 1
155 GTT Val GTC Val 3 GTG Val 2 GTA Val 1
156 GCT Ala GCC Ala 2 GCG Ala 3 GCA Ala 1
157 GGT Gly GGC Gly 5 GGG Gly 1 GGA Gly 2
158 GAT Asp GAC Asp 3 GAG Glu 2 GAA Glu 2
159 ATT Ile ATC Ile 3 ATG Met 6 ATA Ile
160 ACT Thr ACC Thr 2 ACG Thr 1 ACA Thr 2
161 AGT Ser AGC Ser 1 AGG Arg 1 AGA Arg 1
162 AAT Asn AAC Asn 3 AAG Lys 3 AAA Lys 2
163 Ambiguous: 1
164
165 Number of tRNA genes = 86
166 tRNA GC range = 50.0% to 85.1%
167 Number of tmRNA genes = 1
168
169 -------
170
171 **References**
172
173 Dean Laslett and Bjorn Canback
174
175 ARAGORN, a program to detect tRNA genes and tmRNA genes in nucleotide sequences Nucl. Acids Res. (2004) 32(1): 11-16
176
177 doi:10.1093/nar/gkh152
178
179 </help>
180 </tool>