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
d9be943e
Commit
d9be943e
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Add missing speciesError to when
parent
84dd8e50
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!76
Develop
,
!71
Seqwho
Pipeline
#9315
passed with stages
in 3 hours, 51 minutes, and 50 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rna-seq.nf
+12
-8
12 additions, 8 deletions
rna-seq.nf
with
12 additions
and
8 deletions
rna-seq.nf
+
12
−
8
View file @
d9be943e
...
...
@@ -981,24 +981,25 @@ speciesErrorSeqwho.into {
speciesErrorSeqwho_uploadQC_fail
}
speciesError.into {
speciesError_checkMetadata
speciesError_uploadExecutionRun
speciesError_trimData
speciesError_getRef
speciesError_downsampleData
speciesError_alignSampleDataERCC
speciesError_alignSampleData
speciesError_inferMetadata
speciesError_checkMetadata
speciesError_alignData
speciesError_dedupData
speciesError_makeBigWig
speciesError_countData
speciesError_fastqc
speciesError_dataQC
speciesError_aggrQC
speciesError_uploadExecutionRun
speciesError_uploadQC
speciesError_uploadQC_fail
speciesError_uploadProcessedFile
speciesError_uploadOutputBag
speciesError_finalizeExecutionRun
speciesError_
failPreExecutionRun_species
speciesError_
uploadQC_fail
}
/*
...
...
@@ -1073,6 +1074,7 @@ process trimData {
val fastqFileError from fastqFileError_trimData
val seqtypeError from seqtypeError_trimData
val speciesErrorSeqwho from speciesErrorSeqwho_trimData
val speciesError from speciesError_trimData
output:
path ("*.fq.gz") into fastqsTrim
...
...
@@ -1080,7 +1082,7 @@ process trimData {
path ("readLength.csv") into readLengthInfer_fl
when:
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false"
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false"
&& speciesError == "false"
script:
"""
...
...
@@ -1136,12 +1138,13 @@ process downsampleData {
val fastqFileError from fastqFileError_downsampleData
val seqtypeError from seqtypeError_downsampleData
val speciesErrorSeqwho from speciesErrorSeqwho_downsampleData
val speciesError from speciesError_downsampleData
output:
path ("sampled.{1,2}.fq") into fastqsSample
when:
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false"
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false" && speciesErrorSeqwho == "false"
&& speciesError == "false"
script:
"""
...
...
@@ -1186,13 +1189,14 @@ process alignSampleDataERCC {
val fastqFileError from fastqFileError_alignSampleDataERCC
val seqtypeError from seqtypeError_alignSampleDataERCC
val speciesErrorSeqwho from speciesErrorSeqwho_alignSampleDataERCC
val speciesError from speciesError_alignSampleDataERCC
output:
path "inferSpike.csv" into inferSpike_fl
path ("ERCC.alignSampleSummary.txt") into alignSampleQC_ERCC
when:
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false"
fastqCountError == "false" && fastqReadError == "false" && fastqFileError == "false" && seqtypeError == "false"
&& speciesError == "false"
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