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

Proof of concept: Diff override for bismark alignment #2

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 5 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"repos": {
"nf-core/modules": {
"bismark/align": {
"git_sha": "3aacd46da2b221ed47aaa05c413a828538d2c2ae"
"git_sha": "3aacd46da2b221ed47aaa05c413a828538d2c2ae",
"patches": [
"modules/nf-core/modules/bismark/align/index_per_sample.diff"
]
},
"bismark/deduplicate": {
"git_sha": "3aacd46da2b221ed47aaa05c413a828538d2c2ae"
Expand Down Expand Up @@ -68,4 +71,4 @@
}
}
}
}
}
14 changes: 14 additions & 0 deletions modules/nf-core/modules/bismark/align/index_per_sample.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
diff --git a/modules/nf-core/modules/bismark/align/main.nf b/modules/nf-core/modules/bismark/align/main.nf
index aa4879b..c03a6f9 100644
--- a/modules/nf-core/modules/bismark/align/main.nf
+++ b/modules/nf-core/modules/bismark/align/main.nf
@@ -19,8 +19,7 @@ process BISMARK_ALIGN {
}

input:
- tuple val(meta), path(reads)
- path index
+ tuple val(meta), path(reads), path(index)

output:
tuple val(meta), path("*bam") , emit: bam
3 changes: 1 addition & 2 deletions modules/nf-core/modules/bismark/align/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ process BISMARK_ALIGN {
}

input:
tuple val(meta), path(reads)
path index
tuple val(meta), path(reads), path(index)

output:
tuple val(meta), path("*bam") , emit: bam
Expand Down