Skip to content

Commit 27b2c6c

Browse files
authored
Merge pull request #446 from Joon-Klaps/update-nextclade-pangolin
Update nextclade & pangolin modules
2 parents 402fad8 + 406eb40 commit 27b2c6c

23 files changed

+797
-133
lines changed

CHANGELOG.md

+23-19
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,24 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
2929
- [[PR #438](https://github.com/nf-core/viralrecon/pull/438)] - Update fastp container to 0.23.4
3030
- [[PR #439](https://github.com/nf-core/viralrecon/pull/439)] - Fix cardinality issue when using `--bowtie2_index`
3131
- [[PR #435](https://github.com/nf-core/viralrecon/pull/435)] - Changed to a patched cutadapt from nf-core modules, added `skip_noninternal_primers` param to allow users to process primers inside the pipeline, and added `threeprime_adapters` to determine whether primers are 3' or 5' adapters.
32+
- [[PR #446](https://github.com/nf-core/viralrecon/pull/446)] - Update nextclade & pangolin modules
3233

3334
### Parameters
3435

35-
| Old parameter | New parameter |
36-
| ------------- | ---------------------------- |
37-
| | `--skip_freyja` |
38-
| | `--freyja_repeats` |
39-
| | `--freyja_db_name` |
40-
| | `--freyja_barcodes` |
41-
| | `--freyja_lineages` |
42-
| | `--skip_freyja_boot` |
43-
| | `--additional_annotation` |
44-
| | `--min_contig_length` |
45-
| | `--min_perc_contig_aligned` |
46-
| | `--skip_noninternal_primers` |
47-
| | `--threeprime_adapters` |
36+
| Old parameter | New parameter |
37+
| ------------------------------- | ---------------------------- |
38+
| | `--skip_freyja` |
39+
| | `--freyja_repeats` |
40+
| | `--freyja_db_name` |
41+
| | `--freyja_barcodes` |
42+
| | `--freyja_lineages` |
43+
| | `--skip_freyja_boot` |
44+
| | `--additional_annotation` |
45+
| | `--min_contig_length` |
46+
| | `--min_perc_contig_aligned` |
47+
| | `--skip_noninternal_primers` |
48+
| | `--threeprime_adapters` |
49+
| `--nextclade_dataset_reference` | |
4850

4951
> **NB:** Parameter has been **updated** if both old and new parameter information is present.
5052
> **NB:** Parameter has been **added** if just the new parameter information is present.
@@ -54,12 +56,14 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
5456

5557
Note, since the pipeline is now using Nextflow DSL2, each process will be run with its own [Biocontainer](https://biocontainers.pro/#/registry). This means that on occasion it is entirely possible for the pipeline to be using different versions of the same tool. However, the overall software dependency changes compared to the last release have been listed below for reference.
5658

57-
| Dependency | Old version | New version |
58-
| ---------- | ----------- | ----------- |
59-
| `cutadapt` | | 4.6 |
60-
| `fastp` | 0.23.2 | 0.23.4 |
61-
| `freyja` | | 1.5.0 |
62-
| `multiqc` | 1.14 | 1.19 |
59+
| Dependency | Old version | New version |
60+
| ----------- | ----------- | ----------- |
61+
| `cutadapt` | | 4.6 |
62+
| `fastp` | 0.23.2 | 0.23.4 |
63+
| `freyja` | | 1.5.0 |
64+
| `multiqc` | 1.14 | 1.19 |
65+
| `nextclade` | 2.12.0 | 3.8.2 |
66+
| `pangolin` | 4.2 | 4.3 |
6367

6468
> **NB:** Dependency has been **updated** if both old and new version information is present.
6569
>

main.nf

+2-5
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ params.gff = getGenomeAttribute('gff')
3131
params.bowtie2_index = getGenomeAttribute('bowtie2')
3232
params.primer_bed = getGenomeAttribute('primer_bed', primer_set, primer_set_version)
3333

34-
params.nextclade_dataset = getGenomeAttribute('nextclade_dataset')
34+
params.nextclade_dataset = getGenomeAttribute('nextclade_dataset_v3pl')
3535
params.nextclade_dataset_name = getGenomeAttribute('nextclade_dataset_name')
36-
params.nextclade_dataset_reference = getGenomeAttribute('nextclade_dataset_reference')
37-
params.nextclade_dataset_tag = getGenomeAttribute('nextclade_dataset_tag')
36+
params.nextclade_dataset_tag = getGenomeAttribute('nextclade_dataset_tag_v3pl')
3837

3938

4039
/*
@@ -86,7 +85,6 @@ workflow NFCORE_VIRALRECON {
8685
params.bowtie2_index,
8786
params.nextclade_dataset,
8887
params.nextclade_dataset_name,
89-
params.nextclade_dataset_reference,
9088
params.nextclade_dataset_tag
9189
)
9290

@@ -102,7 +100,6 @@ workflow NFCORE_VIRALRECON {
102100
params.bowtie2_index,
103101
params.nextclade_dataset,
104102
params.nextclade_dataset_name,
105-
params.nextclade_dataset_reference,
106103
params.nextclade_dataset_tag
107104
)
108105

modules.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,17 +182,17 @@
182182
},
183183
"nextclade/datasetget": {
184184
"branch": "master",
185-
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
185+
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
186186
"installed_by": ["modules"]
187187
},
188188
"nextclade/run": {
189189
"branch": "master",
190-
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
190+
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
191191
"installed_by": ["modules"]
192192
},
193193
"pangolin": {
194194
"branch": "master",
195-
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
195+
"git_sha": "9530ba667bb6c809d998fb9bd567bb9514cb23e5",
196196
"installed_by": ["modules"]
197197
},
198198
"picard/collectmultiplemetrics": {

modules/nf-core/nextclade/datasetget/environment.yml

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/nextclade/datasetget/main.nf

+21-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/nextclade/datasetget/meta.yml

+25-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/nextclade/datasetget/tests/main.nf.test

+53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/nextclade/datasetget/tests/main.nf.test.snap

+41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/nextclade/run/environment.yml

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/nextclade/run/main.nf

+21-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)