Description Usage Arguments Value Author(s) References See Also Examples
View source: R/diffCountsBaySeq.R
Most Rcade users will not need to call this function directly. A function that provides a wrapper for the methods in the BaySeq package.
1 |
counts |
Counts from |
targets |
|
annoZones |
|
cl |
|
getLibsizesArgs |
See |
getPriors.NBArgs |
See
|
getLikelihoods.NBArgs |
See
|
libsizes |
Library sizes FIXME |
data.frame
containing differential count information.
Jonathan Cairns
Hardcastle, T. J., & Kelly, K. A. (2010). baySeq: Empirical Bayesian methods for identifying differential expression in sequence count data. BMC Bioinformatics, 11, 422.
1 2 3 4 5 6 7 8 9 10 11 12 | dir <- file.path(system.file("extdata", package="Rcade"), "STAT1")
targets <- read.csv(file.path(dir, "targets.csv"), as.is = TRUE)
anno <- read.csv(file.path(dir, "anno.csv"))
anno <- anno[order(anno$chromosome_name),]
colnames(anno) <- c("ENSG","chr","start","end","str")
ChIPannoZones <- defineBins(anno, zone=c(-1500, 1500), geneID="ENSG")
counts <- countReads(ChIPannoZones, targets, fileDir = dir)
x <- diffCountsBaySeq(counts, targets, ChIPannoZones)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.