Skip to content
Snippets Groups Projects

Resolve "Test for kitVersion=3 and version=2.1.1 and exit if true"

Merged Jeremy Mathews requested to merge 29-VersionCompatibility into develop
Compare and
1 file
+ 5
1
Preferences
File browser
Compare changes
+ 5
1
@@ -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(32)
}
// 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}"