Skip to content
Snippets Groups Projects
Commit 0f427397 authored by nservant's avatar nservant
Browse files

[LINT] fix

parent c4bbbad9
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "^\\S+\\.fn?a(sta)?(\\.gz)?$",
"pattern": "^\\S+\\.fn?s?a(sta)?(\\.gz)?$",
"description": "Path to FASTA genome file.",
"help_text": "This parameter is *mandatory* if `--genome` is not specified. If you don't have a BWA index available this will be generated for you automatically. Combine with `--save_reference` to save BWA index for future runs.",
"fa_icon": "far fa-file-code"
......
......@@ -13,6 +13,7 @@ workflow INPUT_CHECK {
if (params.split_fastq){
SAMPLESHEET_CHECK ( samplesheet )
.csv
.splitCsv ( header:true, sep:',' )
.map { create_fastq_channels(it) }
.splitFastq( by: params.fastq_chunks_size, pe:true, file: true, compress:true)
......@@ -25,6 +26,7 @@ workflow INPUT_CHECK {
}else{
SAMPLESHEET_CHECK ( samplesheet )
.csv
.splitCsv ( header:true, sep:',' )
.map { create_fastq_channels(it) }
.map { it -> [it[0], [it[1], it[2]]]}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment