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

Add trackStart process

parent f5d459f2
2 merge requests!70Develop,!68Track.pipeline
Pipeline #6710 passed with stages
in 9 minutes and 10 seconds
process {
executor = 'local'
}
singularity {
enabled = true
cacheDir = '/project/BICF/BICF_Core/shared/gudmap/singularity_cache/'
}
env {
http_proxy = 'http://proxy.swmed.edu:3128'
https_proxy = 'http://proxy.swmed.edu:3128'
all_proxy = 'http://proxy.swmed.edu:3128'
}
\ No newline at end of file
......@@ -77,6 +77,23 @@ outDir = params.outDir
multiqcConf = "${baseDir}/conf/multiqc_config.yaml"
references = "${baseDir}/../docs/references.md"
/*
* trackStart: track start of pipeline
*/
process trackStart {
script:
"""
hostname
ulimit -a
export https_proxy=\${http_proxy}
aws dynamodb put-item \
--table-name pipeline.tracking \
--item \
'{"sessionId": {"S": "${workflow.sessionId}"}, "pipeline": {"S": "cellranger_count"}, "projectDir": {"S": "${workflow.projectDir}"}, "start": {"S": "${workflow.start}"}, "astrocyte": {"BOOL": ${params.astrocyte}}}'
"""
}
/*
* checkDesignFile: check design file for errors
*/
......
......@@ -14,6 +14,9 @@ profiles {
}
process {
withName:trackStart {
container = 'bicf/awscli:1.1'
}
withName:checkDesignFile {
container = 'bicf/python3:2.0.0'
}
......
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