mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:53:10 +00:00
Try Moritz's trick, assuming validate_db_rows already checks for tool name validity
This commit is contained in:
parent
4df3409f4a
commit
6eafcc6499
1 changed files with 3 additions and 11 deletions
|
@ -39,18 +39,10 @@ workflow DB_CHECK {
|
|||
skip: true
|
||||
}
|
||||
|
||||
//Filter the channel to run untar on DBs of tools actually using
|
||||
// Filter the channel to untar only those databases for tools that are selected to be run by the user.
|
||||
ch_input_untar = ch_dbs_for_untar.untar.dump()
|
||||
.filter {
|
||||
params.run_bracken && it[0]['tool'] == 'bracken' ||
|
||||
params.run_centrifuge && it[0]['tool'] == 'centrifuge' ||
|
||||
params.run_diamond && it[0]['tool'] == 'diamond' ||
|
||||
params.run_kaiju && it[0]['tool'] == 'kaiju' ||
|
||||
params.run_kraken2 && it[0]['tool'] == 'kraken2' ||
|
||||
params.run_krakenuniq && it [0]['tool'] == 'krakenuniq' ||
|
||||
params.run_malt && it[0]['tool'] == 'malt' ||
|
||||
params.run_metaphlan3 && it[0]['tool'] == 'metaphlan3' ||
|
||||
params.run_motus && it[0]['tool'] == 'motus'
|
||||
.filter {
|
||||
params["run_${it[0]['tool']}"]
|
||||
}
|
||||
UNTAR (ch_input_untar)
|
||||
ch_versions = ch_versions.mix(UNTAR.out.versions.first())
|
||||
|
|
Loading…
Reference in a new issue