File: inter-range-methods.R

package info (click to toggle)
r-bioc-summarizedexperiment 1.12.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,752 kB
  • sloc: sh: 3; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
### =========================================================================
### Inter-range methods
### -------------------------------------------------------------------------
###


setMethod("isDisjoint", "RangedSummarizedExperiment",
    function(x, ignore.strand=FALSE)
    {
        x <- rowRanges(x)
        callGeneric()
    }
)

setMethod("disjointBins", "RangedSummarizedExperiment",
    function(x, ignore.strand = FALSE)
    {
        x <- rowRanges(x)
        callGeneric()
    }
)