Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fa9db01
Merge pull request #497 from nf-core/dev
jfy133 Oct 4, 2025
5a2afa6
Integrating gecco_convert into funcscan
SkyLexS Nov 2, 2025
0012b8a
Rearranging the code
SkyLexS Nov 2, 2025
518a7a1
fixing
SkyLexS Nov 2, 2025
f636670
fixing typos
SkyLexS Nov 2, 2025
0fd918f
fixing some error
SkyLexS Nov 3, 2025
a1bcca7
polishing the integration
SkyLexS Nov 4, 2025
8e4f163
fixing warnings
SkyLexS Nov 4, 2025
f5ff043
Merge branch 'nf-core:master' into gecco_convert_dis
SkyLexS Nov 11, 2025
686b2ff
Update for the schema and the function calling
SkyLexS Nov 11, 2025
ed55447
updated output.md
SkyLexS Nov 17, 2025
242592d
added tests
SkyLexS Nov 18, 2025
a5d0119
fixed allOf section for gecco convert
SkyLexS Nov 19, 2025
ecfdfd3
redid the output to include gecco convert
SkyLexS Nov 23, 2025
81b1160
updated changelog.md and readme.md
SkyLexS Nov 25, 2025
43a2964
implemented the changes
SkyLexS Nov 25, 2025
2e62888
removing the unwanted code in the modules config
SkyLexS Nov 25, 2025
c9244b7
fixing lint
SkyLexS Nov 25, 2025
000326b
removed unwanted comment
SkyLexS Dec 1, 2025
d6a9dcb
Implemented schema modification
SkyLexS Dec 4, 2025
8104d87
Linting
SkyLexS Dec 4, 2025
ecd72c7
updated test configs
SkyLexS Dec 8, 2025
fb9a4ff
Linting
SkyLexS Dec 8, 2025
df1e3ac
Update docs/output.md
jfy133 Dec 17, 2025
a9a561a
Fix convert format options to match gecco itself, add validation chec…
jfy133 Dec 17, 2025
47a9254
Update tests
jfy133 Dec 17, 2025
e789973
Merge branch 'gecco_convert_dis' of github.com:SkyLexS/funcscan into …
jfy133 Dec 17, 2025
1ec8cee
Update BAKTA test with final test profile
jfy133 Dec 17, 2025
a06d281
Merge branch 'dev' into gecco_convert_dis
jfy133 Dec 18, 2025
de6c87a
Update conf/modules.config
jfy133 Dec 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,14 @@ process {
].join(' ').trim()
}

withName: GECCO_CONVERT {
publishDir = [
path: { "${params.outdir}/bgc/gecco/${meta.id}" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
]
}

withName: HAMRONIZATION_ABRICATE {
publishDir = [
path: { "${params.outdir}/arg/hamronization/abricate" },
Expand Down
14 changes: 14 additions & 0 deletions docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,20 @@ Note that filtered FASTA is only used for BGC workflow for run-time optimisation

[GECCO](https://gecco.embl.de) is a fast and scalable method for identifying putative novel Biosynthetic Gene Clusters (BGCs) in genomic and metagenomic data using Conditional Random Fields (CRFs).

#### GECCO CONVERT
<details markdown="1">
<summary>Output files</summary>

- `gecco/`
- `*.gff`: GFF3 converted cluster tables containing the position and metadata for all the predicted clusters
- `*.region*.gbk`: Converted and aliased GenBank files so that they can be loaded by BiG-SLiCE
- `*.faa`: Amino-acid FASTA converted GenBank files of all the proteins in a cluster
- `*.fna`:Nucleotide sequence FASTA converted GenBank files from the cluster

</details>

[GECCO CONVERT] (https://gecco.embl.de) is an option in gecco which does file conversion into formats like GFF3, GenBank, or FASTA for further analysis.

### Summary tools

[AMPcombi](#ampcombi), [hAMRonization](#hamronization), [comBGC](#combgc), [MultiQC](#multiqc), [pipeline information](#pipeline-information), [argNorm](#argnorm).
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/gecco/convert/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 56 additions & 0 deletions modules/nf-core/gecco/convert/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

118 changes: 118 additions & 0 deletions modules/nf-core/gecco/convert/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

118 changes: 118 additions & 0 deletions modules/nf-core/gecco/convert/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading