Skip to content
Snippets Groups Projects
Commit 45593829 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Add param for ref source

parent 60452a9c
Branches
Tags
2 merge requests!58Develop,!45Resolve "Move references to GUDMAP/RBK"
Pipeline #8092 passed with stage
in 1 minute and 54 seconds
params {
refSource = "aws"
}
workDir = 's3://gudmap-rbk.output/work'
aws.client.storageEncryption = 'AES256'
aws {
......
params {
refSource = "biohpc
}
process {
executor = 'slurm'
queue = 'super'
......
......@@ -20,6 +20,7 @@ params.refERCCVersion = "92"
params.outDir = "${baseDir}/../output"
// Define override input variable
params.refSource = "biohpc"
params.inputBagForce = ""
params.fastqsForce = ""
params.speciesForce = ""
......@@ -50,8 +51,13 @@ if (params.source == "dev") {
} else if (params.source == "production") {
source = "www.gudmap.org"
}
referenceBase = "s3://bicf-references"
//referenceBase = "/project/BICF/BICF_Core/shared/gudmap/references"
if (params.refSource == "biohpc") {
referenceBase = "/project/BICF/BICF_Core/shared/gudmap/references"
} else if (params.refSource == "aws") {
referenceBase = "s3://bicf-references"
} else if (params.refSource == "datahub") {
referenceBase = "dev.gudmap.org"
}
referenceInfer = Channel.fromList(["ERCC","GRCh","GRCm"])
multiqcConfig = Channel.fromPath("${baseDir}/conf/multiqc_config.yaml")
bicfLogo = Channel.fromPath("${baseDir}/../docs/bicf_logo.png")
......
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