Skip to content
Snippets Groups Projects
Commit 45cbf237 authored by Jeremy Mathews's avatar Jeremy Mathews
Browse files

New branch 29

parent 14599fcc
Branches
Tags
2 merge requests!53Develop,!52Resolve "Test for kitVersion=3 and version=2.1.1 and exit if true"
......@@ -17,6 +17,11 @@ params.outDir = "${baseDir}/output"
params.multiqcConf = "${baseDir}/conf/multiqc_config.yaml"
params.references = "${baseDir}/../docs/references.md"
if (params.kitVersion == "three" && params.version == '2.1.1') {
print("Cellranger Version 2.1.1 requires kitVersion 2")
System.exit(3)
}
// Assign variables if astrocyte
if (params.astrocyte) {
print("Running under astrocyte")
......@@ -59,7 +64,6 @@ outDir = params.outDir
multiqcConf = params.multiqcConf
references = params.references
process checkDesignFile {
tag "${name}"
......
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