Gene set analysis: GSVA, Z-Score, and fold-changes
2
0
Entering edit mode
Jonathan ▴ 10
@c31cf0e5
Last seen 3 days ago
United States

I have a relatively simple experiment, from which I have Bulk RNASeq samples from two time-points ("before" & "after") and two treatments ("drug" or "vehicle"). Recently, I tried to employ pathway analysis using BioConductor's GSVA package, mainly using the 'gsva' and 'zscore' methods.

Several questions occurred to me:

  1. Is the DGEList object's counts (DGEList$counts) the proper input for the gsva method as data? Should I use voom-transformed values instead, or something else?
  2. Can GSVA values of two groups be compared meaningfully? I mean, can I compare the distance/ratio/fold-changes between GSVA "after" and "before", utilize emmeans, etc?
  3. Comparing before-vs-after GSVA values difference is possible via t-test/Mann-Whitney; Is there any way to compare a "difference-of-differences", i.e., to test whether "drug after" change from "drug before" is more or less than "vehicle after" change from "vehicle before"?
  4. When using the ZSCORE method, can I convert the Z-score values to a uniform distribution (via pnorm) and then calculate distance/ratio/fold-changes?
  5. In their paper describing the ZSCORE method, Lee et al. (2008) suggest, after calculating the Z-score per sample, filtering the geneset while keeping only "key genes which yield most discriminative activities". As far as I could tell, this part was not implemented as part of the 'zscore' method of the gsva() function; Should it be implemented? How important is this step?

    For a given pathway, a greedy search was performed to identify a subset of member genes in the pathway for which S(G) was locally maximal. We refer to this subset as the set of "condition-responsive genes" (CORGs) representing the majority of the pathway activation under the relevant conditions. To identify the CORG set, member genes were first ranked by their t-test scores, in ascending order if the average t-score among all member genes was negative, and in descending order otherwise. The CORG set G was initialized to contain only the top member gene and iteratively expanded. At each iteration, addition of the gene with the next best t-test score was considered, and the search was terminated when no addition increased the discriminative score S(G). The activity vector a of the final CORG set was regarded as the pathway activity across the samples.

  6. What is the mainstream approach for Geneset/Pathway analysis nowadays? Is GSVA still common or the "community" has moved toward more novel approaches?

Thank you all!

GSVA RNASeq limma • 1.2k views
ADD COMMENT
3
Entering edit mode
Robert Castelo ★ 3.3k
@rcastelo
Last seen 6 days ago
Barcelona/Universitat Pompeu Fabra
  1. The recommended input for the gsva method are normalized continuous units of expression, such as log-CPM values, which you can obtain using edgeR's implementation of the TMM method by the function calcNormFactors() and then calling cpm() with arguments normalized.lib.sizes=TRUE and log=TRUE. You also may use normalized and voom-transformed values instead.
  2. The output of gsva() with the default arguments is amenable for being analyzed with linear models. I'm not familiar with the package emmeans, but in the GSVA vignette you'll find an example using the limma package.
  3. You may use t-test/Mann-Whitney, but for high-dimensional data they are suboptimal in comparison to packages such as limma or DESeq2. You may find exemples of factorial designs, interaction models, etc., in chapter 9 of limma user's guide.
  4. I do not see how one can convert z-score values to a uniform distribution using the pnorm() function.
  5. This is not implemented in GSVA. If you are interested, please file a feature request by opening an issue at the GSVA GitHub repo, giving details on your use case.
  6. There are plenty of methods for pathway analysis and the one that may suit you best depends on what question do you want to address. You can take a look through the thousands of articles citing the GSVA package to see whether any of those is using GSVA to address a question that is similar to the one you want to tackle.
ADD COMMENT
1
Entering edit mode
@gordon-smyth
Last seen 1 hour ago
WEHI, Melbourne, Australia

The limma RNA-seq workflow RNA-seq analysis is easy as 1-2-3 with limma, Glimma and edgeR demonstrates gene set testing / pathway analysis using camera. camera can conduct analyses for any linear model contrasts including differences of diffferences.

ADD COMMENT

Login before adding your answer.

Traffic: 426 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6