Skip to content
Snippets Groups Projects
Commit 89f02a93 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Merge branch '8-cellranger3.0.2' into 'develop'

Resolve "Add cellranger 3.0.2 as option"

Closes #8

See merge request !5
parents 0ecff9bd 517ccbe9
3 merge requests!16Develop,!6Fix cellranger version variable type,!5Resolve "Add cellranger 3.0.2 as option"
Pipeline #3137 passed with stage
in 16 seconds
......@@ -126,11 +126,11 @@ workflow_parameters:
- id: version
type: select
default: 3.0.2
default: '3.0.2'
choices:
- [ 3.0.2, '3.0.2']
- [ 3.0.1, '3.0.1']
- [ 2.1.1, '2.1.1']
- [ '3.0.2', '3.0.2']
- [ '3.0.1', '3.0.1']
- [ '2.1.1', '2.1.1']
required: true
description: |
10x cellranger version.
......
......@@ -9,7 +9,7 @@ params.designFile = "$baseDir/../test_data/design.csv"
params.genome = '/project/apps_database/cellranger/refdata-cellranger-GRCh38-1.2.0'
params.expectCells = 10000
params.forceCells = 0
params.version = 3.0.2
params.version = '3.0.2'
// Define regular variables
designLocation = Channel
......@@ -90,7 +90,7 @@ process count211 {
file("**/outs/**") into outPaths211
when:
version == 211
version == '2.1.1'
script:
if (forceCells211 == 0){
......@@ -121,7 +121,7 @@ process count301 {
file("**/outs/**") into outPaths301
when:
version == 301
version == '3.0.1'
script:
if (forceCells301 == 0){
......@@ -152,7 +152,7 @@ process count302 {
file("**/outs/**") into outPaths302
when:
version == 302
version == '3.0.2'
script:
if (forceCells302 == 0){
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment