Mercurial > repos > cpt > cpt_get_orfs
annotate get_orfs_or_cdss.xml @ 6:f56389d8abda draft default tip
planemo upload commit f33bdf952d796c5d7a240b132af3c4cbd102decc
author | cpt |
---|---|
date | Fri, 05 Jan 2024 05:52:07 +0000 |
parents | eb0ebbfb714a |
children |
rev | line source |
---|---|
4
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
1 <tool id="get_orfs_or_cdss" name="Get open reading frames (ORFs) or coding sequences (CDSs)" version="19.1.0.0"> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
2 <description>e.g. to get peptides from ESTs</description> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
3 <macros> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
4 <import>macros.xml</import> |
6
f56389d8abda
planemo upload commit f33bdf952d796c5d7a240b132af3c4cbd102decc
cpt
parents:
5
diff
changeset
|
5 |
4
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
6 </macros> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
7 <expand macro="requirements"> |
5
eb0ebbfb714a
planemo upload commit fdfa1ab426cf75b219e77456d36f571f7cf16490
cpt
parents:
4
diff
changeset
|
8 <requirement type="package" version="3.9.16">python</requirement> |
eb0ebbfb714a
planemo upload commit fdfa1ab426cf75b219e77456d36f571f7cf16490
cpt
parents:
4
diff
changeset
|
9 <requirement type="package" version="1.2.2">cpt_gffparser</requirement> |
eb0ebbfb714a
planemo upload commit fdfa1ab426cf75b219e77456d36f571f7cf16490
cpt
parents:
4
diff
changeset
|
10 <requirement type="package" version="1.81">biopython</requirement> |
4
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
11 <requirement type="package" version="2022.1.18">regex</requirement> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
12 </expand> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
13 <command interpreter="python" detect_errors="aggressive"><![CDATA[ |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
14 get_orfs_or_cdss.py '$input_file' -f '$input_file.ext' --table '$table' -t '$ftype' -e "closed" -m "all" --min_len '$min_len' --strand '$strand' --on '$out_nuc_file' --op '$out_prot_file' --ob '$out_bed_file' --og '$out_gff3_file' ]]> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
15 </command> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
16 <inputs> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
17 <param name="input_file" type="data" format="fasta,fastq,sff" label="Sequence file (nucleotides)" help="FASTA, FASTQ, or SFF format."/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
18 <param name="table" type="select" label="Genetic code" help="Tables from the NCBI, these determine the start and stop codons"> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
19 <option value="1">1. Standard</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
20 <option value="2">2. Vertebrate Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
21 <option value="3">3. Yeast Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
22 <option value="4">4. Mold, Protozoan, Coelenterate Mitochondrial and Mycoplasma/Spiroplasma</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
23 <option value="5">5. Invertebrate Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
24 <option value="6">6. Ciliate Macronuclear and Dasycladacean</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
25 <option value="9">9. Echinoderm Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
26 <option value="10">10. Euplotid Nuclear</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
27 <option value="11">11. Bacterial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
28 <option value="12">12. Alternative Yeast Nuclear</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
29 <option value="13">13. Ascidian Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
30 <option value="14">14. Flatworm Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
31 <option value="15">15. Blepharisma Macronuclear</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
32 <option value="16">16. Chlorophycean Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
33 <option value="21">21. Trematode Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
34 <option value="22">22. Scenedesmus obliquus</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
35 <option value="23">23. Thraustochytrium Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
36 <option value="24">24. Pterobranchia Mitochondrial</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
37 </param> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
38 <param name="ftype" type="select" value="True" label="Look for ORFs or CDSs"> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
39 <option value="ORF">Look for ORFs (check for stop codons only, ignore start codons)</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
40 <option value="CDS">Look for CDSs (with start and stop codons)</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
41 </param> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
42 <param name="min_len" type="integer" size="5" value="30" label="Minimum length ORF/CDS (in amino acids, e.g. 30 aa = 90 bp plus any stop codon)"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
43 <param name="strand" type="select" label="Strand to search" help="Use the forward only option if your sequence directionality is known (e.g. from poly-A tails, or strand specific RNA sequencing)."> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
44 <option value="both">Search both the forward and reverse strand</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
45 <option value="forward">Only search the forward strand</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
46 <option value="reverse">Only search the reverse strand</option> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
47 </param> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
48 </inputs> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
49 <outputs> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
50 <data name="out_nuc_file" format="fasta" label="${ftype.value}s (nucleotides)"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
51 <data name="out_prot_file" format="fasta" label="${ftype.value}s (amino acids)"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
52 <data name="out_bed_file" format="bed6" label="${ftype.value}s (bed)"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
53 <data name="out_gff3_file" format="gff3" label="${ftype.value}s (gff3)"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
54 </outputs> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
55 <tests> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
56 <test> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
57 <param name="input_file" value="Orf_T7In.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
58 <param name="table" value="11"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
59 <param name="ftype" value="ORF"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
60 <param name="min_len" value="30"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
61 <param name="strand" value="both"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
62 <output name="out_nuc_file" file="Orf_T7Out_Nuc.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
63 <output name="out_prot_file" file="Orf_T7Out_AA.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
64 <output name="out_bed_file" file="Orf_T7Out_Bed.bed"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
65 <output name="out_gff3_file" file="Orf_T7Out_Gff.gff3"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
66 </test> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
67 <test> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
68 <param name="input_file" value="Orf_In2.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
69 <param name="table" value="1"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
70 <param name="ftype" value="CDS"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
71 <param name="min_len" value="10"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
72 <param name="strand" value="forward"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
73 <output name="out_nuc_file" file="Orf_Out2T1_Nuc.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
74 <output name="out_prot_file" file="Orf_Out2T1_AA.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
75 <output name="out_bed_file" file="Orf_Out2T1_Bed.bed"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
76 <output name="out_gff3_file" file="Orf_Out2T1_Gff.gff3"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
77 </test> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
78 <test> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
79 <param name="input_file" value="Orf_In2.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
80 <param name="table" value="11"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
81 <param name="ftype" value="CDS"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
82 <param name="min_len" value="10"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
83 <param name="strand" value="forward"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
84 <output name="out_nuc_file" file="Orf_Out2T11_Nuc.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
85 <output name="out_prot_file" file="Orf_Out2T11_AA.fasta"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
86 <output name="out_bed_file" file="Orf_Out2T11_Bed.bed"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
87 <output name="out_gff3_file" file="Orf_Out2T11_Gff.gff3"/> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
88 </test> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
89 </tests> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
90 <help> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
91 **What it does** |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
92 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
93 Takes an input file of nucleotide sequences (typically FASTA, but also FASTQ |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
94 and Standard Flowgram Format (SFF) are supported), and searches each sequence |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
95 for open reading frames (ORFs) or potential coding sequences (CDSs) of the |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
96 given minimum length. These are returned as FASTA files of nucleotides and |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
97 protein sequences. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
98 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
99 You can choose to have all the ORFs/CDSs above the minimum length for each |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
100 sequence (similar to the EMBOSS getorf tool), those with the longest length |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
101 equal, or the first ORF/CDS with the longest length (in the special case |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
102 where a sequence encodes two or more long ORFs/CDSs of the same length). The |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
103 last option is a reasonable choice when the input sequences represent EST or |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
104 mRNA sequences, where only one ORF/CDS is expected. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
105 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
106 Note that if no ORFs/CDSs in a sequence match the criteria, there will be no |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
107 output for that sequence. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
108 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
109 Also note that the ORFs/CDSs are assigned modified identifiers to distinguish |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
110 them from the original full length sequences, by appending a suffix. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
111 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
112 The start and stop codons are taken from the `NCBI Genetic Codes |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
113 <http://www.ncbi.nlm.nih.gov/Taxonomy/Utils/wprintgc.cgi>`_. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
114 When searching for ORFs, the sequences will run from stop codon to stop |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
115 codon, and any start codons are ignored. When searching for CDSs, the first |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
116 potential start codon will be used, giving the longest possible CDS within |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
117 each ORF, and thus the longest possible protein sequence. This is useful |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
118 for things like BLAST or domain searching, but since this may not be the |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
119 correct start codon, it may not be appropriate for signal peptide detection |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
120 etc. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
121 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
122 **Example Usage** |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
123 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
124 Given some EST sequences (Sanger capillary reads) assembled into unigenes, |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
125 or a transcriptome assembly from some RNA-Seq, each of your nucleotide |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
126 sequences should (barring sequencing, assembly errors, frame-shifts etc) |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
127 encode one protein as a single ORF/CDS, which you wish to extract (and |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
128 perhaps translate into amino acids). |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
129 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
130 If your RNA-Seq data was strand specific, and assembled taking this into |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
131 account, you should only search for ORFs/CDSs on the forward strand. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
132 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
133 **Citation** |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
134 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
135 If you use this Galaxy tool in work leading to a scientific publication please |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
136 cite the following paper: |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
137 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
138 Peter J.A. Cock, Björn A. Grüning, Konrad Paszkiewicz and Leighton Pritchard (2013). |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
139 Galaxy tools and workflows for sequence analysis with applications |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
140 in molecular plant pathology. PeerJ 1:e167 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
141 http://dx.doi.org/10.7717/peerj.167 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
142 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
143 This tool uses Biopython, so you may also wish to cite the Biopython |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
144 application note (and Galaxy too of course): |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
145 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
146 Cock et al (2009). Biopython: freely available Python tools for computational |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
147 molecular biology and bioinformatics. Bioinformatics 25(11) 1422-3. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
148 http://dx.doi.org/10.1093/bioinformatics/btp163 pmid:19304878. |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
149 |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
150 This tool is available to install into other Galaxy Instances via the Galaxy |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
151 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/get_orfs_or_cdss |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
152 </help> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
153 <citations> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
154 <citation type="doi">10.7717/peerj.167</citation> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
155 <citation type="doi">10.1093/bioinformatics/btp163</citation> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
156 </citations> |
f97bc7f587a1
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff
changeset
|
157 </tool> |