Description Objects from the Class Slots Methods Author(s) References See Also Examples
A class to store (putative) splice sites
Objects can be created by calls of the form new("SpliceSites", ...)
.
seq
:Object of class "character"
. The reference
sequence.
seq.length
:Object of class "integer"
. The length for
the reference sequence (used when the slot seq
is set to
""
).
spsiteIpos
:Object of class "matrix"
. A
two-columns
matrix to store the begin and end positions of type I splice
variant.
spsiteIIpos
:Object of class "integer"
. A
vector to store the positions for type II splice variants.
spsiteIIIpos
:Object of class "matrix"
. Idem
spsiteIpos
, but for type III splice variants.
spsiteIpos.pData
:Object of class
AnnotatedDataFrame
. Used
to store covariate information related to the splice variants.
spsiteIIpos.pData
:Object of class
AnnotatedDataFrame
.
spsiteIIIpos.pData
:Object of class
AnnotatedDataFrame
.
signature(object = "SpliceSites")
: A printing method.
signature(x = "SpliceSites", y = "missing")
: A
plotting method
laurent@cbs.dtu.dk
"Plenty of splicin' or 'can regular Affymetrix chips be used to observe alternative splicing ?'", Gautier L. et al., 2003, manuscript in preparation (and the title might have to chang...).
isSpliceSiteOnProbe
,
isProbeOnSpliceSite
,
plot.SpliceSites
,
spliceset
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(spliceset)
print(spliceset)
par(mfrow=c(1,2))
plot(spliceset, main=attr(spliceset, "name"))
## filter out supporting matches with unique positions
filter.typeI <- function(x) {unique(x[duplicated(x), , drop=FALSE])}
spliceset.filter <- spliceset
sSites <- spliceset.filter@spliceSites
sSites@spsiteIpos <- filter.typeI(sSites@spsiteIpos)
spliceset.filter@spliceSites <- sSites
## plot the resulting new object
plot(spliceset.filter)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.