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

fix: restore setting id on FASTQ meta

This commit is contained in:
Moritz E. Beber 2023-03-11 11:34:47 +01:00
parent 7104b12e3b
commit bb7323e25d

View file

@ -38,6 +38,7 @@ workflow INPUT_CHECK {
def create_fastq_channel(LinkedHashMap row) { def create_fastq_channel(LinkedHashMap row) {
// create meta map // create meta map
def meta = row.subMap(['sample', 'run_accession', 'instrument_platform']) def meta = row.subMap(['sample', 'run_accession', 'instrument_platform'])
meta.id = meta.sample
meta.single_end = row.single_end.toBoolean() meta.single_end = row.single_end.toBoolean()
meta.is_fasta = false meta.is_fasta = false