Hello,
I want to convert te biom to tsv and output the confidence info and I try:
biom add-metadata -i ./feature-table.biom -o table-with-taxonomy.biom \
--observation-metadata-fp biom-taxonomy.tsv --sc-separated taxonomy,confidence
biom convert -i table-with-taxonomy.biom -o table-with-taxonomy.tsv --to-tsv --header-key taxonomy,confidence
But it did not work.
And only outputing the taxonomy did work well:
biom add-metadata -i ./feature-table.biom -o table-with-taxonomy.biom \
--observation-metadata-fp biom-taxonomy.tsv --sc-separated taxonomy
biom convert -i table-with-taxonomy.biom -o table-with-taxonomy.tsv --to-tsv --header-key taxonomy
Thanks!