Hi,
I was trying to normalize my count/reads data using cumNormStat function. The code executes with the 'default value', and doesn't appear to change the count values after the normalization. Am I doing something wrong? Or is the 'default value' the most appropriate value for my dataset?
> p=cumNormStat(mrobj) # calculateNormFactors
Default value being used.
> mrobj2 = cumNorm(mrobj,p=p) # Normalize
> print(MRcounts(mrobj)[1:3,1:3])
sample_1 sample_10 sample_100
Otu00001 4957 169 1
Otu00002 869 3604 0
Otu00003 425 1368 0
> print(MRcounts(mrobj2)[1:3,1:3])
sample_1 sample_10 sample_100
Otu00001 4957 169 1
Otu00002 869 3604 0
Otu00003 425 1368 0
thanks!!