annotate dbbuilder.xml @ 10:e9df53a75f3c draft

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder commit 1698b28b4cb85d88df910d3e53bbce29e8400359"
author galaxyp
date Wed, 25 Nov 2020 17:43:51 +0000
parents c1b437242fee
children 8e637098a8ab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
e9df53a75f3c "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder commit 1698b28b4cb85d88df910d3e53bbce29e8400359"
galaxyp
parents: 9
diff changeset
1 <tool id="dbbuilder" name="Protein Database Downloader" version="0.3.2">
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
2 <description></description>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
3 <requirements>
9
c1b437242fee "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder commit b1ccd85b9c91cf311f92e6b9999fddd6d2408b20"
galaxyp
parents: 8
diff changeset
4 <requirement type="package" version="1.20.1">wget</requirement>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
5 </requirements>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
6 <stdio>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
7 <exit_code range="1:" level="fatal" description="Error downloading database." />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
8 <regex match="ERROR" level="fatal" source="stderr" description="Error downloading database." />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
9 </stdio>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
10 <!-- TODO: escape quotes. -->
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
11 <!-- Add NCBI and maxquant contaminants. -->
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
12 <!-- http://maxquant.org/contaminants.zip -->
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
13 <!-- ftp://ftp.ncbi.nih.gov/refseq/H_sapiens/mRNA_Prot/human.protein.faa.gz-->
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
14 <command>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
15 <![CDATA[
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
16 #if $source.from == "uniprot"
7
a94dc3d469cb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit 7480b93ed88eb017041b16e1181a481f7b3334d3
galaxyp
parents: 6
diff changeset
17 #set $url = 'http://www.uniprot.org/uniprot/?query=taxonomy:"' + str($source.taxon) + '"' + str($source.set) + str($source.reviewed) + '&force=yes&format=fasta' + str($source.include_isoform)
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
18 #set $type = "direct"
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
19 #elif $source.from == "cRAP"
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
20 ##set $url = "ftp://ftp.thegpm.org/fasta/cRAP/crap.fasta"
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
21 #set $url = "https://raw.githubusercontent.com/pravs3683/cRAP/master/cRAP_protein_database.fasta"
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
22 #set $type = "direct"
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
23 #elif $source.from == "HMP"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
24 #set $url = 'http://downloads.hmpdacc.org/data/reference_genomes/body_sites/' + str($source.site) + '.pep.fsa'
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
25 #set $type = "direct"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
26 #elif $source.from == "HOMD"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
27 #set $url = 'ftp://ftp.homd.org/human_oral_microbial_genomic_sequences/current/' + str($source.annotation)
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
28 #if str($source.annotation).endswith('.tar.gz'):
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
29 #set $type = "tgz"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
30 #elif str($source.annotation).endswith('.zip'):
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
31 #set $type = "zip"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
32 #end if
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
33 #elif $source.from == "url"
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
34 #set $url = $source.url
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
35 #set $type = $source.archive_type
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
36 #end if
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
37 #if $type =="direct"
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
38 wget -nv '$url' -O '${output_database}' --no-check-certificate
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
39 #elif $type =="zip"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
40 wget -nv '$url' -O tmp.zip --no-check-certificate && zcat -c tmp.zip > '${output_database}'
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
41 #elif $type =="gzip"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
42 wget -nv '$url' -O tmp.gz --no-check-certificate && (if `command -v gzcat > /dev/null`; then gzcat tmp.gz; else zcat tmp.gz ; fi) > '${output_database}'
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
43 #elif $type =="bzip2"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
44 wget -nv '$url' -O tmp.bz2 --no-check-certificate && bzcat tmp.bz2 > '${output_database}'
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
45 #elif $type =="tgz"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
46 wget -nv '$url' -O tmp.tar.gz && tar zxfO tmp.tar.gz > '${output_database}'
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
47 #elif $type =="tbz"
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
48 wget -nv '$url' -O tmp.tar.bz && tar jxfO tmp.tar.bz > '${output_database}'
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
49 #end if
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
50 ]]>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
51 </command>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
52 <inputs>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
53 <conditional name="source">
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
54 <param name="from" type="select" label="Download from" help="Select database source. cRAP acts as a database for common MS contaminants. UniProtKB is a cross species collection of functional protein databases">
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
55 <option value="uniprot">UniProtKB</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
56 <option value="cRAP">cRAP (contaminants)</option>
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
57 <option value="HMP">Human Microbiome Project body sites</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
58 <option value="HOMD">Human Oral Microbiome Database (HOMD)</option>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
59 <option value="url">Custom URL</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
60 </param>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
61 <when value="uniprot">
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
62 <param name="taxon" type="select" format="text" help="select species for protein database">
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
63 <label>Taxonomy</label>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
64 <options from_file="uniprot_taxons.loc">
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
65 <column name="name" index="0" />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
66 <column name="value" index="1" />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
67 </options>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
68 </param>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
69 <param name="reviewed" type="select" help="UniProtKB/TrEMBL (unreviewed)is a large, automatically annotated database- may contain redundant sequences, but there is a higher chance peptides will be identified. UniProtKB/Swiss-Prot (reviewed) is a smaller, manually annotated database- less of a chance peptides will be identified but less sequence redundancy">
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
70 <option value="+">UniProtKB</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
71 <option value="+reviewed%3Ayes">UniProtKB/Swiss-Prot (reviewed only)</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
72 <option value="+reviewed%3Ano">UniProtKB/TrEMBL (unreviewed only)</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
73 <sanitizer>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
74 <valid>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
75 <add value="%"/>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
76 </valid>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
77 </sanitizer>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
78 </param>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
79 <param name="set" type="select" label="Proteome Set">
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
80 <option value="+">Any</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
81 <option value="+keyword%3a1185" selected="true">Reference Proteome Set</option>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
82 <sanitizer>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
83 <valid>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
84 <add value="%"/>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
85 </valid>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
86 </sanitizer>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
87 </param>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
88 <param name="include_isoform" type="boolean" truevalue="&amp;include=yes" falsevalue="" label="Include isoform data" help="several different forms of a given protein are incorporated into database" />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
89 </when>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
90 <when value="cRAP" />
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
91 <when value="HMP">
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
92 <param name="site" type="select" label="Proteome for body site">
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
93 <option value="Airways">HMP airways</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
94 <option value="Blood">HMP Blood</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
95 <option value="Gastrointestinal_tract">HMP Gastro-intestinal tract</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
96 <option value="Oral">HMP Oral</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
97 <option value="Skin">HMP Skin</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
98 <option value="Urogenital_tract">HMP urogenital Tract</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
99 </param>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
100 </when>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
101 <when value="HOMD">
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
102 <param name="annotation" type="select" label="Human Oral Microbiome Proteome">
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
103 <option value="oral_microbiome_dynamic.aa.zip">HOMD with dynamic annotation</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
104 <option value="oral_microbiome.aa.tar.gz">HOMD with static annotation</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
105 </param>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
106 </when>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
107 <when value="url">
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
108 <param name="url" value="" type="text" label="URL (http, ftp) of Fasta sequences">
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
109 <sanitizer>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
110 <valid>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
111 <add value="%"/>
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
112 <add value="~"/>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
113 </valid>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
114 </sanitizer>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
115 </param>
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
116 <param name="archive_type" type="select" label="Fasta source compression type">
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
117 <option value="direct" selected="true">fasta file (uncompressed)</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
118 <option value="gzip">fasta.gz (gzip compressed)</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
119 <option value="bzip2">fasta.bz2 (bzip2 compressed)</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
120 <option value="zip">fasta.zip or fasta.Z (Zip compressed)</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
121 <option value="tgz">fasta.tgz or fasta.tar.gz (tar archive gzip compressed)</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
122 <option value="tbz">fasta.tbz or fasta.tar.bz (tar archive bzip2 compressed)</option>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
123 </param>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
124 </when>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
125 </conditional>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
126 </inputs>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
127 <outputs>
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
128 <data format="fasta" name="output_database" label="Protein Database ${source.from}" />
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
129 </outputs>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
130 <tests>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
131 <test>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
132 <param name="from" value="cRAP" />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
133 <output name="output_database">
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
134 <assert_contents>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
135 <has_text text="KKA1_ECOLX" />
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
136 </assert_contents>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
137 </output>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
138 </test>
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
139 <test>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
140 <param name="from" value="url" />
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
141 <param name="url" value="https://raw.githubusercontent.com/pravs3683/cRAP/master/cRAP_protein_database.fasta" />
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
142 <param name="archive_type" value="direct" />
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
143 <output name="output_database">
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
144 <assert_contents>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
145 <has_text text="KKA1_ECOLX" />
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
146 </assert_contents>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
147 </output>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
148 </test>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
149 </tests>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
150 <help>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
151 <![CDATA[
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
152 **Output**
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
153
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
154 Creates a FASTA file of specified protein sequences for comparison with experimental MS/MS data in search algorithm.
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
155
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
156 **External Links**
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
157
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
158 - Galaxy-P_101_ shows usage Protein Database Downloader tool in the creation of a workflow
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
159 - UniProtKB_ provides additional information about the UniProt Knowledgebase
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
160
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
161
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
162 .. _Galaxy-P_101: http://msi-galaxy-p.readthedocs.org/en/latest/sections/galaxyp_101.html
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
163 .. _UniProtKB: http://www.uniprot.org/help/uniprotkb
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
164
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
165
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
166 **Additional Protein Fasta URLs**
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
167
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
168 *HUMAN GUT METAPROTEOME:*
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
169
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
170 * 61MB gzip http://www.bork.embl.de/~arumugam/Qin_et_al_2010/frequent_microbe_proteins.fasta.gz
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
171
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
172
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
173 *MOUSE GUT MICROBIOTA:*
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
174
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
175 * See: http://gigadb.org/dataset/view/id/100114/token/mZlMYJIF04LshpgP
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
176
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
177
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
178 ]]>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
179 </help>
8
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
180 <citations>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
181 <citation type="doi">10.1093/nar/gkw1099</citation>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
182 <citation type="doi">10.1093/nar/gkv1195 </citation>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
183 <citation type="doi">10.1093/database/baq013</citation>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
184 <citation type="doi">10.1038/nature11209</citation>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
185 <citation type="doi">10.1038/nature11234</citation>
a85fbebe8b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit baa8095b41984515948c6ef2fda7c7e61c945f94
galaxyp
parents: 7
diff changeset
186 </citations>
5
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
187 </tool>
1d3557cec567 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dbbuilder commit da321d452c314c8c66ea848fe1fe20879c03b0e4
galaxyp
parents:
diff changeset
188