From b139d5f63c04e82cb4ff67be0595e270c4ea6ec1 Mon Sep 17 00:00:00 2001 From: Claudia Mengoni <43252093+Cengoni@users.noreply.github.com> Date: Mon, 14 Oct 2024 15:25:58 +0200 Subject: [PATCH] make unclassified label consistent across -t modes --- metaphlan/metaphlan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metaphlan/metaphlan.py b/metaphlan/metaphlan.py index da354d6..787b551 100755 --- a/metaphlan/metaphlan.py +++ b/metaphlan/metaphlan.py @@ -1646,9 +1646,9 @@ def main(): "relative_abundance", "coverage", "estimated_number_of_reads_from_the_clade" ]) +"\n" ) - outf.write( "unclassified\t-1\t100.0\t0\t0\n" ) + outf.write( "UNCLASSIFIED\t-1\t100.0\t0\t0\n" ) else: - outf.write( "unclassified\t100.0\n" ) + outf.write( "UNCLASSIFIED\t100.0\n" ) maybe_generate_biom_file(tree, pars, outpred) elif pars['t'] == 'clade_profiles':