diff gecco.xml @ 0:1625927fc16f draft

"Release v0.8.4"
author althonos
date Sun, 21 Nov 2021 16:53:12 +0000
parents
children 359232b58f6a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gecco.xml	Sun Nov 21 16:53:12 2021 +0000
@@ -0,0 +1,86 @@
+<?xml version='1.0' encoding='utf-8'?>
+<tool id="gecco" name="GECCO" version="0.8.4" python_template_version="3.5">
+    <description>GECCO (Gene Cluster prediction with Conditional Random Fields) is a fast and scalable method for identifying putative novel Biosynthetic Gene Clusters (BGCs) in genomic and metagenomic data using Conditional Random Fields (CRFs).</description>
+    <requirements>
+        <requirement type="package" version="0.8.4">gecco</requirement>
+    </requirements>
+    <version_command>gecco --version</version_command>
+    <command detect_errors="aggressive"><![CDATA[
+
+        #if str($input.ext) == 'genbank':
+            #set $file_extension = 'gbk'
+        #else:
+            #set $file_extension = $input.ext
+        #end if
+        ln -s '$input' input_tempfile.$file_extension &&
+
+        gecco -vv run -g input_tempfile.$file_extension &&
+        mv input_tempfile.features.tsv $features &&
+        mv input_tempfile.clusters.tsv $clusters
+
+    ]]></command>
+    <inputs>
+        <param name="input" type="data" format="genbank,fasta" label="Sequence file in GenBank or FASTA format"/>
+    </inputs>
+    <outputs>
+        <collection name="records" type="list" label="${tool.name} detected Biosynthetic Gene Clusters on ${on_string} (GenBank)">
+            <discover_datasets pattern="(?P&lt;designation&gt;.*)\.gbk" ext="genbank" visible="false" />
+        </collection>
+        <data name="features" format="tabular" label="${tool.name} summary of detected features on ${on_string} (TSV)"/>
+        <data name="clusters" format="tabular" label="${tool.name} summary of detected BGCs on ${on_string} (TSV)"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="input" value="BGC0001866.fna"/>
+            <output name="features" file="features.tsv"/>
+            <output name="clusters" file="clusters.tsv"/>
+            <output_collection name="records" type="list">
+                <element name="BGC0001866.1_cluster_1" file="BGC0001866.1_cluster_1.gbk" ftype="genbank" lines_diff="2"/>
+            </output_collection>
+        </test>
+    </tests>
+    <help>
+<![CDATA[
+
+**Overview**
+
+GECCO is a fast and scalable method for identifying putative novel Biosynthetic Gene Clusters (BGCs) in genomic and metagenomic data using Conditional Random Fields (CRFs).
+It is developed in the Zeller group and is part of the suite of computational microbiome analysis tools hosted at EMBL.
+
+**Input**
+
+GECCO works with DNA sequences, and loads them using Biopython, allowing it to support a large variety of formats, including the common FASTA and GenBank files.
+
+**Output**
+
+GECCO will create the following files once done (using the same prefix as the input file):
+
+- features.tsv: The features file, containing the identified proteins and domains in the input sequences.
+- clusters.tsv: If any were found, a clusters file, containing the coordinates of the predicted clusters, along their putative biosynthetic type.
+- {sequence}_cluster_{N}.gbk: If any BGCs were found, a GenBank file per cluster, containing the cluster sequence annotated with its member proteins and domains.
+
+**Contact**
+
+If you have any question about GECCO, if you run into any issue, or if you would like to make a feature request, please create an issue in the GitHub repository. 
+You can also directly contact Martin Larralde via email. If you want to contribute to GECCO, please have a look at the contribution guide first, and feel free to 
+open a pull request on the GitHub repository.
+
+]]>
+    </help>
+    <citations>
+        <citation type="bibtex">
+@article {Carroll2021.05.03.442509,
+	author = {Carroll, Laura M. and Larralde, Martin and Fleck, Jonas Simon and Ponnudurai, Ruby and Milanese, Alessio and Cappio, Elisa and Zeller, Georg},
+	title = {Accurate de novo identification of biosynthetic gene clusters with GECCO},
+	elocation-id = {2021.05.03.442509},
+	year = {2021},
+	doi = {10.1101/2021.05.03.442509},
+	publisher = {Cold Spring Harbor Laboratory},
+	abstract = {Biosynthetic gene clusters (BGCs) are enticing targets for (meta)genomic mining efforts, as they may encode novel, specialized metabolites with potential uses in medicine and biotechnology. Here, we describe GECCO (GEne Cluster prediction with COnditional random fields; https://gecco.embl.de), a high-precision, scalable method for identifying novel BGCs in (meta)genomic data using conditional random fields (CRFs). Based on an extensive evaluation of de novo BGC prediction, we found GECCO to be more accurate and over 3x faster than a state-of-the-art deep learning approach. When applied to over 12,000 genomes, GECCO identified nearly twice as many BGCs compared to a rule-based approach, while achieving higher accuracy than other machine learning approaches. Introspection of the GECCO CRF revealed that its predictions rely on protein domains with both known and novel associations to secondary metabolism. The method developed here represents a scalable, interpretable machine learning approach, which can identify BGCs de novo with high precision.Competing Interest StatementThe authors have declared no competing interest.},
+	URL = {https://www.biorxiv.org/content/early/2021/05/04/2021.05.03.442509},
+	eprint = {https://www.biorxiv.org/content/early/2021/05/04/2021.05.03.442509.full.pdf},
+	journal = {bioRxiv}
+}
+        </citation>
+    </citations>
+</tool>