Skip to content

Update docs + database params, skip hmmsearch #391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jul 4, 2024
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#371](https://github.com/nf-core/funcscan/pull/371) Fixed AMRFinderPlus parameter `arg_amrfinderplus_name`. (by @m3hdad)
- [#376](https://github.com/nf-core/funcscan/pull/376) Fixed an occasional RGI process failure when certain files not produced. (❤️ to @amizeranschi for reporting, fix by @amizeranschi & @jfy133)
- [#386](https://github.com/nf-core/funcscan/pull/386) Updated DeepBGC module to fix output file names, separate annotation step for all BGC tools, add warning if no BGCs found, fix MultiQC reporting of annotation workflow. (by @jfy133, @jasmezz)
- [#391](https://github.com/nf-core/funcscan/pull/391) Skip hmmmsearch by default to not crash pipeline if user provides no HMM files, updated all "database" parameters, updated docs. (by @jasmezz)
- [#391](https://github.com/nf-core/funcscan/pull/391) Skip hmmmsearch by default to not crash pipeline if user provides no HMM files, updated docs. (by @jasmezz)
- [#391](https://github.com/nf-core/funcscan/pull/391) Unified all "database" parameters. (by @jasmezz)

### `Dependencies`

Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ This requires supplying a list of HMM files ending in `.hmm`, that have models f
You should place all HMMs in a directory, supply them to the AMP or BGC workflow and switch hmmsearch on like:

```bash
--amp_run_hmmsearch --amp_hmmsearch_models '/<path>/<to>/<amp>/*.hmm'
--amp_run_hmmsearch --amp_hmmsearch_models "/<path>/<to>/<amp>/*.hmm"
```

### AMPcombi
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ params {
bgc_antismash_taxon = 'bacteria'

bgc_skip_deepbgc = false
bgc_deepbgc_db = null
bgc_deepbgc_db = null
bgc_deepbgc_score = 0.5
bgc_deepbgc_prodigalsinglemode = false
bgc_deepbgc_mergemaxproteingap = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def toolCitationText() {
!params.bgc_skip_antismash ? "antiSMASH (Blin et al. 2021)," : "",
!params.bgc_skip_deepbgc ? "deepBGC (Hannigan et al. 2019)," : "",
!params.bgc_skip_gecco ? "GECCO (Carroll et al. 2021)," : "",
params.amp_run_hmmsearch ? "HMMER (Eddy 2011)," : "",
params.bgc_run_hmmsearch ? "HMMER (Eddy 2011)," : "",
". The output from the biosynthetic gene cluster screening tools were standardised and summarised with comBGC (Frangenberg et al. 2023)."
].join(' ').replaceAll(", +\\.", ".").trim()

Expand Down