Skip to content

Commit bda8f43

Browse files
authored
Merge pull request #431 from nf-core/update-modules
Update several modules
2 parents 21f7969 + 6012d16 commit bda8f43

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1274
-475
lines changed

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- [#427](https://github.com/nf-core/funcscan/pull/427) AMPcombi now can use multiple other databases for classifications. (by @darcy220606)
1212
- [#429](https://github.com/nf-core/funcscan/pull/429) Updated to nf-core template 3.1.0. (by @jfy133 and @jasmezz)
1313
- [#433](https://github.com/nf-core/funcscan/pull/433) Updated to nf-core template 3.1.1. (by @jfy133)
14+
- [#431](https://github.com/nf-core/funcscan/pull/431) Updated AMPcombi, Macrel, all MMseqs2 modules, MultiQC, Pyrodigal, and seqkit, added `--taxa_classification_mmseqs_compressed` parameter. (by @jasmezz)
1415

1516
### `Fixed`
1617

@@ -21,11 +22,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2122

2223
### `Dependencies`
2324

24-
| Tool | Previous version | New version |
25-
| -------- | ---------------- | ----------- |
26-
| AMPcombi | 0.2.2 | 2.0.1 |
27-
| Macrel | 1.2.0 | 1.4.0 |
28-
| MultiQC | 1.24.0 | 1.25.1 |
25+
| Tool | Previous version | New version |
26+
| --------- | ---------------- | ----------- |
27+
| AMPcombi | 0.2.2 | 2.0.1 |
28+
| Macrel | 1.2.0 | 1.4.0 |
29+
| MMseqs2 | 15.6f452 | 17.b804f |
30+
| MultiQC | 1.24.0 | 1.26 |
31+
| Pyrodigal | 3.3.0 | 3.6.3 |
32+
| seqkit | 2.8.1 | 2.9.0 |
2933

3034
### `Deprecated`
3135

@@ -105,7 +109,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
105109
| GECCO | 0.9.8 | 0.9.10 |
106110
| hAMRonization | 1.1.1 | 1.1.4 |
107111
| HMMER | 3.3.2 | 3.4 |
108-
| MMSeqs | NA | 2:15.6f452 |
112+
| MMseqs2 | NA | 15.6f452 |
109113
| MultiQC | 1.15 | 1.24 |
110114
| Pyrodigal | 2.1.0 | 3.3.0 |
111115
| RGI | 5.2.1 | 6.0.3 |

conf/base.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ process {
156156
withName: ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES {
157157
memory = { 4.GB * task.attempt }
158158
cpus = 1
159+
time = { 2.h * task.attempt }
159160
}
160161

161162
withName: DEEPBGC_DOWNLOAD {

conf/modules.config

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ process {
4141
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
4242
]
4343
ext.args = [
44-
params.taxa_classification_mmseqs_db_savetmp ? "" : "--remove-tmp-files"
44+
params.taxa_classification_mmseqs_db_savetmp ? "" : "--remove-tmp-files",
45+
"--compressed ${params.taxa_classification_mmseqs_compressed}"
4546
].join(' ').trim()
4647
}
4748

@@ -52,6 +53,9 @@ process {
5253
enabled: params.save_db,
5354
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
5455
]
56+
ext.args = [
57+
"--compressed ${params.taxa_classification_mmseqs_compressed}"
58+
].join(' ').trim()
5559
}
5660

5761
withName: MMSEQS_TAXONOMY {
@@ -70,6 +74,7 @@ process {
7074
"--orf-filter-s ${params.taxa_classification_mmseqs_taxonomy_orffilters}",
7175
"--lca-mode ${params.taxa_classification_mmseqs_taxonomy_lcamode}",
7276
"--vote-mode ${params.taxa_classification_mmseqs_taxonomy_votemode}",
77+
"--compressed ${params.taxa_classification_mmseqs_compressed}"
7378
].join(' ').trim()
7479
}
7580

@@ -81,6 +86,9 @@ process {
8186
pattern: "*.tsv",
8287
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
8388
]
89+
ext.args = [
90+
"--compressed ${params.taxa_classification_mmseqs_compressed}"
91+
].join(' ').trim()
8492
}
8593

8694
withName: SEQKIT_SEQ {

modules.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"ampcombi2/parsetables": {
2424
"branch": "master",
25-
"git_sha": "993865fe60cb1569155fbbbe0cee113e1127abaf",
25+
"git_sha": "0e9cb409c32d3ec4f0d3804588e4778971c09b7e",
2626
"installed_by": ["modules"]
2727
},
2828
"ampir": {
@@ -32,7 +32,7 @@
3232
},
3333
"amplify/predict": {
3434
"branch": "master",
35-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
35+
"git_sha": "ce35ce92566b3328b405253543b9b2b4d4e5f4f7",
3636
"installed_by": ["modules"]
3737
},
3838
"amrfinderplus/run": {
@@ -62,7 +62,7 @@
6262
},
6363
"bakta/bakta": {
6464
"branch": "master",
65-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
65+
"git_sha": "0e9cb409c32d3ec4f0d3804588e4778971c09b7e",
6666
"installed_by": ["modules"]
6767
},
6868
"bakta/baktadbdownload": {
@@ -82,12 +82,12 @@
8282
},
8383
"deepbgc/download": {
8484
"branch": "master",
85-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
85+
"git_sha": "ce35ce92566b3328b405253543b9b2b4d4e5f4f7",
8686
"installed_by": ["modules"]
8787
},
8888
"deepbgc/pipeline": {
8989
"branch": "master",
90-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
90+
"git_sha": "ce35ce92566b3328b405253543b9b2b4d4e5f4f7",
9191
"installed_by": ["modules"]
9292
},
9393
"fargene": {
@@ -102,7 +102,7 @@
102102
},
103103
"gunzip": {
104104
"branch": "master",
105-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
105+
"git_sha": "ce35ce92566b3328b405253543b9b2b4d4e5f4f7",
106106
"installed_by": ["modules"]
107107
},
108108
"hamronization/abricate": {
@@ -147,27 +147,27 @@
147147
},
148148
"mmseqs/createdb": {
149149
"branch": "master",
150-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
150+
"git_sha": "2dc4c0474a77f5f8709eb970d890ad102e92af6f",
151151
"installed_by": ["modules"]
152152
},
153153
"mmseqs/createtsv": {
154154
"branch": "master",
155-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
155+
"git_sha": "2dc4c0474a77f5f8709eb970d890ad102e92af6f",
156156
"installed_by": ["modules"]
157157
},
158158
"mmseqs/databases": {
159159
"branch": "master",
160-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
160+
"git_sha": "2dc4c0474a77f5f8709eb970d890ad102e92af6f",
161161
"installed_by": ["modules"]
162162
},
163163
"mmseqs/taxonomy": {
164164
"branch": "master",
165-
"git_sha": "dc94b6ee04a05ddb9f7ae050712ff30a13149164",
165+
"git_sha": "2dc4c0474a77f5f8709eb970d890ad102e92af6f",
166166
"installed_by": ["modules"]
167167
},
168168
"multiqc": {
169169
"branch": "master",
170-
"git_sha": "cf17ca47590cc578dfb47db1c2a44ef86f89976d",
170+
"git_sha": "f80914f78fb7fa1c00b14cfeb29575ee12240d9c",
171171
"installed_by": ["modules"]
172172
},
173173
"prodigal": {
@@ -177,17 +177,17 @@
177177
},
178178
"prokka": {
179179
"branch": "master",
180-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
180+
"git_sha": "bcfb2f7efd4444ab442ffc8a248afbd62bca5ae7",
181181
"installed_by": ["modules"]
182182
},
183183
"pyrodigal": {
184184
"branch": "master",
185-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
185+
"git_sha": "938e803109104e30773f76a7142442722498fef1",
186186
"installed_by": ["modules"]
187187
},
188188
"rgi/cardannotation": {
189189
"branch": "master",
190-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
190+
"git_sha": "3e548877f25a5980a177cc4f81d2d2e8c24164ef",
191191
"installed_by": ["modules"]
192192
},
193193
"rgi/main": {
@@ -197,7 +197,7 @@
197197
},
198198
"seqkit/seq": {
199199
"branch": "master",
200-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
200+
"git_sha": "60645c2b45e56579de0a0c89416805cae44c1f46",
201201
"installed_by": ["modules"]
202202
},
203203
"tabix/bgzip": {
@@ -207,7 +207,7 @@
207207
},
208208
"untar": {
209209
"branch": "master",
210-
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
210+
"git_sha": "3e548877f25a5980a177cc4f81d2d2e8c24164ef",
211211
"installed_by": ["modules"],
212212
"patch": "modules/nf-core/untar/untar.diff"
213213
}

modules/nf-core/ampcombi2/parsetables/meta.yml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/ampcombi2/parsetables/tests/tags.yml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/amplify/predict/tests/main.nf.test

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/amplify/predict/tests/main.nf.test.snap

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bakta/bakta/meta.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/deepbgc/download/main.nf

Lines changed: 15 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)