-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathNAMESPACE
More file actions
executable file
·112 lines (91 loc) · 2.93 KB
/
NAMESPACE
File metadata and controls
executable file
·112 lines (91 loc) · 2.93 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
export(
rows,
columns,
"rows<-",
"columns<-",
"dimnames<-.biom",
merge.biom,
"[.biom",
biomRequest,
biom.environment,
metadata.character,
search.MGRAST,
dir.MGRAST,
t_NA2Zero,
t_Threshold,
t_Log,
t_ColCenter,
t_ColScale,
transform.biom,
boxplot.biom,
princomp.biom,
image.biom,
rowstats,
rowstats.matrix,
rowstats.biom,
distx,
distx.matrix,
distx.biom,
getMetRows,
getMetColumns,
subRow,
subColumn,
parMap,
parAuto,
readSet,
scrubSet,
scrapeSet,
expandSet,
demoSets,
buildDemoSets,
hazPackages,
dependencies,
stepper,
step.through,
collapse,
.Last.lib)
S3method ("dimnames<-", biom)
S3method (merge, biom)
S3method ("[", biom)
S3method (biom, environment)
S3method (metadata, character)
S3method (transform, biom)
S3method (boxplot, biom)
S3method (princomp, biom)
S3method (image, biom)
S3method (rowstats, matrix)
S3method (rowstats, biom)
S3method (distx, matrix)
S3method (distx, biom)
#-----------------------------------------------------------------------------------------
# package BIOM.utils is a strict dependency, declared in "Depends:"
# also (this is a separate point) methods for class "biom" are used throughout,
# so it makes sense to import the entire package namespace.
#-----------------------------------------------------------------------------------------
import (BIOM.utils)
#-----------------------------------------------------------------------------------------
# package MGRASTer ought not to be considered a dependency, perhaps, yet is declared in "Depends:"
# because its environment seems to fail if not loaded this way. nonetheless, the
# following namespace import might reasonably be removed, in favor of explicit references.
#-----------------------------------------------------------------------------------------
import (MGRASTer)
#-----------------------------------------------------------------------------------------
# all other packages are optional, each providing specific and limited analysis functionality.
# we adopt the approach described in this remark from the (forthcoming) R-ext manual:
# "If the intention is to give an error
# if the suggested package is not available,
# simply use e.g. rgl::plot3d."
# the following are exceptions, because the matR package namespace depends on them:
#-----------------------------------------------------------------------------------------
importFrom (graphics, boxplot)
importFrom (graphics, image)
importFrom (stats, princomp)
importFrom("grDevices", "colorRamp", "colors", "rgb")
importFrom("graphics", "abline", "close.screen", "grid", "plot",
"points", "screen", "split.screen", "text")
importFrom("stats", "anova", "aov", "kruskal.test", "sd", "t.test",
"wilcox.test")
importFrom("utils", "browseURL", "chooseBioCmirror",
"chooseCRANmirror", "install.packages",
"packageDescription", "packageVersion", "read.table",
"setRepositories")