1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 04:42: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
.branch {
untar: it[1].toString().endsWith(".tar.gz")
.branch { db_meta, db ->
untar: db.name.endsWith(".tar.gz")
skip: true
}