forked from jimhester/GenomicRanges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNAMESPACE
More file actions
158 lines (128 loc) · 3.71 KB
/
NAMESPACE
File metadata and controls
158 lines (128 loc) · 3.71 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
useDynLib(GenomicRanges)
import(methods)
import(utils) # for as.roman()
importFrom(stats, setNames)
import(BiocGenerics)
import(S4Vectors)
import(IRanges)
import(GenomeInfoDb)
import(XVector) # only for the "Views" method for integer vectors, the
# XIntegerViews class, and the "viewMins", "viewMaxs", and
# "viewSums" methods for XIntegerViews objects
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 classes
###
exportClasses(
Constraint, ConstraintORNULL,
GenomicRanges, GenomicRangesORmissing, GRanges, DelegatingGenomicRanges,
GNCList, GIntervalTree,
GenomicRangesORGRangesList, GRangesList,
SummarizedExperiment, Assays, ShallowData, ShallowSimpleListAssays,
GenomicRangesList, SimpleGenomicRangesList
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S3 methods
###
S3method(duplicated, GenomicRanges)
S3method(sort, GenomicRanges)
### We also export them thru the export() directive so that (a) they can be
### called directly, (b) tab-completion on the name of the generic shows them,
### and (c) methods() doesn't asterisk them.
export(
duplicated.GenomicRanges,
sort.GenomicRanges
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 methods for generics not defined in GenomicRanges
###
exportMethods(
length,
names, "names<-",
"dimnames<-",
"[", "[<-", "[[", "[[<-", "$", "$<-",
as.data.frame,
coerce,
c,
cbind,
rbind,
show,
duplicated, match,
order, sort, rank,
union, intersect, setdiff,
start, "start<-", end, "end<-", width, "width<-",
split, unlist,
range,
Ops,
merge,
updateObject,
strand, "strand<-",
## Generics defined in IRanges:
elementMetadata, "elementMetadata<-",
mcols, "mcols<-",
values, "values<-",
relistToClass,
compare,
ranges, "ranges<-",
ngap,
score, "score<-",
shift, narrow, resize, flank, promoters, restrict, trim,
reduce, gaps, disjoin, isDisjoint, disjointBins,
coverage,
punion, pintersect, psetdiff, pgap,
findOverlaps, countOverlaps, overlapsAny, subsetByOverlaps,
precede, follow, nearest, distance, distanceToNearest,
mapCoords, pmapCoords,
tile,
subset,
subjectHits, queryHits,
## Generics defined in GenomeInfoDb:
seqinfo, "seqinfo<-",
seqnames, "seqnames<-"
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export non-generic functions
###
export(
phicoef,
GRanges, .DollarNames.GenomicRanges,
GNCList, GIntervalTree,
GenomicRangesList, GRangesList,
makeGRangesFromDataFrame,
makeGRangesListFromFeatureFragments,
isSmallGenome, absoluteRanges, relativeRanges,
tileGenome,
rowData, "rowData<-",
.DollarNames.SummarizedExperiment
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 generics defined in GenomicRanges + export corresponding
### methods
###
export(
## constraint.R:
#constraint, "constraint<-",
checkConstraint,
## range-squeezers.R:
granges, grglist, rglist,
## SummarizedExperiment-class.R:
SummarizedExperiment,
exptData, "exptData<-",
rowRanges, "rowRanges<-",
colData, "colData<-",
assays, "assays<-",
assay, "assay<-",
assayNames, "assayNames<-"
)
### Exactly the same list as above.
exportMethods(
#constraint, "constraint<-",
checkConstraint,
granges, grglist, rglist,
SummarizedExperiment,
exptData, "exptData<-",
rowRanges, "rowRanges<-",
colData, "colData<-",
assays, "assays<-",
assay, "assay<-",
assayNames, "assayNames<-"
)