Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `apple` profile to enable the use of Apple containers.
- Drop `hook_url` parameter. To configure messaging services, use a custom config in tandem with the `nf-teams`/`nf-slack` plugin instead.
- Drop `run_coverage` and add `qc_mode` parameter. Thorough coveage analysis is now included in the `qc_mode` parameter, which can be set to `basic` or `full`. Basic QC includes samtools flagstat, idxstats and mosdepth. Full QC includes samtools stats, samtools coverage, riker metrics and panel coverage in addition to basic QC.
- Bump `samtools` module to 1.24.
- Add UMI consensus subworkflow using `fgumi`.

## 3.0.2

Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ process {
"-s",
"--json",
"-d 2500",
meta.umi_aware ? "--barcode-name" : "",
meta.umi_aware ? "--barcode-name --move-umi-to-tag" : "",
"--write-index",
"--output-fmt cram,version=3.0",
"--output-fmt-option archive",
Expand Down
14 changes: 7 additions & 7 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,41 +112,41 @@
},
"samtools/convert": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"],
"patch": "modules/nf-core/samtools/convert/samtools-convert.diff"
},
"samtools/coverage": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"],
"patch": "modules/nf-core/samtools/coverage/samtools-coverage.diff"
},
"samtools/flagstat": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"]
},
"samtools/idxstats": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"]
},
"samtools/sormadup": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"],
"patch": "modules/nf-core/samtools/sormadup/samtools-sormadup.diff"
},
"samtools/sort": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"],
"patch": "modules/nf-core/samtools/sort/samtools-sort.diff"
},
"samtools/stats": {
"branch": "master",
"git_sha": "6d46786420b4d7bc88eba026eb389c0c5535d120",
"git_sha": "9339809fcb90af8a8b7051e6cd914894d5c52002",
"installed_by": ["modules"],
"patch": "modules/nf-core/samtools/stats/samtools-stats.diff"
},
Expand Down
4 changes: 2 additions & 2 deletions modules/nf-core/samtools/convert/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/nf-core/samtools/convert/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/samtools/convert/samtools-convert.diff

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 17 additions & 11 deletions modules/nf-core/samtools/convert/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions modules/nf-core/samtools/convert/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/nf-core/samtools/coverage/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions modules/nf-core/samtools/coverage/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/samtools/coverage/samtools-coverage.diff

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions modules/nf-core/samtools/coverage/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 15 additions & 30 deletions modules/nf-core/samtools/coverage/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/nf-core/samtools/flagstat/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading