-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNAMESPACE
59 lines (50 loc) · 1021 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Package required for the features of GOexpress to work
import(Biobase)
import(biomaRt)
import(ggplot2)
import(grid)
import(RColorBrewer)
import(graphics)
import(stats)
#importFrom(
# "graphics",
# "hist", "par", "plot", "plot.design"
#)
#importFrom(
# "aggregate", "dist", "hclust", "oneway.test", "quantile"
# "stats",
#)
importFrom(
"gplots",
"heatmap.2", "bluered", "greenred"
)
importFrom(
"stringr",
"str_extract"
)
importFrom(
"randomForest",
"randomForest", "importance"
)
importFrom(
"RCurl",
"getCurlHandle"
)
#export("^[[:alpha:]]+")
# Functions available to the user (API)
export("cluster_GO")
export("expression_plot")
export("expression_plot_symbol")
export("expression_profiles")
export("expression_profiles_symbol")
export("GO_analyse")
export("heatmap_GO")
export("hist_scores")
export("list_genes")
export("plot_design")
export("pValue_GO")
export("quantiles_scores")
export("rerank")
export("subEset")
export("subset_scores")
export("table_genes")