Get the unique taxa from the combined data.frame.
extract_unique_taxa.Rd
Get the unique taxa from the combined data.frame.
Examples
asv <- system.file("extdata/tsv", "seqtab.tsv", package = "bubbler")
taxa <- system.file("extdata/tsv", "taxa.tsv", package = "bubbler")
rel_abund <- rel_abund_tsv(asv, taxa)
rel_abund_l <- rel_abund %>%
subset_high_low(n = 10)
rel_abund_h <- rel_abund %>%
subset_high_low(n = 50, flip = TRUE)
extract_unique_taxa(rel_abund_l, rel_abund_h)
#> [1] "Actinomycetota" "Bacillota" "Pseudomonadota" "Bacteroidota"
#> [5] "Synergistota"