Skip to content
Snippets Groups Projects

Develop

Merged Gervaise Henry requested to merge develop into 10-count.features
Viewing commit 4a6e9492
Show latest version
1 file
+ 2
1
Preferences
File browser
Compare changes
+ 2
1
@@ -9,6 +9,7 @@ params.designFile = "$baseDir/../test_data/design.csv"
params.genome = 'GRCh38-3.0.0'
params.genomes = []
params.genomeLocation = params.genome ? params.genomes[ params.genome ].loc ?: false : false
params.genomeLocationFull = params.genomeLocation+params.genome
params.expectCells = 10000
params.forceCells = 0
params.kitVersion = 'three'
@@ -27,7 +28,7 @@ fastqList = Channel
.map { file -> [ file.getFileName().toString(), file.toString() ].join("\t") }
.collectFile(name: 'fileList.tsv', newLine: true)
refLocation = Channel
.fromPath(params.genomeLocation+params.genome)
.fromPath(params.genomeLocationFull)
.ifEmpty { exit 1, "referene not found: ${params.genome}" }
expectCells = params.expectCells
forceCells = params.forceCells