Description Details Slots Constructor Coercion Accessors Splitting and combining Subsetting Filtering Methods based on findOverlaps Other methods
An S4 class to represent m-tuples of genomic positions.
The MTuples
class extends the GRanges
class by adding the extraPos
slot (see below for details). An m-tuple
is a tuple of individual basepairs that are on the same chromosome, where
'm' is the number of positions in the tuple. For example,
(chr1:30, chr1:33, chr1:40) is a 3-tuple of the positions on chromosome 1.
Note the strand of the m-tuple is optional.
Internally, this example 3-tuple is stored as a GRanges object with the first
and last positions of the m-tuple stored as the start
and end
of the GRanges interval, respectively. That is,
GRanges('chr1', IRanges(start = 30, end = 40))
. The "extra" position,
chr1:33, is stored in the extraPos
matrix.
extraPos
A numeric matrix storing "extra" positions in m-tuples,
provided m >= 3. If m = 1 or 2, extraPos
is a matrix of NA
.
The extraPos
matrix has as many rows as there are m-tuples in the
MTuples
object.
TODO: Insert help for constructor method.
TODO: Insert help for any coerction methods.
TODO: Insert help for any accessor methods.
TODO: Insert help for any splitting and combining methods.
TODO: Describe any subsetting methods.
TODO: Describe any filtering methods.
TODO Insert help for any findOverlaps-based methods.
TODO: Describe any other methods.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.