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

Add extra params for tracking

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