Skip to content
Snippets Groups Projects
Commit c54a846c authored by Jonathan Gesell's avatar Jonathan Gesell
Browse files

Added container functionality

parent ed35a88e
3 merge requests!37v0.0.1,!4Develop,!2Resolve "process_getData"
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
process { process {
executor = 'slurm' executor = 'slurm'
queue='super' queue = 'super'
// Process specific configuration // Process specific configuration
withLabel:getData { withName:getData {
executor = 'super' container = 'docker://bicf/bdbag:1.0'
} }
} }
...@@ -28,4 +28,19 @@ report { ...@@ -28,4 +28,19 @@ report {
tower { tower {
accessToken = '3ade8f325d4855434b49aa387421a44c63e3360f' accessToken = '3ade8f325d4855434b49aa387421a44c63e3360f'
enabled = true enabled = true
} }
\ No newline at end of file
singularity {
enabled = true
cacheDir = '/project/BICF/BICF_Core/s181706/github/gudmap/rna-seq/workflow/singularity'
}
env {
http_proxy = "http://proxy.swmed.edu:3128"
https_proxy = "http://proxy.swmed.edu:3128"
HTTP_PROXY = "http://proxy.swmed.edu:3128"
HTTPS_PROXY = "http://proxy.swmed.edu:3128"
all_proxy = "http://proxy.swmed.edu:3128"
ALL_PROXY = "http://proxy.swmed.edu:3128"
}
...@@ -19,7 +19,7 @@ outDir = params.outDir ...@@ -19,7 +19,7 @@ outDir = params.outDir
*/ */
process getData { process getData {
publishDir "${outDir}/temp/getData", mode: "symlink" publishDir "${outDir}/temp/getData", mode: "symlink"
conda "${baseDir}/conf/conda.env.bdbag.yml" // conda "${baseDir}/conf/conda.env.bdbag.yml"
input: input:
file bdbag file bdbag
...@@ -46,4 +46,4 @@ outDir = params.outDir ...@@ -46,4 +46,4 @@ outDir = params.outDir
sh ${baseDir}/scripts/renameFastq.sh \${study} sh ${baseDir}/scripts/renameFastq.sh \${study}
echo LOG: fastq.gz files renamed to replicate RID echo LOG: fastq.gz files renamed to replicate RID
""" """
} }
\ No newline at end of file
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