Skip to content
Snippets Groups Projects
Commit 3178fa73 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix bwa Index name.

parent f0c48d34
1 merge request!28Resolve "Astrocyte fixes"
Pipeline #7297 passed with stages
in 7 hours, 4 minutes, and 28 seconds
...@@ -53,9 +53,9 @@ if (params.astrocyte) { ...@@ -53,9 +53,9 @@ if (params.astrocyte) {
} }
// Check inputs // Check inputs
if(params.bwa) { if(params.bwaIndex) {
bwa= Channel bwaIndex = Channel
.fromPath(params.bwa) .fromPath(params.bwaIndex)
.ifEmpty { exit 1, "BWA index not found: ${params.bwaIndex}" } .ifEmpty { exit 1, "BWA index not found: ${params.bwaIndex}" }
} else { } else {
exit 1, "No reference genome specified." exit 1, "No reference genome specified."
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment