diff --git a/workflow/main.nf b/workflow/main.nf
index c9146f64731f6399463e397cca89c688a84a606d..de83520bbb252b7ea5a7b03a35bcabe010368068 100755
--- a/workflow/main.nf
+++ b/workflow/main.nf
@@ -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