Description Usage Arguments Value Examples
Returns a intersection of rows for each matrix in a ScoreMatrixList object. This is done using the rownames of each element in the list.
1 2 3 4 | intersectScoreMatrixList(sml, reorder = FALSE)
## S4 method for signature 'ScoreMatrixList'
intersectScoreMatrixList(sml, reorder = FALSE)
|
sml |
a |
reorder |
if TRUE |
ScoreMatrixList
object
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(GenomicRanges)
target = GRanges(rep(c(1,2),each=7),
IRanges(rep(c(1,1,2,3,7,8,9), times=2), width=5),
weight = rep(c(1,2),each=7))
windows1 = GRanges(rep(c(1,2),each=2),
IRanges(rep(c(1,2), times=2), width=5),
strand=c('-','+','-','+'))
windows2 = windows1[c(1,3)]
sml = as(list(ScoreMatrix(target, windows1),
ScoreMatrix(target, windows2)), 'ScoreMatrixList')
sml
intersectScoreMatrixList(sml)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.