Mann-Whitney test -- is it applicable to compare log2 fold change in a subset of genes to all genes?
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
log2 fold change in RNA-seq analysis
written by wmsalsah •HI everyone, In RNA-seq analysis. for Desq2 I have chosen adj-pvalue <0.05 and log2 fold change > 1 to find differential expressed genes. My question …
-
Could you please explain Fold change, % of change, and log2 fold change (L2FC) to a layment?
written by WUSCHELThis seems simple maths behind, But I always get confused with the terminology of **"Fold change", "Log Fold Change" *(LFC)*, and "Percentage of Change"**., When …
-
Fold change - a final explanation
written by Sebastian HesseA colleague of mine and I have just been discussing the meaning of fold changes and though this question has been asked before non of …
-
Statistical test to compare the number of upregulated genes in a subgroup of genes versus all genes?
written by biostartHello, I have RNA-seq data for two cell conditions. I want to test a hypothesis that there are more significantly upregulated genes in a given …
-
Statistical test to compare expression change in a subgroup of genes versus all genes?
written by biostartDear statisticians: Suppose I have two cell conditions, and the processed RNA-seq data for both of them, giving expression log2 fold changes. I want to …
-
[solved] Convert fold changes of multiple transcripts of a given gene to a single value characteris…
written by biostartHello, After a typical RNA-seq workflow performed by a collaborator I have a table with expression fold change for all transcripts. I have a subset …
-
Calculating fold change at enhancers and promoters
written by SinjiI have a question about fold change and how it should be calculated for enhancer regions. I am aware that packages such as DESeq2 and …
-
would it be a good idea to normalize log2 fold changes with loess?
written by tonja.rIn the Microarray if the data is not center around 0 on [MA-plots][1], it is normalized with LOESS. Lets say I have raw log2 fold …
-
Comparing Allele Frequency Between 1000 Genomes And Nhlbi
written by User 1933 •<p>I have a set of variants. These variants are also reported in 1000 Genome project (summary table) as well as (NHLBI - National Heart Lung …
-
Identify Differentially Expressed Genes With Two Groups In Which There Are Only Two Replicates
written by liux.bio<p>Hello everyone,</p> <p>I want to Identify differentially expressed genes with two groups in which there are only two replicates.</p> <p>What methods should I use? I …
How big are the subsets and full sets? You likely want GSEA instead...
The full set is 7,000 genes, and the subsets are like 1,000, 2,000 genes
N.B., you'll need
abs(log2 fold change)for Mann-Whitney to make sense.With a subset of that size the question becomes how you want to think about the comparison. Given your background question, I suspect that GSEA is answering the question you want to ask (i.e., "given two groups, is the subset 'perturbed' in one group versus the other in respect to the other genes").
Hmm, if I take abs(log2 fold change), then how do I distinguish between up- and downregulated? This will be a problem... But what if I just use the two sample t-test, would that be problematic?
You're comparing a subset versus the whole. The direction of change of individual genes is completely irrelevant to that question.
I actually don't understand the argument about "abs". Why negative values are a problem for Mann-Whitney?
I just need one quick calculation, would not want install GSEA for that. Do you know, which statistical test would be used in GSEA in this case?
It's largely a more complicated version of
ks.test()in R.