Skip to content

Commit f95cf02

Browse files
authored
Merge pull request #786 from d4straub/fix-dada_ref_taxonomy-silva132
fix --dada_ref_taxonomy silva=132
2 parents 0ac3093 + 12c0370 commit f95cf02

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
### `Added`
99

10+
- [#786](https://github.com/nf-core/ampliseq/pull/786) - Added version 20240904 of Kraken2 standard taxonomy database: `standard=20240904` or `standard` as parameter to `--kraken2_ref_taxonomy`
11+
1012
### `Changed`
1113

1214
- [#785](https://github.com/nf-core/ampliseq/pull/785) - replaced https://data.ace.uq.edu.au/public/gtdb/data by https://data.gtdb.ecogenomic.org for GTDB versions via `--dada_ref_taxonomy`
1315

1416
### `Fixed`
1517

1618
- [#785](https://github.com/nf-core/ampliseq/pull/785) - Template update for nf-core/tools version 3.0.2
19+
- [#786](https://github.com/nf-core/ampliseq/pull/786) - Creation of the summary report was failing with `--dada_ref_taxonomy silva=132`
1720

1821
### `Dependencies`
1922

conf/ref_databases.config

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ params {
192192
dbversion = "SILVA v138.1 (https://zenodo.org/record/4587955)"
193193
}
194194
'silva=132' {
195-
title = "Silva Project's version 132 release"
195+
title = "Silva Projects version 132 release"
196196
file = [ "https://zenodo.org/record/1172783/files/silva_nr_v132_train_set.fa.gz", "https://zenodo.org/record/1172783/files/silva_species_assignment_v132.fa.gz" ]
197197
citation = "Quast C, Pruesse E, Yilmaz P, Gerken J, Schweer T, Yarza P, Peplies J, Glöckner FO. The SILVA ribosomal RNA gene database project: improved data processing and web-based tools. Nucleic Acids Res. 2013 Jan;41(Database issue):D590-6. doi: 10.1093/nar/gks1219. Epub 2012 Nov 28. PMID: 23193283; PMCID: PMC3531112."
198198
fmtscript = "taxref_reformat_standard.sh"
@@ -528,8 +528,15 @@ params {
528528
taxlevels = "D,P,C,O,F,G,S"
529529
}
530530
'standard' {
531-
title = "Standard database - Version 20230605"
532-
file = [ "https://genome-idx.s3.amazonaws.com/kraken/k2_standard_20230605.tar.gz" ]
531+
title = "Standard database - Version 20240904"
532+
file = [ "https://genome-idx.s3.amazonaws.com/kraken/k2_standard_20240904.tar.gz" ]
533+
citation = "Wood, D. E., Lu, J., & Langmead, B. (2019). Improved metagenomic analysis with Kraken 2. Genome biology, 20(1), 257. https://doi.org/10.1186/s13059-019-1891-0"
534+
fmtscript = ""
535+
taxlevels = "D,P,C,O,F,G,S"
536+
}
537+
'standard=20240904' {
538+
title = "Standard database - Version 20240904"
539+
file = [ "https://genome-idx.s3.amazonaws.com/kraken/k2_standard_20240904.tar.gz" ]
533540
citation = "Wood, D. E., Lu, J., & Langmead, B. (2019). Improved metagenomic analysis with Kraken 2. Genome biology, 20(1), 257. https://doi.org/10.1186/s13059-019-1891-0"
534541
fmtscript = ""
535542
taxlevels = "D,P,C,O,F,G,S"

nextflow_schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@
479479
"greengenes",
480480
"greengenes=13.5",
481481
"standard",
482+
"standard=20240904",
482483
"standard=20230605"
483484
]
484485
},

0 commit comments

Comments
 (0)