mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-11 01:03:09 +00:00
Fix metadata removal
This commit is contained in:
parent
74c496f6af
commit
4d726a87e9
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ workflow TAXPROFILER {
|
||||||
.map {
|
.map {
|
||||||
meta, reads ->
|
meta, reads ->
|
||||||
def meta_new = meta.clone()
|
def meta_new = meta.clone()
|
||||||
meta_new['run_accession'].remove()
|
meta_new.remove('run_accession')
|
||||||
[ meta_new, reads ]
|
[ meta_new, reads ]
|
||||||
}
|
}
|
||||||
.groupTuple()
|
.groupTuple()
|
||||||
|
|
Loading…
Reference in a new issue