-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNAMESPACE
105 lines (85 loc) · 2.58 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
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
import(methods)
importFrom(stats, setNames)
import(BiocGenerics)
import(S4Vectors)
import(IRanges)
import(GenomeInfoDb)
import(GenomicRanges)
import(Biobase)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 classes
###
exportClasses(
## TODO: Uncomment the line below once these helper classes are defined in
## the SummarizedExperiment package. Otherwise, RangedSummarizedExperiment
## objects that have been serialized *before* these helper classes were
## moved are going to look broken (i.e. validObjet() will fail on them).
#Assays, ShallowData, ShallowSimpleListAssays,
SummarizedExperiment0,
RangedSummarizedExperiment
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 methods for generics not defined in SummarizedExperiment
###
exportMethods(
length, names, "names<-",
dim, dimnames, "dimnames<-",
"[", "[<-", "[[", "[[<-", "$", "$<-",
as.data.frame,
coerce,
show,
c,
merge,
Compare,
## Generics defined in BiocGenerics:
cbind, rbind,
duplicated, match,
order, rank, sort,
updateObject,
start, "start<-", end, "end<-", width, "width<-",
strand, "strand<-",
## Generics defined in S4Vectors:
"metadata<-",
mcols, "mcols<-",
elementMetadata, "elementMetadata<-",
values, "values<-",
extractROWS, replaceROWS,
subset,
compare,
## Generics defined in IRanges:
ranges, "ranges<-",
shift, narrow, resize, flank, promoters, restrict, trim,
isDisjoint, disjointBins,
coverage,
findOverlaps, countOverlaps, overlapsAny, subsetByOverlaps,
precede, follow, nearest, distance, distanceToNearest,
## Generics defined in GenomeInfoDb:
seqinfo, "seqinfo<-",
seqnames, "seqnames<-",
## Generics defined in GenomicRanges (at some point, these generics will
## be defined in SummarizedExperiment):
SummarizedExperiment,
rowRanges, "rowRanges<-",
colData, "colData<-",
assayNames, "assayNames<-",
assays, "assays<-",
assay, "assay<-"
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export non-generic functions
###
export(
Assays,
.DollarNames.SummarizedExperiment0,
makeSummarizedExperimentFromExpressionSet,
naiveRangeMapper, probeRangeMapper, geneRangeMapper
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 generics defined in SummarizedExperiment + export corresponding
### methods
###
export(
)
### Exactly the same list as above.
exportMethods(
)