Functions in DESeq2?
Can somebody explain what does following functions mean? They are from DESeq2.
repgrp=factor()colDatadesign= ~grpgrp.idx <- rep(c("knockdown", "control"), each=4) coldat=DataFrame(grp=factor(grp.idx)) dds <- DESeqDataSetFromMatrix(cnts, colData=coldat, design = ~ grp)
Thanks!
• 2,542 views
•
link
1 answer
This has nothing to do with DESeq2, as these are basic R functions (aside from the 3rd one). From within R, type:
help(rep)help(factor)help(SummarizedExperiment)help("~")
• 0 views
•
link
Log in to answer this question.