Description Usage Arguments Value Author(s) Examples
uniqueJuncAnns adds annotation data to ExpressionSet and removes not-matching sites.
1 | uniqueJuncAnn(object,junc,ann=TRUE,...)
|
object |
|
junc |
|
ann |
|
... |
Unused. |
ExpresssionSet
Wolfgang Kaisers
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # A) Names of BAM-files
bam<-character(2)
bam[1]<-system.file("extdata","rna_fem.bam",package="spliceSites")
bam[2]<-system.file("extdata","rna_mal.bam",package="spliceSites")
# B) Experiment Profile
prof<-data.frame(gender=c("f","m"))
meta<-data.frame(labelDescription=names(prof),row.names=names(prof))
pd<-new("AnnotatedDataFrame",data=prof,varMetadata=meta)
# C) Read ExpressionSet
es<-readExpSet(bam,phenoData=pd)
# D) Annotate ExpressionSet
ucf<-system.file("extdata","uc_small.RData",package="spliceSites")
uc<-loadGenome(ucf)
ucj<-getSpliceTable(uc)
# E) Extract unique annotated junction sites.
uja<-uniqueJuncAnn(es,ucj)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.