Entering edit mode
Hey guys,
Is this correct? I want to reduce my countData (cts):
The aim is to get at least 8 reads in 20% of the samples (which is 50 samples):
keep<- rowSums(cts>8)>=50
cts <-cts[keep,]
Thank you, Bine
Hey guys,
Is this correct? I want to reduce my countData (cts):
The aim is to get at least 8 reads in 20% of the samples (which is 50 samples):
keep<- rowSums(cts>8)>=50
cts <-cts[keep,]
Thank you, Bine
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thank you very much for confirming!