Description Details Author(s) References Examples
A simple approach for performing classification and clustering of samples for which RNA sequencing data is available. Based upon a simple Poisson model proposed by a number of authors (e.g. Marioni et al Genome Research 2008, Bullard et al BMC Bioinformatics 2010, and others).
Package: | PoiClaClu |
Type: | Package |
Version: | 1.0.2 |
Date: | 2013-01-02 |
License: | GPL-2 |
LazyLoad: | yes |
Daniela Witten
Maintainer: Daniela Witten <dwitten@u.washington.edu>
D. Witten (2011) Classification and clustering of sequencing data using a Poisson model. Annals of Applied Statistics 5(4): 2493-2518.
1 2 3 4 5 6 7 8 9 10 11 12 | # Poisson clustering #
set.seed(1)
dat <- CountDataSet(n=20,p=100,sdsignal=.5,K=4,param=10)
dd <- PoissonDistance(dat$x, type="mle")
print(dd)
ColorDendrogram(hclust(dd$dd), y=dat$y)
# Poisson classification #
set.seed(1)
dat <- CountDataSet(n=20,p=100,sdsignal=.1,K=4,param=10)
out <- Classify(x=dat$x,y=dat$y,xte=dat$xte,rhos=c(0,5,10))
print(out)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.