Mercurial > repos > ucsb-phylogenetics > osiris_phylogenetics
comparison getdata/get_gb.xml @ 0:5b9a38ec4a39 draft default tip
First commit of old repositories
author | osiris_phylogenetics <ucsb_phylogenetics@lifesci.ucsb.edu> |
---|---|
date | Tue, 11 Mar 2014 12:19:13 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:5b9a38ec4a39 |
---|---|
1 <tool id="get_gb" name="Get_GB" version="1.0"> | |
2 <description> Grab GenBank Data from a text list of accession numbers </description> | |
3 <requirements> | |
4 <requirement type="perl-module">Bio</requirement> | |
5 </requirements> | |
6 <command interpreter="perl"> | |
7 #if $outtypeconditional.outtype == "phytab": | |
8 get_gb.pl $data_file $database $outtypeconditional.outtype $outfile '$manual' '$mannames' '$outtypeconditional.genenames' | |
9 #else: | |
10 get_gb.pl $data_file $database $outtypeconditional.outtype $outfile '$manual' '$mannames' None | |
11 #end if | |
12 </command> | |
13 <inputs> | |
14 <param format="txt" name="data_file" type="data" optional="true" label="Text list of accession numbers" help="One Accession number per line"/> | |
15 <param name="manual" type="text" label="Paste in accession numbers (optional)" help="You can optionally list the Accession numbers here (spaces between) The name of one, which will ignore the text list above"/> | |
16 <param name="mannames" type="text" label="Paste in new names for sequences (optional)" help="You can optionally list Custom Names (with spaces between) for the sequences in the same order as the Accession Numbers"/> | |
17 | |
18 <param name="database" type="select" label="Protein or Nucleotide Data"> | |
19 <option value="nucleotide">Nucleotide</option> | |
20 <option value="protein">Protein</option> | |
21 </param> | |
22 | |
23 <conditional name="outtypeconditional"> | |
24 <param name="outtype" type="select" label="Output File Format"> | |
25 <option value="fasta">Fasta</option> | |
26 <option value="genbank">GenBank</option> | |
27 <option value="phytab">phytab</option> | |
28 </param> | |
29 <when value="phytab"> | |
30 <param name="genenames" type="text" label="Gene Names (C3) for phytab format" /> | |
31 </when> | |
32 </conditional> | |
33 | |
34 | |
35 </inputs> | |
36 <outputs> | |
37 <data format="txt" name="outfile" label="Sequence Data from ${tool.name} with ${on_string}" /> | |
38 </outputs> | |
39 <help> | |
40 **What it does** | |
41 | |
42 Downloads data from GenBank based on Accession numbers. | |
43 | |
44 ------ | |
45 | |
46 **Inputs** | |
47 | |
48 There are two alternative ways to input information. | |
49 1. A list of Accession numbers in a text file that is uploaded to the Galaxy history. | |
50 2. Optionally, the user can paste in a list of accession numbers separated by spaces. | |
51 | |
52 ------ | |
53 | |
54 **Outputs** | |
55 | |
56 The user selects which output format to use for data downloaded from GenBank. Options Include:: | |
57 1. GenBank format | |
58 2. Fasta format | |
59 3. phytab format | |
60 | |
61 phytab format includes a gene name, which is not standardized in GenBank format, so the user must add manually the gene | |
62 family names for all entries. If adding only one gene name, that will be used for all entries. | |
63 | |
64 ------- | |
65 | |
66 **Additional Information** | |
67 | |
68 phytab format is described here: | |
69 http://osiris-phylogenetics.blogspot.com/2012/09/introduction-to-phytab-format.html | |
70 | |
71 Please direct questions or comments to ucsb_phylogenetics@lifesci.ucsb.edu or, if you can, enter them on the osiris_phylogenetics site at bitbucket.org | |
72 | |
73 ------- | |
74 | |
75 **Citations** | |
76 | |
77 This tool is part of the Osiris Phylogenetics Tool Package for Galaxy. If you make extensive use of this tool in a publication, please consider citing the following. | |
78 | |
79 Current Osiris Citation is here | |
80 | |
81 http://osiris-phylogenetics.blogspot.com/2012/10/citation.html | |
82 | |
83 </help> | |
84 </tool> |