-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
36 lines (30 loc) · 902 Bytes
/
NAMESPACE
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
useDynLib(InteractionSet, .registration=TRUE, .fixes="cxx_")
# Exporting the InteractionSet class.
exportClasses(
GInteractions, StrictGInteractions, ReverseStrictGInteractions,
InteractionSet,
ContactMatrix
)
exportMethods(
GInteractions,
anchors, anchorIds, regions, reduceRegions, swapAnchors,
"regions<-", "replaceRegions<-", "appendRegions<-", "anchorIds<-",
pairs,
findOverlaps, countOverlaps,
InteractionSet,
interactions,
"interactions<-",
pairdist, intrachr, linearize, linkOverlaps, boundingBox,
ContactMatrix,
"as.matrix<-",
inflate, deflate,
updateObject
)
export(
makeGInteractionsFromGRangesPairs
)
# Requires several imports.
import(methods, BiocGenerics, S4Vectors, IRanges,
GenomeInfoDb, GenomicRanges, SummarizedExperiment)
importFrom("Matrix", "Matrix", "sparseMatrix")
importFrom("Rcpp", sourceCpp)