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
Hi,
first of all thank you for putting all these microbiome functions into a digestible format - it's great!
However, I am a little confused by the source code below in the run_aldex function:
cds <- gsub("rab.win.", "", names(ef)[2:3]) ef <- ef$effect enrich_group <- ifelse(ef > 0, cds[1], cds[2])
should it not be:
enrich_group <- ifelse(ef > 0, cds[2], cds[1]) ?
Maybe I am misunderstanding something but the way it is currently written it contradicts my abundance plots and my ancombc2 results.
Any input would be much appreciated!
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
first of all thank you for putting all these microbiome functions into a digestible format - it's great!
However, I am a little confused by the source code below in the run_aldex function:
enrich group
should it not be:
enrich_group <- ifelse(ef > 0, cds[2], cds[1]) ?
Maybe I am misunderstanding something but the way it is currently written it contradicts my abundance plots and my ancombc2 results.
Any input would be much appreciated!
Thank you!
The text was updated successfully, but these errors were encountered: