Description Usage Arguments Value Examples
View source: R/plotMotifLogoStack.R
plot sequence logos stack
1 | plotMotifLogoStack(pfms, ...)
|
pfms |
a list of position frequency matrices, pfms must be a list of class pfm |
... |
other parameters can be passed to plotMotifLogo function |
none
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | pcm1<-matrix(c(0,50,0,50,
100,0,0,0,
0,100,0,0,
0,0,100,0,
0,0,0,100,
50,50,0,0,
0,0,50,50), nrow=4)
pcm2<-matrix(c(50,50,0,0,
0,100,0,0,
0,50,50,0,
0,0,0,100,
50,50,0,0,
0,0,50,50), nrow=4)
rownames(pcm1)<-c("A","C","G","T")
rownames(pcm2)<-c("A","C","G","T")
pfms<-list(p1=new("pfm",mat=pcm2pfm(pcm1),name="m1"),
p2=new("pfm",mat=pcm2pfm(pcm2),name="m2"))
pfms<-DNAmotifAlignment(pfms)
plotMotifLogoStack(pfms)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.