Mercurial > repos > bgruening > antismash
annotate antismash.xml @ 2:3f0077c88c16 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08-dirty
author | bgruening |
---|---|
date | Sat, 10 Feb 2018 02:37:49 -0500 |
parents | 593bb8f5488b |
children | 5784e268efca |
rev | line source |
---|---|
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
1 <?xml version='1.0' encoding='utf-8'?> |
2
3f0077c88c16
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08-dirty
bgruening
parents:
1
diff
changeset
|
2 <tool id="antismash" name="Antismash" version="4.1" profile="17.01"> |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
3 <description>allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters</description> |
0 | 4 <requirements> |
2
3f0077c88c16
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08-dirty
bgruening
parents:
1
diff
changeset
|
5 <requirement type="package" version="4.1">antismash</requirement> |
0 | 6 </requirements> |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
7 <version_command>antismash --version</version_command> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
8 <command detect_errors="aggressive"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
9 <![CDATA[ |
0 | 10 #import os, glob |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
11 #set $htmloutputfolder = $html.files_path |
0 | 12 #if str($infile.ext) == 'genbank': |
13 #set $file_extension = 'gb' | |
14 #else: | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
15 #set $file_extension = $infile.ext |
0 | 16 #end if |
17 | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
18 ln -s '$infile' input_tempfile.$file_extension && |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
19 |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
20 ## create html folder |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
21 mkdir -p $htmloutputfolder && |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
22 |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
23 antismash |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
24 --cpus "\${GALAXY_SLOTS:-12}" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
25 --taxon '${taxon}' |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
26 --input-type '${input_type}' |
0 | 27 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
28 ${clusterblast} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
29 ${subclusterblast} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
30 ${smcogs} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
31 ${inclusive} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
32 ${borderpredict} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
33 ${tta} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
34 ${asf} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
35 ${full_hmmer} |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
36 |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
37 input_tempfile.$file_extension && |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
38 |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
39 ## copy all content to html folder |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
40 cp input_tempfile/index.html '${html}' 2> /dev/null && |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
41 cp -r input_tempfile/* '${htmloutputfolder}' |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
42 |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
43 ]]> |
0 | 44 </command> |
45 <inputs> | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
46 <param name="infile" type="data" format="genbank,fasta,embl" label="Sequence file in GenBank,EMBL or FASTA format"/> |
0 | 47 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
48 <param argument="--taxon" type="select" label="Origin of DNA"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
49 <option value="bacteria" selected="True">Bacteria</option> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
50 <option value="fungi">Fungi</option> |
0 | 51 </param> |
52 | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
53 <param argument="--input_type" type="select" label="Origin of DNA"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
54 <option value="nucl" selected="True">Nucleotide</option> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
55 <option value="prot">Amino-acid</option> |
0 | 56 </param> |
57 | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
58 <param argument="--clusterblast" type="boolean" truevalue="--clusterblast" falsevalue="" checked="False" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
59 label="BLAST identified clusters against known clusters" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
60 help="Compare identified clusters against a database of antiSMASH-predicted clusters." /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
61 <param argument="--subclusterblast" type="boolean" truevalue="--subclusterblast" falsevalue="" checked="True" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
62 label="Subcluster BLAST analysis" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
63 help="Compare identified clusters against known subclusters responsible for synthesising precursors." /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
64 <param argument="--knownclusterblast" type="boolean" truevalue="--knownclusterblast" falsevalue="" checked="True" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
65 label="KnowCluster BLAST analysis" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
66 help="Compare identified clusters against known gene clusters from the MIBiG database."/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
67 <param argument="--smcogs" type="boolean" checked="True" truevalue="--smcogs" falsevalue="" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
68 label="Analysis of secondary metabolism gene families (smCOGs)" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
69 help="Look for sec. met. clusters of orthologous groups."/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
70 <param argument="--inclusive" type="boolean" truevalue="--inclusive" falsevalue="" checked="False" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
71 label="Inclusive ClusterFinder algorithm" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
72 help="Use inclusive ClusterFinder algorithm for additional cluster detection."/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
73 <param argument="--borderpredict" type="boolean" truevalue="--borderpredict" falsevalue="" checked="False" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
74 label="Predict gene cluster borders with ClusterFinder" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
75 help="Use ClusterFinder algorithm to predict gene cluster borders."/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
76 <param argument="--asf" type="boolean" truevalue="--asf" falsevalue="" checked="True" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
77 label="Run active site finder module" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
78 <param argument="--tta" type="boolean" truevalue="--tta" falsevalue="" checked="False" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
79 label="Run TTA codon detection module" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
80 <param argument="--full_hmmer" type="boolean" truevalue="--full-hmmer" falsevalue="" checked="False" |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
81 label="Run a whole-genome Pfam analysis" /> |
0 | 82 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
83 <param name="outputs" type="select" multiple="true" label="Outputs"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
84 <option value="html" selected="True">HTML file</option> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
85 <option value="all">All results</option> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
86 <option value="embl">EMBL files</option> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
87 <option value="gb">GenBank files</option> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
88 <option value="genecluster_tabular">Gene clusters</option> |
0 | 89 </param> |
90 | |
91 </inputs> | |
92 <outputs> | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
93 <collection type="list" name="genecluster_tabular" label="${tool.name} on ${on_string} (Gene Cluster)"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
94 <discover_datasets pattern="(?P<designation>.*)\.txt" directory="input_tempfile" ext="txt" visible="false" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
95 <filter>'genecluster_tabular' in outputs</filter> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
96 </collection> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
97 <collection name="genbank" type="list" label="${tool.name} on ${on_string} (GenBank)"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
98 <discover_datasets pattern="(?P<designation>.*)\.gbk" directory="input_tempfile" ext="genbank" visible="false" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
99 <filter>'gb' in outputs</filter> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
100 </collection> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
101 <collection name="embl" type="list" label="${tool.name} on ${on_string} (EMBL)"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
102 <discover_datasets pattern="(?P<designation>.*)\.gbk" directory="input_tempfile" ext="embl" visible="false" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
103 <filter>'embl' in outputs</filter> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
104 </collection> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
105 <collection name="archive" type="list" label="${tool.name} on ${on_string} (all files compressed)"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
106 <discover_datasets pattern="(?P<designation>.*)\.zip" directory="input_tempfile" ext="zip" visible="false" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
107 <filter>'all' in outputs</filter> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
108 </collection> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
109 <data format="html" name="html" label="${tool.name} on ${on_string} (html report)" /> |
0 | 110 </outputs> |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
111 <tests> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
112 <test> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
113 <param name="infile" value="sequence.fasta"/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
114 <output name="html" file="index.html"/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
115 </test> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
116 <test> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
117 <param name="infile" value="sequence.gb"/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
118 <param name="outputs" value="html,gb"/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
119 <output_collection name="genbank" type="list"> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
120 <element name="ARBH01000003.1.cluster001" file="ARBH01000003.1.cluster001" ftype="genbank" compare="sim_size" /> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
121 <element name="ARBH01000003.1.final" file="ARBH01000003.1.final" ftype="genbank"/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
122 </output_collection> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
123 <output name="html" file="index.2.html"/> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
124 </test> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
125 </tests> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
126 <help> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
127 <![CDATA[ |
0 | 128 |
129 **What it does** | |
130 | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
131 AntiSMASH allows the rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. |
0 | 132 It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier. |
133 | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
134 antiSMASH is powered by several open source tools: NCBI BLAST+, HMMer 3, Muscle 3, Glimmer 3, FastTree, TreeGraph 2, Indigo-depict, PySVG and JQuery SVG. |
0 | 135 |
136 **Input** | |
137 | |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
138 The ideal input for antiSMASH is an annotated nucleotide file in Genbank format or EMBL format. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
139 You can either upload a GenBank/EMBL file manually, or simply enter the GenBank/RefSeq accession number of your sequence for antiSMASH to upload it. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
140 If no annotation is available, we recommend running your sequence through an annotation pipeline like RAST to obtain GBK/EMBL files with high-quality annotations. |
0 | 141 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
142 Alternatively, you can provide a FASTA file containing a single sequence. antiSMASH will generate a preliminary annotation using Prodigal, and use that to run the rest of the analysis. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
143 You can also provide gene annotations in GFF3 foramt. Input files should be properly formatted. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
144 If you are creating your GBK/EMBL/FASTA file manually, be sure to do so in a plain text editor like Notepad or Emacs, and saving your files as "All files (.)", ending with the correct extension (for example ".fasta", ".gbk", or ".embl". |
0 | 145 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
146 There are several optional analyses that may or may not be run on your sequence. Highly recommended is the Gene Cluster Blast Comparative Analysis, which runs BlastP using each amino acid sequence from a detected gene cluster as a query on a large database of predicted protein sequences from secondary metabolite biosynthetic gene clusters, and pools the results to identify the gene clusters that are most homologous to the gene cluster that was detected in your query nucleotide sequence. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
147 This analysis is selected by default |
0 | 148 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
149 Also available is the analysis of secondary metabolism gene families (smCOGs). This analysis attempts to allocate each gene in the detected gene clusters to a secondary metabolism-specific gene family using profile hidden Markov models specific for the conserved sequence region characteristic of this family. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
150 Additionally, a phylogenetic tree is constructed of each gene together with the (max. 100) sequences of the smCOG seed alignment. This analysis is selected by default |
0 | 151 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
152 **Ouput** |
0 | 153 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
154 The output of the antiSMASH analysis pipeline is organized in an interactive HTML page with SVG graphics, and different parts of the analysis are displayed in different panels for every gene cluster |
0 | 155 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
156 In the upper right, a small list of buttons offers further functionality. The house-shaped button will get you back on the antiSMASH start page. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
157 The question-mark button will get you to this help page. The exclamation-mark button leads to a page explaining about antiSMASH. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
158 The downward-pointing arrow will open a menu offering to download the complete set of results from the antiSMASH run, a summary Excel file and to the summary EMBL/GenBank output file. |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
159 The EMBL/GenBank file can be viewed in a genome browser such as Artemis. |
0 | 160 |
1
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
161 ]]> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
162 </help> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
163 <citations> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
164 <citation type="doi">10.1093/nar/gkv437</citation> |
593bb8f5488b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash commit 654a4f3b3a1602cec2510d51fb953fd456427e08
bgruening
parents:
0
diff
changeset
|
165 </citations> |
0 | 166 </tool> |