Clustering and regression analysis using q2-gneiss

Clustering : correlation-clustering may make the most sense here. Its a little weird to try to cluster by diet (how do you cluster by discrete categories)?

Regression : I would try to set the formula and groups variables as follows

--p-formula diet

--p-groups timepoint

That should give you the random effects for each individual, while testing for diet changes.

3 Likes

Hi @mortonjt

Thank you for your advice.

I have attached the output of running gneiss lme-regression using formula and groups as you suggested. LME_Milk_Replacer_ID_timepoint.qzv (2.4 MB)

I am having trouble understanding how to interpret this output? There are no R2 values or cross-validation outputs to estimate the model fit? Regarding the "projected prediction" scatterplot, all my samples are clustered into one spot, could you explain what this means? Also, as there are so many balances, the heatmap is not interpretable, is there any solution to this?

Is my next step to identify significant balances from "Coefficient pvalues" csv file and then run 'qiime gneiss balance-taxonomy' on each one to understand how the balances are changing between diets? If this is the case there are 82 significant balances, which seems a lot to check every single one (particularly if I want to look at multiple taxonomic levels). Is there another way I can narrow down potentially interesting balances?

Finally, is there any way to visualise the effect of diet on balances over time?

Thanks again,
Jen

Hi @mortonjt

One last question I forgot to put in my reply. You said the following:

Regression : I would try to set the formula and groups variables as follows

--p-formula diet

--p-groups timepoint

That should give you the random effects for each individual, while testing for diet changes.

How does the model know which metadata category to add random effects for, as there is no option to supply a metadata category to represent individual id.

Thanks again,
Jen

Hi @JenKelly, good catch. --p-groups should correspond to the host_subject_id, not the timepoint (sorry about the confusion). An example of how to use this can be found in the cfstudy example here

R2 and cross validation is super weird with respect to LME, and it is not obvious how to do it. There is a pretty cool article here that describes some of the challenges.

When there are that many balances, you could directly download the pvalues. I’d hazard against looking at every single balance. From that list of balances, I’d start by trying to sort through the balances based on p-value, coefficient size and size of balance. Note that balances with a large number of individuals will likely give a more interesting signal compared to balances with few individuals, since it would explain a larger proportion of the community.

Concerning visualizing balances over time, there isn’t a mechanism to explicitly do this in qiime2. We do have an example on how to do this in python here (an equivalent thing could be done in R as well). Agreed, it would be great to have this available in qiime2 in the near future.

3 Likes

Hi @mortonjt

Thanks for the reply!

I'd spotted that cfstudy tutorial earlier, however it does not explain how to include time in model, would I add that to the formula? i.e as follows

--p-formula diet+timepoint

--p-groups host_subject_id

Although I do want to add host_subject_id as a random effect, I did run a linear regression on the data just as an initial investigation. This allowed me to evaluate the effect of each covariate by looking at R2diff, and I found that as expected, timepoint and host_subject_id explained the most variance in the balances. Is this still a valid approach to understand the contribution of each individual covariate, or does this not make sense as it's a longitudinal study with random effects?

Thanks again for your advice, it's extremely helpful!

Jen

That should be correct – in the cfstudy, the pH was a proxy for time (since there are multiple repeated measures with respect to pH).

Let me know if you have any more questions!

Hi @mortonjt,

Thank you for your previous replies.

Would you mind commenting on my previous question about whether using ols modelling is appropriate with longitudinal data.

Although I do want to add host_subject_id as a random effect, I did run a linear regression on the data just as an initial investigation. This allowed me to evaluate the effect of each covariate by looking at R2diff, and I found that as expected, timepoint and host_subject_id explained the most variance in the balances. Is this still a valid approach to understand the contribution of each individual covariate, or does this not make sense as it’s a longitudinal study with random effects?

Also, when I get the output of running gneiss lme-regression with the following

–p-formula diet+timepoint

–p-groups host_subject_id

I don't really understand how the continuous and categorical covariates put into "--p-formula" interact, and whether this formula will actually identify significant balances that are effected by diet over time, or just those effected by either diet1, diet2, or individual timepoints. For example when I look at the coefficient and p-value output csv files (from lme-regression) like you suggested, each covariate (diet2, timepoint2, timepoint3, timepoint4) ect.. has separate coefficient and p-values. Does that mean each covariate is being treated separately, rather than testing for any interactions?

One last thing! I came across a post talking about "Correct p-values" when looking at output of gneiss regression (Using ANCOM and gneiss with one categorical variable - #7 by mortonjt).

  • Careful - you’ll want to only consider those pvalues under Corrected Pvalues. And pvalues close to 0.05 will also warrant skepticism, so make sure to carefully sanity check the boxplots / scatter plots in the balance-taxonomy command.

I don't see a "Corrected Pvalues" column, therefore I just wanted to check that the pvalues I download from "Coeficcient pvalues" from the regression output are in fact already corrected?

Thanks again and sorry for my confusion!
Jen

Hi @JenKelly,

Using straight up linear regression is ok with time series. The means should be the same, but adding in random effects can help with modeling variances and can identify less obvious signals.

Regarding the second question, since there are no interaction terms specified, the those effects will just be additive effects.

If you wanted interaction terms, you can do --p-formula diet*timepoint

Unfortunately the changes for corrected pvalues didn’t make it in the last release. We just pushed out another minor release of gneiss, so that should be fixed in the next iteration. In the meantime, the corrected pvalues should be done manually.

2 Likes

Hi @mortonjt

Thanks for the response, it was very helpful, I will try out interactions formula and see what I get.

Can I check that uncorrected p-values are supplied for both gneiss ols-regression and gneiss lme-regression, and therefore have to be adjusted by multiplying by number of tests?

Thanks again,
Jen

For Boniferroni yes, you can just multiply by the number of tests. The release is up, so a reinstall of q2-gneiss should just yield the updated webpage

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.