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
This commit is part of merge request !28. Comments created here will be created in the context of that merge request.
......@@ -53,9 +53,9 @@ if (params.astrocyte) {
}
// Check inputs
if(params.bwa) {
bwa= Channel
.fromPath(params.bwa)
if(params.bwaIndex) {
bwaIndex = Channel
.fromPath(params.bwaIndex)
.ifEmpty { exit 1, "BWA index not found: ${params.bwaIndex}" }
} else {
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