I have ~300 samples (RNA-seq) with a desired design matrix as: ~ Strain + Condition + Strain:Condition
Unfortunately this is an underdetermined system, as Strain can take one of 28 values, and Condition can take on one of 12, so the inclusion of the interaction terms gives me more variables than I have data.
In general linear models, one way to overcome an underdetermined learning problem is to apply constraints to to the number of non-zero parameters such as the Lasso.
Is there something akin to this in DESeq2?
I've actually been using glmnet on the vlogTransformed output, but was wondering if it was built in to DESeq2 for the counts. Thanks! I'll stick with vlog -> glmnet