-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
Two question about import qiime2 files #97
Comments
Another tiny question occured when i run
Is there any way to bypass |
Inspire by this post https://github.com/YuLab-SMU/MicrobiotaProcess/issues/43 The following method can solve the sorting error in multiple groups:
|
Hello! Very nice work!
I'm looking for help with running qiime2 files as import files (contain tree file) :
2.8 Performing differential analysis among multiple groups
How can i delete nodes which can't identify in the level which i selected?
mpse2_4groups %>% mp_rrarefy() %>% mp_diff_analysis(.abundance=RareAbundance, .group=Group) %>% mp_extract_tree(tip.level=Fanmily) -> taxa.tree
PS.
I have try code like this
taxa.tree %>% dplyr::filter(!grepl("^g__un_o|^g__un_f",label))
, but it doesn't workThe code runs smoothly until chapter 2.7 "Significant differential clades for the diagnosis of some related diseases"
mpse3 %>% mp_balance_clade( .abundance = Abundance, force = TRUE, relative = FALSE, pseudonum = 1, balance_fun='geometric.mean' ) -> mpse.balance.node
R Console tells me that I should use
ape
to load tree file which made me can't run any further.So, is there any way to solve this problem?
Perhaps I should run
mp_extract_tree()
, but i really run out of idea, help me please.The text was updated successfully, but these errors were encountered: