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

Fix metadata removal

This commit is contained in:
James Fellows Yates 2022-04-08 12:01:07 +02:00
parent 74c496f6af
commit 4d726a87e9

View file

@ -135,7 +135,7 @@ workflow TAXPROFILER {
.map {
meta, reads ->
def meta_new = meta.clone()
meta_new['run_accession'].remove()
meta_new.remove('run_accession')
[ meta_new, reads ]
}
.groupTuple()