We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ps <- readRDS("shared/example_results/05-dwca/phyloseq_object.rds") psadd::plot_krona(ps, output = "test", variable = "eventID")
Error in `[.data.frame`(df, , c("Abundance", variable, rank_names(physeq))): undefined columns selected Traceback: 1. df[, c("Abundance", variable, rank_names(physeq))] 2. `[.data.frame`(df, , c("Abundance", variable, rank_names(physeq))) 3. stop("undefined columns selected")
The problem goes away when domain is removed from the tax table:
domain
library(dplyr) tax_table(ps) <- tax_table(ps) |> as.data.frame() |> select(phylum, class, order, family, genus, species) |> as.matrix(rownames.force = T)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem goes away when
domain
is removed from the tax table:The text was updated successfully, but these errors were encountered: