Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RNA-seq
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
GUDMAP_RBK
RNA-seq
Commits
ef4ac234
Commit
ef4ac234
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Change pipeline tracking to curl
parent
53505b86
2 merge requests
!37
v0.0.1
,
!29
Track.pipeline
Pipeline
#6741
passed with stages
in 1 hour, 13 minutes, and 20 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
workflow/conf/biohpc.config
+3
-0
3 additions, 0 deletions
workflow/conf/biohpc.config
workflow/nextflow.config
+0
-3
0 additions, 3 deletions
workflow/nextflow.config
workflow/rna-seq.nf
+10
-9
10 additions, 9 deletions
workflow/rna-seq.nf
with
13 additions
and
12 deletions
workflow/conf/biohpc.config
+
3
−
0
View file @
ef4ac234
...
...
@@ -3,6 +3,9 @@ process {
queue
=
'super'
clusterOptions
=
'--hold'
withLabel
:
trackStart
{
executor
=
'local'
}
withName
:
getBag
{
executor
=
'local'
}
...
...
This diff is collapsed.
Click to expand it.
workflow/nextflow.config
+
0
−
3
View file @
ef4ac234
...
...
@@ -11,9 +11,6 @@ profiles {
}
process
{
withName
:
trackStart
{
container
=
'bicf/awscli:1.1'
}
withName
:
getBag
{
container
=
'bicf/gudmaprbkfilexfer:1.3'
}
...
...
This diff is collapsed.
Click to expand it.
workflow/rna-seq.nf
+
10
−
9
View file @
ef4ac234
...
...
@@ -47,6 +47,7 @@ script_inferMeta = Channel.fromPath("${baseDir}/scripts/inferMeta.sh")
/*
* trackStart: track start of pipeline
*/
params.ci = false
process trackStart {
script:
"""
...
...
@@ -54,15 +55,15 @@ process trackStart {
ulimit -a
export https_proxy=\${http_proxy}
aws dynamodb put-item
\
--table-name pipeline.tracking
\
--item '{
\
"s
essionId": {"S
": "${workflow.s
essionId
}"
}
, \
"
pipeline": {"S": "GUDMAP/RBK RNA-Seq"}
, \
"sta
rt": {"S": "${workflow.
start
}"}
, \
"
astrocyte": {"BOOL": false}, \
"
status": {"S": "started"},
\
"nextflowVersion": {"S": "${workflow.nextflow.version}"}}'
curl -H 'Content-Type: application/json' -X PUT -d '{
\
"sessionId": "${workflow.sessionId}",
\
"pipeline": "gudmap.rbk_rnaseq",
\
"s
tart
": "${workflow.s
tart
}", \
"
astrocyte": false
, \
"sta
tus": "
start
ed"
, \
"
nextflowVersion": "${workflow.nextflow.version}",
"
ci": ${params.ci}}'
\
"https://xku43pcwnf.execute-api.us-east-1.amazonaws.com/ProdDeploy/pipeline-tracking"
"""
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment