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
f355c461
Commit
f355c461
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing auth file processes
parent
f309fa46
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!76
Develop
,
!70
Dnanexus
Pipeline
#9253
failed with stages
in 2 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rna-seq.nf
+18
-0
18 additions, 0 deletions
rna-seq.nf
with
18 additions
and
0 deletions
rna-seq.nf
+
18
−
0
View file @
f355c461
...
...
@@ -1418,6 +1418,12 @@ process uploadExecutionRun {
hostname > ${repRID}.uploadExecutionRun.log
ulimit -a >> ${repRID}.uploadExecutionRun.log
# link credential file for authentication
echo -e "LOG: linking deriva credentials" >> ${repRID}.uploadExecutionRun.log
mkdir -p ~/.deriva
ln -sf `readlink -e credential.json` ~/.deriva/credential.json
echo -e "LOG: linked" >> ${repRID}.uploadExecutionRun.log
echo LOG: searching for workflow RID - BICF mRNA ${workflow.manifest.version} >> ${repRID}.uploadExecutionRun.log
workflow=\$(curl -s https://${source}/ermrest/catalog/2/entity/RNASeq:Workflow/Name=BICF%20mRNA%20Replicate/Version=${workflow.manifest.version})
workflow=\$(echo \${workflow} | grep -o '\\"RID\\":\\".*\\",\\"RCT')
...
...
@@ -2127,6 +2133,12 @@ process uploadQC {
hostname > ${repRID}.uploadQC.log
ulimit -a >> ${repRID}.uploadQC.log
# link credential file for authentication
echo -e "LOG: linking deriva credentials" >> ${repRID}.uploadQC.log
mkdir -p ~/.deriva
ln -sf `readlink -e credential.json` ~/.deriva/credential.json
echo -e "LOG: linked" >> ${repRID}.uploadQC.log
if [ "${ends}" == "pe" ]
then
end="Paired End"
...
...
@@ -2623,6 +2635,12 @@ process uploadQC_fail {
hostname > ${repRID}.uploadQC.log
ulimit -a >> ${repRID}.uploadQC.log
# link credential file for authentication
echo -e "LOG: linking deriva credentials" >> ${repRID}.uploadQC.log
mkdir -p ~/.deriva
ln -sf `readlink -e credential.json` ~/.deriva/credential.json
echo -e "LOG: linked" >> ${repRID}.uploadQC.log
cookie=\$(cat credential.json | grep -A 1 '\\"${source}\\": {' | grep -o '\\"cookie\\": \\".*\\"')
cookie=\${cookie:11:-1}
...
...
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