Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_count
Manage
Activity
Members
Labels
Plan
Issues
11
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
cellranger_count
Commits
8fc88d18
There was a problem fetching the pipeline stages.
Commit
8fc88d18
authored
6 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Add cli parameter option for output folder to address
#4
parent
6905cdca
2 merge requests
!16
Develop
,
!11
Resolve "Create output directory option"
Pipeline
#3156
passed with stage
in 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+6
-4
6 additions, 4 deletions
workflow/main.nf
with
6 additions
and
4 deletions
workflow/main.nf
+
6
−
4
View file @
8fc88d18
...
...
@@ -12,6 +12,7 @@ params.genomeLocation = params.genome ? params.genomes[ params.genome ].loc ?: f
params.expectCells = 10000
params.forceCells = 0
params.version = '3.0.2'
params.outDir = "$baseDir/output"
// Define regular variables
designLocation = Channel
...
...
@@ -28,10 +29,11 @@ refLocation = Channel
expectCells = params.expectCells
forceCells = params.forceCells
version = params.version
outDir = params.outDir
process checkDesignFile {
publishDir "$
baseDir/output
", mode: 'copy'
publishDir "$
outDir/${task.process}
", mode: 'copy'
input:
...
...
@@ -78,7 +80,7 @@ forceCells302 = forceCells
process count211 {
tag "count211-$sample"
publishDir "$
baseDir/output
", mode: 'copy'
publishDir "$
outDir/${task.process}
", mode: 'copy'
input:
...
...
@@ -109,7 +111,7 @@ process count211 {
process count301 {
tag "count301-$sample"
publishDir "$
baseDir/output
", mode: 'copy'
publishDir "$
outDir/${task.process}
", mode: 'copy'
input:
...
...
@@ -140,7 +142,7 @@ process count301 {
process count302 {
tag "count302-$sample"
publishDir "$
baseDir/output
", mode: 'copy'
publishDir "$
outDir/${task.process}
", 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