1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-22 02:56:04 +00:00

style: use named parameters for closure

This commit is contained in:
Moritz E. Beber 2023-03-07 12:35:47 +01:00
parent c2ad421051
commit aa2410a871

View file

@ -34,8 +34,8 @@ workflow DB_CHECK {
} }
ch_dbs_for_untar = parsed_samplesheet ch_dbs_for_untar = parsed_samplesheet
.branch { .branch { db_meta, db ->
untar: it[1].toString().endsWith(".tar.gz") untar: db.name.endsWith(".tar.gz")
skip: true skip: true
} }