extract RLE normalized table
1
0
Entering edit mode
aiko • 0
@aiko-7523
Last seen 3.8 years ago
Canada

Hi!

I would like to know if it is possible to extract the RLE normalized count table after the CalcNormFactors and how I can extract it.

Enrichetta

rle normalization table • 1.3k views
ADD COMMENT
0
Entering edit mode
@steve-lianoglou-2771
Last seen 13 months ago
United States

Although you haven't explicitly said so, I guess you're in "edgeR" land and I will assume you have a DGEList that you've properly setup. So let's say you've done:

y <- DGEList(...)
y <- calcNormFactors(y, 'RLE')

and now you want to get the normalized counts out, you could simply get the counts-per-million and multiply that matrix by a million, eg:

ncounts <- cpm(y) * 1e6

 

ADD COMMENT

Login before adding your answer.

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