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
6269b5af
Commit
6269b5af
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Fix species error variable
parent
2c368957
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!58
Develop
,
!56
Resolve "Detect error in inferMetadata for tracking"
Pipeline
#8848
failed with stages
in 3 minutes and 33 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
workflow/conf/Replicate_For_Input_Bag.json
+1
-1
1 addition, 1 deletion
workflow/conf/Replicate_For_Input_Bag.json
workflow/rna-seq.nf
+15
-15
15 additions, 15 deletions
workflow/rna-seq.nf
workflow/scripts/bdbag_fetch.sh
+16
-1
16 additions, 1 deletion
workflow/scripts/bdbag_fetch.sh
with
32 additions
and
17 deletions
workflow/conf/Replicate_For_Input_Bag.json
+
1
−
1
View file @
6269b5af
...
...
@@ -89,7 +89,7 @@
"processor"
:
"fetch"
,
"processor_params"
:
{
"output_path"
:
"assets/Study/{Study_RID}/Experiment/{Experiment_RID}/Replicate/{Replicate_RID}"
,
"query_path"
:
"/attribute/M:=RNASeq:Replicate/RID={rid}/(RID)=(RNASeq:File:Replicate_RID)/url:=URI,length:=File_size,filename:=File_Name,md5:=MD5,Study_RID,Experiment_RID,Replicate_RID?limit=none"
"query_path"
:
"/attribute/M:=RNASeq:Replicate/RID={rid}/(RID)=(RNASeq:File:Replicate_RID)/
File_Type=FastQ/
url:=URI,length:=File_size,filename:=File_Name,md5:=MD5,Study_RID,Experiment_RID,Replicate_RID?limit=none"
}
}
]
...
...
This diff is collapsed.
Click to expand it.
workflow/rna-seq.nf
+
15
−
15
View file @
6269b5af
...
...
@@ -945,21 +945,21 @@ speciesError_fl.splitCsv(sep: ",", header: false).separate(
)
// Replicate errors for multiple process inputs
fastqCount
Error.into {
fastqCount
Error_checkMetadata
fastqCount
Error_uploadExecutionRun
fastqCount
Error_getRef
fastqCount
Error_alignData
fastqCount
Error_dedupData
fastqCount
Error_makeBigWig
fastqCount
Error_countData
fastqCount
Error_fastqc
fastqCount
Error_dataQC
fastqCount
Error_aggrQC
fastqCount
Error_uploadQC
fastqCount
Error_uploadProcessedFile
fastqCount
Error_uploadOutputBag
fastqCount
Error_failPreExecutionRun
species
Error.into {
species
Error_checkMetadata
species
Error_uploadExecutionRun
species
Error_getRef
species
Error_alignData
species
Error_dedupData
species
Error_makeBigWig
species
Error_countData
species
Error_fastqc
species
Error_dataQC
species
Error_aggrQC
species
Error_uploadQC
species
Error_uploadProcessedFile
species
Error_uploadOutputBag
species
Error_failPreExecutionRun
}
/*
...
...
This diff is collapsed.
Click to expand it.
workflow/scripts/bdbag_fetch.sh
+
16
−
1
View file @
6269b5af
...
...
@@ -10,5 +10,20 @@ then
done
elif
[
"
${
3
}
"
==
"TEST"
]
then
bdbag
--resolve-fetch
all
--fetch-filter
filename
\$
*
.txt
${
1
}
--debug
bdbag
--materialize
${
1
}
--debug
validateError
=
true
bdbag
--validate
full
${
1
}
&&
validateError
=
false
if
validateError
then
n
=
0
until
[
"
${
n
}
"
-ge
"3"
]
do
bdbag
--resolve-fetch
missing
--validate
full
${
1
}
--debug
&&
validateError
=
false
&&
break
n
=
$((
n+1
))
sleep
15
done
fi
if
validateError
then
exit
1
fi
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