Skip to content

Commit 5e2e7e5

Browse files
authored
Merge pull request #882 from d4straub/add-gtdb10-RS226
Add GTDB R10-RS226
2 parents bbf814c + e9980e9 commit 5e2e7e5

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### `Added`
99

1010
- [#879](https://github.com/nf-core/ampliseq/pull/879) - Add `sbdi-gtdb=R10-RS226-1` as parameter to `--dada_ref_taxonomy` and make this version the default for `sbdi-gtdb`.
11+
- [#882](https://github.com/nf-core/ampliseq/pull/882) - Add `gtdb=R10-RS226` as parameter to `--dada_ref_taxonomy` and make this version the default for `gtdb`.
1112

1213
### `Changed`
1314

conf/ref_databases.config

+10-3
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,18 @@ params {
4040
dbversion = "Greengenes2 2024.09 (https://zenodo.org/records/14169078)"
4141
}
4242
'gtdb' {
43-
title = "GTDB - Genome Taxonomy Database - Release R09-RS220"
44-
file = [ "https://data.gtdb.ecogenomic.org/releases/release220/220.0/genomic_files_reps/bac120_ssu_reps_r220.fna.gz", "https://data.gtdb.ecogenomic.org/releases/release220/220.0/genomic_files_reps/ar53_ssu_reps_r220.fna.gz" ]
43+
title = "GTDB - Genome Taxonomy Database - Release R10-RS226"
44+
file = [ "https://data.gtdb.ecogenomic.org/releases/release226/226.0/genomic_files_reps/bac120_ssu_reps_r226.fna.gz", "https://data.gtdb.ecogenomic.org/releases/release226/226.0/genomic_files_reps/ar53_ssu_reps_r226.fna.gz" ]
4545
citation = "Parks DH, Chuvochina M, Waite DW, Rinke C, Skarshewski A, Chaumeil PA, Hugenholtz P. A standardized bacterial taxonomy based on genome phylogeny substantially revises the tree of life. Nat Biotechnol. 2018 Nov;36(10):996-1004. doi: 10.1038/nbt.4229. Epub 2018 Aug 27. PMID: 30148503."
4646
fmtscript = "taxref_reformat_gtdb.sh"
47-
dbversion = "GTDB R09-RS220 (https://data.gtdb.ecogenomic.org/releases/release220/220.0)"
47+
dbversion = "GTDB R10-RS226 (https://data.gtdb.ecogenomic.org/releases/release226/226.0)"
48+
}
49+
'gtdb=R10-RS226' {
50+
title = "GTDB - Genome Taxonomy Database - Release R10-RS226"
51+
file = [ "https://data.gtdb.ecogenomic.org/releases/release226/226.0/genomic_files_reps/bac120_ssu_reps_r226.fna.gz", "https://data.gtdb.ecogenomic.org/releases/release226/226.0/genomic_files_reps/ar53_ssu_reps_r226.fna.gz" ]
52+
citation = "Parks DH, Chuvochina M, Waite DW, Rinke C, Skarshewski A, Chaumeil PA, Hugenholtz P. A standardized bacterial taxonomy based on genome phylogeny substantially revises the tree of life. Nat Biotechnol. 2018 Nov;36(10):996-1004. doi: 10.1038/nbt.4229. Epub 2018 Aug 27. PMID: 30148503."
53+
fmtscript = "taxref_reformat_gtdb.sh"
54+
dbversion = "GTDB R10-RS226 (https://data.gtdb.ecogenomic.org/releases/release226/226.0)"
4855
}
4956
'gtdb=R09-RS220' {
5057
title = "GTDB - Genome Taxonomy Database - Release R09-RS220"

nextflow_schema.json

+1
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@
420420
"gtdb=R07-RS207",
421421
"gtdb=R08-RS214",
422422
"gtdb=R09-RS220",
423+
"gtdb=R10-RS226",
423424
"midori2-co1",
424425
"midori2-co1=gb250",
425426
"pr2",

subworkflows/local/utils_nfcore_ampliseq_pipeline/main.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def validateInputParameters() {
230230
String[] sbdi_compatible_databases = [
231231
"coidb","coidb=221216",
232232
"greengenes2","greengenes2=2024.09",
233-
"gtdb","gtdb=R09-RS220","gtdb=R08-RS214","gtdb=R07-RS207","gtdb=R06-RS202","gtdb=R05-RS95",
233+
"gtdb","gtdb=R10-RS226","gtdb=R09-RS220","gtdb=R08-RS214","gtdb=R07-RS207","gtdb=R06-RS202","gtdb=R05-RS95",
234234
"midori2-co1","midori2-co1=gb250",
235235
"pr2","pr2=5.0.0","pr2=4.14.0","pr2=4.13.0",
236236
"rdp","rdp=18",

0 commit comments

Comments
 (0)