-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNAMESPACE
44 lines (39 loc) · 1.34 KB
/
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
37
38
39
40
41
42
43
44
# Calling the dynamic library.
useDynLib(diffHic, .registration=TRUE, .fixes="cxx_")
# All functions exported, sorted by approximate function:
export(diffHicUsersGuide,
cutGenome, segmentGenome, emptyGenome,
preparePairs, mergePairs, savePairs, prepPseudoPairs,
getPairData, prunePairs,
loadChromos, loadData, extractPatch,
pairParam,
readMTX2IntSet,
squareCounts, connectCounts, marginCounts, totalCounts,
mergeCMs,
correctedContact, normalizeCNV, matchMargins,
getArea,
filterDirect, filterTrended, filterDiag,
filterPeaks, enrichedPairs, neighborCounts,
boxPairs, clusterPairs, consolidatePairs, diClusters,
annotatePairs,
compartmentalize, domainDirections,
plotPlaid, rotPlaid, plotDI, rotDI,
asDGEList, reform # From csaw, but also available to the user.
)
# Exporting classes.
exportClasses(
pairParam
)
# Requires several imports.
import(Rsamtools,Rhtslib,GenomicRanges,Biostrings,BSgenome,rhdf5,
IRanges,S4Vectors,GenomeInfoDb,
edgeR,limma,locfit,methods,csaw,
InteractionSet,SummarizedExperiment
)
importFrom("BiocGenerics", counts)
importFrom("grDevices", col2rgb, rgb)
importFrom("graphics", box, par, plot, polygon, rect, text)
importFrom("stats", approx, approxfun, fitted, kmeans)
importFrom("utils", read.table, write.table)
importFrom("Rcpp", sourceCpp)
importFrom("rtracklayer", import.bed)