Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rnaseq
Manage
Activity
Members
Labels
Plan
Issues
8
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
BICF
Astrocyte
rnaseq
Commits
7ff15f77
Commit
7ff15f77
authored
5 years ago
by
Jeremy Mathews
Browse files
Options
Downloads
Patches
Plain Diff
add in error strategy
parent
7c2ae90f
1 merge request
!8
add in error strategy
Pipeline
#4803
passed with stage
in 1 hour, 18 minutes, and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+7
-0
7 additions, 0 deletions
workflow/main.nf
with
7 additions
and
0 deletions
workflow/main.nf
+
7
−
0
View file @
7ff15f77
...
...
@@ -74,6 +74,7 @@ if( ! read ) { error "Didn't match any input files with entries in the design fi
// Trim raw reads using trimgalore
process trim {
errorStrategy 'ignore'
input:
set pair_id, file(read1), file(read2) from read
...
...
@@ -94,6 +95,7 @@ process trim {
// Alignment stats with samtools
process starfusion {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
input:
...
...
@@ -112,6 +114,7 @@ process starfusion {
}
process align {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
input:
...
...
@@ -129,6 +132,7 @@ process align {
}
process alignqc {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
input:
...
...
@@ -184,6 +188,7 @@ process markdups {
// Assemble transcripts with stringtie
process geneabund {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
input:
...
...
@@ -202,6 +207,7 @@ process geneabund {
}
process statanal {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
input:
...
...
@@ -226,6 +232,7 @@ process statanal {
}
process gatkbam {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
input:
...
...
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