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
5a8a4eb0
Commit
5a8a4eb0
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Fix when's
parent
0b1a56ba
2 merge requests
!76
Develop
,
!71
Seqwho
Pipeline
#9461
passed with stages
in 4 hours, 20 minutes, and 46 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rna-seq.nf
+15
-12
15 additions, 12 deletions
rna-seq.nf
with
15 additions
and
12 deletions
rna-seq.nf
+
15
−
12
View file @
5a8a4eb0
...
...
@@ -303,7 +303,7 @@ if (fastqsForce != "") {
}
Channel
.fromPath(fastqsForce)
.count().
into
{
.count().
set
{
fastqCount
}
} else {
...
...
@@ -313,7 +313,7 @@ if (fastqsForce != "") {
fastqs_parseMetadata
fastqs_fastqc
}
fastqCountTemp.
into
{
fastqCountTemp.
set
{
fastqCount
}
}
...
...
@@ -1697,12 +1697,9 @@ checkMetadata_fl.splitCsv(sep: ",", header: false).separate(
pipelineError_species
)
pipelineError.into {
pipelineError_getRef
pipelineError_alignData
pipelineError_dedupData
pipelineError_makeBigWig
pipelineError_countData
pipelineError_fastqc
pipelineError_dataQC
pipelineError_aggrQC
pipelineError_uploadQC
...
...
@@ -2283,7 +2280,8 @@ process uploadExecutionRun {
path ("executionRunRID.csv") into executionRunRID_fl
when:
upload && fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
upload
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
script:
"""
...
...
@@ -2393,7 +2391,8 @@ process uploadQC {
path ("qcRID.csv") into qcRID_fl
when:
upload && fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
upload
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
script:
"""
...
...
@@ -2468,7 +2467,8 @@ process uploadProcessedFile {
path ("${repRID}_Output_Bag.zip") into outputBag
when:
upload && fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
upload
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
script:
"""
...
...
@@ -2566,7 +2566,8 @@ process uploadOutputBag {
path ("outputBagRID.csv") into outputBagRID_fl
when:
upload && fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
upload
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false" && speciesError == "false" && pipelineError == "false"
script:
"""
...
...
@@ -2702,7 +2703,8 @@ process failPreExecutionRun {
path ("executionRunRID.csv") into executionRunRID_preFail_fl
when:
upload && fastqCountError == "true" || fastqReadError == "true" || fastqFileError == "true" || seqtypeError == "true" || speciesError == "true"
upload
fastqCountError == "true" || fastqReadError == "true" || fastqFileError == "true" || seqtypeError == "true" || speciesError == "true"
script:
"""
...
...
@@ -2817,7 +2819,8 @@ process failExecutionRun {
val pipelineError_species
when:
upload && pipelineError == 'true'
upload
pipelineError == "true"
script:
"""
...
...
@@ -2899,7 +2902,7 @@ process uploadQC_fail {
when:
upload
fastqCountError == "true" || fastqReadError == "true" || fastqFileError == "true" || seqtypeError == "true" || speciesErrorSeqwho == "true" || speciesError == "true" || pipelineError ==
'
true
'
fastqCountError == "true" || fastqReadError == "true" || fastqFileError == "true" || seqtypeError == "true" || speciesErrorSeqwho == "true" || speciesError == "true" || pipelineError ==
"
true
"
script:
"""
...
...
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