Description Usage Arguments Value Author(s) See Also Examples
View source: R/plot.SpliceSitesGenomic.R
Function to plot SpliceSitesGenomic objects.
1 2 3 |
x |
|
col.variant |
a vector of colors for the different variants. The colors are recycled as necessary. |
col.exon |
a vector of colors for the exons. The colors are recycled as necessary. |
split |
split the plot of the variants in individual plots |
main |
|
... |
optional graphical parameters |
This function is used for its side-effect.
Laurent
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## a 10 bp window
seq.length <- as.integer(10)
## positions of the exons
spsiteIpos <- matrix(c(1, 3.5, 5, 9, 3, 4, 8, 10), nc=2)
## known variants
variants <- list(a=c(1,2,3,4), b=c(1,2,3), c=c(1,3,4))
##
n.exons <- nrow(spsiteIpos)
spvar <- new("SpliceSitesGenomic", spsiteIpos=spsiteIpos,
variants=variants, seq.length=seq.length)
par(mfrow = c(3,1), mar = c(3.1, 2.1, 2.1, 1.1))
plot(spvar, split=TRUE, col.exon=rainbow(n.exons))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.