1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 07:52:03 +00:00

Remove .first() as the module only executes once anyway and we get a ugly warning

This commit is contained in:
James Fellows Yates 2022-12-20 13:59:14 +01:00
parent 41063bc670
commit 577da7e835

View file

@ -31,7 +31,7 @@ workflow INPUT_CHECK {
fastq = fastq ?: [] // channel: [ val(meta), [ reads ] ]
nanopore = nanopore ?: [] // channel: [ val(meta), [ reads ] ]
fasta = fasta ?: [] // channel: [ val(meta), fasta ]
versions = SAMPLESHEET_CHECK.out.versions.first() // channel: [ versions.yml ]
versions = SAMPLESHEET_CHECK.out.versions // channel: [ versions.yml ]
}
// Function to get list of [ meta, [ fastq_1, fastq_2 ] ]