Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/fastq align dedup bismark #465

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nf-core/methylseq

## [v2.7.2](https://github.com/nf-core/methylseq/releases/tag/2.7.2) - []
## [v2.8.0](https://github.com/nf-core/methylseq/releases/tag/2.8.0) - []

### Bug fixes & refactoring

Expand All @@ -9,6 +9,8 @@

### Pipeline Updates

- 🔧 Install `fastq_align_dedup_bismark` subworkflow from nf-core/subworkflows [#453](https://github.com/nf-core/methylseq/pull/457)

## [v2.7.1](https://github.com/nf-core/methylseq/releases/tag/2.7.1) - [2024-10-27]

### Bug fixes & refactoring
Expand Down
27 changes: 16 additions & 11 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"bismark/align": {
"branch": "master",
"git_sha": "f5a291e827949778a3bb976479d6298b3abf99cd",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"bismark/coverage2cytosine": {
"branch": "master",
"git_sha": "79922141f1033bc3b56dabef0f0eff68b2b0fb03",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"bismark/deduplicate": {
"branch": "master",
"git_sha": "79922141f1033bc3b56dabef0f0eff68b2b0fb03",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"bismark/genomepreparation": {
"branch": "master",
Expand All @@ -28,17 +28,17 @@
"bismark/methylationextractor": {
"branch": "master",
"git_sha": "79922141f1033bc3b56dabef0f0eff68b2b0fb03",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"bismark/report": {
"branch": "master",
"git_sha": "79922141f1033bc3b56dabef0f0eff68b2b0fb03",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"bismark/summary": {
"branch": "master",
"git_sha": "dfd89399e3c6e2422c4cdcf0aaa8cf2393dc51c9",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"bwameth/align": {
"branch": "master",
Expand Down Expand Up @@ -113,12 +113,12 @@
"samtools/index": {
"branch": "master",
"git_sha": "b13f07be4c508d6ff6312d354d09f2493243e208",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"samtools/sort": {
"branch": "master",
"git_sha": "b7800db9b069ed505db3f9d91b8c72faea9be17b",
"installed_by": ["modules"]
"installed_by": ["fastq_align_dedup_bismark", "modules"]
},
"samtools/stats": {
"branch": "master",
Expand All @@ -139,19 +139,24 @@
},
"subworkflows": {
"nf-core": {
"fastq_align_dedup_bismark": {
"branch": "master",
"git_sha": "af84433c2e619cf28e026d4140b1b8763ae3690b",
"installed_by": ["subworkflows"]
},
"utils_nextflow_pipeline": {
"branch": "master",
"git_sha": "3aa0aec1d52d492fe241919f0c6100ebf0074082",
"git_sha": "c2b22d85f30a706a3073387f30380704fcae013b",
"installed_by": ["subworkflows"]
},
"utils_nfcore_pipeline": {
"branch": "master",
"git_sha": "1b6b9a3338d011367137808b49b923515080e3ba",
"git_sha": "1b89f75f1aa2021ec3360d0deccd0f6e97240551",
"installed_by": ["subworkflows"]
},
"utils_nfschema_plugin": {
"branch": "master",
"git_sha": "bbd5a41f4535a8defafe6080e00ea74c45f4f96c",
"git_sha": "2fd2cd6d0e7b273747f32e465fdc6bcc3ae0814e",
"installed_by": ["subworkflows"]
}
}
Expand Down
19 changes: 19 additions & 0 deletions modules/nf-core/samtools/index/nextflow.config

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

13 changes: 12 additions & 1 deletion modules/nf-core/samtools/sort/nextflow.config

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

2 changes: 1 addition & 1 deletion nf-test.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ config {

// load the necessary plugins
plugins {
load "nft-bam@0.3.0"
load "nft-bam@0.5.0"
load "nft-utils@0.0.3"
}
}
159 changes: 0 additions & 159 deletions subworkflows/local/bismark/main.nf

This file was deleted.

32 changes: 0 additions & 32 deletions subworkflows/local/bismark/nextflow.config

This file was deleted.

Loading