Functions in DESeq2?
1
0
Entering edit mode
9.9 years ago
Parham ★ 1.6k

Can somebody explain what does following functions mean? They are from DESeq2.

  1. rep
  2. grp=factor()
  3. colData
  4. design= ~grp

    grp.idx <- rep(c("knockdown", "control"), each=4) coldat=DataFrame(grp=factor(grp.idx)) dds <- DESeqDataSetFromMatrix(cnts, colData=coldat, design = ~ grp)

Thanks!

DESeq2 • 2.1k views
ADD COMMENT
1
Entering edit mode
9.9 years ago

This has nothing to do with DESeq2, as these are basic R functions (aside from the 3rd one). From within R, type:

  1. help(rep)
  2. help(factor)
  3. help(SummarizedExperiment)
  4. help("~")
ADD COMMENT

Login before adding your answer.

Traffic: 3205 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6