我有Rpackage DESEeq
的这个公式,它以~Strain
为公式。
我有type.formula <- "Strain"
并希望将公式中的Strain
替换为type.formula
,并且能够运行以下代码。我怎样才能做到这一点?
所以不要使用下面的代码:
dds <- DESeqDataSetFromMatrix(countData = count.mat , colData = cond, design = ~Strain)
我想像这样运行它:
dds <- DESeqDataSetFromMatrix(countData = count.mat , colData = cond, design = ~eval(type.formula))