diff --git a/workflow/main.nf b/workflow/main.nf index 7e9e1e0c13d1f4256e4db8bea662237721cc85a2..f356a770e5f99f6ff41f1e7cc3591cd1c3355eee 100755 --- a/workflow/main.nf +++ b/workflow/main.nf @@ -8,7 +8,6 @@ main.nf * */ - // Define Input variables params.name = "run" params.bcl = "${baseDir}/../test_data/*.tar.gz" @@ -17,7 +16,6 @@ params.outDir = "${baseDir}/output" params.multiqcConf = "${baseDir}/conf/multiqc_config.yaml" params.references = "${baseDir}/../docs/references.md" - // Define List of Files tarList = Channel .fromPath( params.bcl ) @@ -25,7 +23,6 @@ bclCount = Channel .fromPath( params.bcl ) .count() - // Define regular variables name = params.name designLocation = Channel @@ -204,4 +201,4 @@ process multiqc { multiqc -c ${multiqcConf} . """ -} +} \ No newline at end of file