how to visualize the distribution of 20,000 genes in gene expression data
0
1
Entering edit mode
7.0 years ago
mms140130 ▴ 60

Hi,

I need to visualize the distribution of 20,000 genes for 1000 patients in gene expression data to see how far it is from Normal distribution assumption , to perform an eQTL analysis to see if the transformation of log is meaningful ( no bimodal plots)

Can anyone suggest how to visualize the distribution of 20,000 genes

R gene • 2.1k views
ADD COMMENT
0
Entering edit mode

Why not just use plot() for each gene?

ADD REPLY
0
Entering edit mode

is this an efficient way to see all plots at once , so I have 20,000 plot ??!

ADD REPLY
3
Entering edit mode

I don't know if you're better off heatmapping a quarter million data points though, especially if you're not scaling the data for each gene. Maybe visual examination is out of the question. Instead iterate through each gene, and do a shapiro test for each to assess normality:

shapiro.test(y)$p.value

Combine these pvalues into a list for all of your genes, and sort by pvalue. Anything significant is a normal distribution.

ADD REPLY

Login before adding your answer.

Traffic: 2344 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