1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 05:42:04 +00:00

Add KU to the test profiles and add id to KU processes

This commit is contained in:
James Fellows Yates 2022-11-29 14:19:01 +01:00
parent af8ce2cbfd
commit d7fbe55849
6 changed files with 6 additions and 1 deletions

View file

@ -39,6 +39,7 @@ params {
run_metaphlan3 = true
run_centrifuge = true
run_diamond = true
run_krakenuniq = true
run_motus = false
run_krona = true
krona_taxonomy_directory = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/sarscov2/metagenome/krona_taxonomy.tab'

View file

@ -38,6 +38,7 @@ params {
run_metaphlan3 = false
run_centrifuge = false
run_diamond = false
run_krakenuniq = false
run_motus = true
run_profile_standardisation = true
}

View file

@ -38,6 +38,7 @@ params {
run_metaphlan3 = true
run_centrifuge = true
run_diamond = true
run_krakenuniq = true
run_motus = false
run_krona = true
}

View file

@ -39,6 +39,7 @@ params {
run_metaphlan3 = false
run_centrifuge = false
run_diamond = false
run_krakenuniq = false
run_motus = false
}

View file

@ -38,6 +38,7 @@ params {
run_metaphlan3 = false
run_centrifuge = false
run_diamond = false
run_krakenuniq = false
run_motus = false
}

View file

@ -271,7 +271,7 @@ workflow PROFILING {
ch_input_for_krakenuniq = ch_input_for_profiling.krakenuniq
.map {
meta, reads, db_meta, db ->
[[single_end: meta.single_end], reads, db_meta, db]
[[id: db_meta.db_name, single_end: meta.single_end], reads, db_meta, db]
}
.groupTuple(by: [0,2,3])
.dump(tag: "krakenuniq_premultimap")