Hello!
I have a set of RNA-seq data that consists of my samples (uninduced/induced cells) as well as controls (parental cell lines).
I would like to apply a minimum cpm threshold, but only to my samples (3 replicates each), and not to the controls. This is because there is a small subset of genes expressed only in my samples that are currently being removed by the minimum count threshold, since they are not expressed in the controls.
Is there any way of doing this with filterByExpr or the following?
keep <- rowSums( cpm(y) > x ) >=z
Or should I just separate the data, apply different minimum count thresholds, and then merge it again?
Thanks!