noiseqbio
computes differential expression between two experimental conditions from read count data (e.g. RNA-seq).
noiseqbio(input, k = 0.5, norm = c("rpkm","uqua","tmm","n"), nclust = 15, plot = FALSE, factor=NULL, conditions = NULL, lc = 0, r = 50, adj = 1.5, a0per = 0.9, random.seed = 12345, filter = 1, depth = NULL, cv.cutoff = 500, cpm = 1)
readData
function or other R packages such as DESeq.
factor
contains more than 2 different conditions).
?filtered.data
for more details.
Output
Bullard J.H., Purdom E., Hansen K.D. and Dudoit S. (2010) Evaluation of statistical methods for normalization and differential expression in mRNA-seq experiments. BMC Bioinformatics 11(1):94+.
Mortazavi A., Williams B.A., McCue K., Schaeer L. and Wold B. (2008) Mapping and quantifying mammalian transcriptomes by RNA-seq. Nature Methods 5(7):621-628.
Robinson M.D. and Oshlack A. (2010) A scaling normalization method for differential expression analysis of RNA-seq data. Genome Biology 11(3):R25+.
Marioni, J.C. and Mason, C.E. and Mane, S.M. and Stephens, M. and Gilad, Y. (2008) RNA-seq: an assessment of technical reproducibility and comparison with gene expression arrays. Genome Research, 18: 1509--1517.
readData
.
## Load the input object from Marioni's data as returned by readData()
data(myCounts)
## Computing differential expression probability by NOISeqBIO using factor "Tissue" (data will be RPKM-normalized)
mynoiseqbio = noiseqbio(mydata, k = 0.5, norm = "rpkm", factor="Tissue", lc = 1, r = 50, adj = 1.5, plot = FALSE,
a0per = 0.9, random.seed = 12345, filter = 1, cv.cutoff = 500, cpm = 1)
Run the code above in your browser using DataLab