Closed TKMarkCheng closed 3 months ago
Adds a taxa_max function to get the max abundance of all taxa in matrix.
taxa_max
Thanks @TKMarkCheng for the contribution!
The latest version of rbiom replaces taxa_max(biom) with taxa_apply(biom, max, sort = 'desc') as a more flexible generic.
taxa_max(biom)
taxa_apply(biom, max, sort = 'desc')
Adds a
taxa_max
function to get the max abundance of all taxa in matrix.