hi buddies!
i´m trying to normalize my count reads in Rstudio with EdgeR plugin usin the TMM method by now i just got the TMM factors, but then, what is the next step?
i ran:
pr = read.csv("feature_counts.csv", header = TRUE)
w = DEGList(pr[c(3:20]) >>>>this bcoz the rest is non numerical data
s = CalcNormFactors(w, method = "TMM")
head(s)
an object of class "DGEList" $counts... etc
and i got the following info:
$samples
group lib.size norm.factors
s1 1 52519 0.9423
s2 1 10890 1.6654
...and so on
as i have understood, thoose are only the normalization factors, but not yet the normalized values, so whats the next step, tools, etc?
thanks