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

Add extra params for tracking

parent 2d0a3ebc
Branches
Tags
3 merge requests!37v0.0.1,!31Develop,!30Add extra params for tracking
Pipeline #6766 passed with stages
in 10 minutes and 13 seconds
......@@ -48,6 +48,7 @@ script_inferMeta = Channel.fromPath("${baseDir}/scripts/inferMeta.sh")
* trackStart: track start of pipeline
*/
params.ci = false
params.dev = false
process trackStart {
script:
"""
......@@ -59,10 +60,12 @@ process trackStart {
"sessionId": "${workflow.sessionId}", \
"pipeline": "gudmap.rbk_rnaseq", \
"start": "${workflow.start}", \
"repRID": ${reRID} \
"astrocyte": false, \
"status": "started", \
"nextflowVersion": "${workflow.nextflow.version}",
"ci": ${params.ci}}' \
"nextflowVersion": "${workflow.nextflow.version}", \
"ci": ${params.ci}, \
"dev": ${params.dev}}' \
"https://xku43pcwnf.execute-api.us-east-1.amazonaws.com/ProdDeploy/pipeline-tracking"
"""
}
......
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