Description Usage Arguments Details Value Author(s) Examples
Functions to classify interactions within GenomicInteractions objects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | is.pp(GIObject)
is.pd(GIObject)
is.pt(GIObject)
is.dd(GIObject)
is.dt(GIObject)
is.tt(GIObject)
isInteractionType(GIObject, x, y)
is.trans(GIObject)
is.cis(GIObject)
## S4 method for signature 'GenomicInteractions'
is.pp(GIObject)
## S4 method for signature 'GenomicInteractions'
is.pd(GIObject)
## S4 method for signature 'GenomicInteractions'
is.pt(GIObject)
## S4 method for signature 'GenomicInteractions'
is.dd(GIObject)
## S4 method for signature 'GenomicInteractions'
is.dt(GIObject)
## S4 method for signature 'GenomicInteractions'
is.tt(GIObject)
## S4 method for signature 'GenomicInteractions'
isInteractionType(GIObject, x, y)
## S4 method for signature 'GenomicInteractions'
is.trans(GIObject)
## S4 method for signature 'GenomicInteractions'
is.cis(GIObject)
|
GIObject |
A GenomicInteractions object. |
x, y |
Names of annotated node classes |
isInteractionType
identifies all interactions that occur between the annotated node classes x
and y
.
is.trans
and is.cis
select trans-chromosomal and intra-chromosomal interactions, respectively.
The other functions are convenience wrappers for identifying interactions between regions of common annotations,
namely promoter p
, distal d
or terminator t
regions.
A logical vector indicating whether each entry of GIObject
is of the specified type.
Malcolm Perry, Elizabeth Ing-Simmons
1 2 3 4 | data(hic_example_data)
hic_example_data <- updateObject(hic_example_data)
table(is.cis(hic_example_data))
sum(interactionCounts(hic_example_data))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.