mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-11 01:13:09 +00:00
Replace set with explicity assignment
This commit is contained in:
parent
631c115e10
commit
07eed435c6
1 changed files with 1 additions and 2 deletions
|
@ -19,12 +19,11 @@ workflow DB_CHECK {
|
||||||
.map { create_db_channels(it) }
|
.map { create_db_channels(it) }
|
||||||
.dump(tag: "db_channel_prepped")
|
.dump(tag: "db_channel_prepped")
|
||||||
|
|
||||||
parsed_samplesheet
|
ch_dbs_for_untar = parsed_samplesheet
|
||||||
.branch {
|
.branch {
|
||||||
untar: it[1].toString().endsWith(".tar.gz")
|
untar: it[1].toString().endsWith(".tar.gz")
|
||||||
skip: true
|
skip: true
|
||||||
}
|
}
|
||||||
.set{ ch_dbs_for_untar }
|
|
||||||
|
|
||||||
// TODO Filter to only run UNTAR on DBs of tools actually using?
|
// TODO Filter to only run UNTAR on DBs of tools actually using?
|
||||||
// TODO make optional whether to save
|
// TODO make optional whether to save
|
||||||
|
|
Loading…
Reference in a new issue