Browse code

Added imports to NAMESPACE to fix NOTE during R CMD check

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/rTRM@114772 bc3139a8-67e5-0310-9ffc-ced21a209358

D Diez authored on 15/03/2016 01:59:42
Showing 2 changed files

... ...
@@ -2,7 +2,7 @@ Package: rTRM
2 2
 Type: Package
3 3
 Title: Identification of transcriptional regulatory modules from PPI
4 4
         networks
5
-Version: 1.9.1
5
+Version: 1.9.2
6 6
 Date: 2015-12-25
7 7
 Author: Diego Diez
8 8
 Depends: R (>= 2.10), igraph (>= 1.0)
... ...
@@ -1,12 +1,31 @@
1 1
 import(igraph, RSQLite)
2 2
 
3 3
 importMethodsFrom(AnnotationDbi,
4
-                  "select"
5
-)
4
+                  "select")
6 5
 
7 6
 importMethodsFrom(DBI,
8 7
                   "dbDriver",
9
-                  "fetch"
8
+                  "fetch")
9
+
10
+importFrom("grDevices", "col2rgb", "colors", "grey.colors")
11
+importFrom(
12
+  "graphics",
13
+  "abline",
14
+  "legend",
15
+  "lines",
16
+  "par",
17
+  "plot",
18
+  "points",
19
+  "polygon",
20
+  "symbols",
21
+  "text"
10 22
 )
23
+importFrom("stats", "as.dist", "cor", "lm", "na.omit")
24
+importFrom("utils",
25
+           "data",
26
+           "download.file",
27
+           "read.delim",
28
+           "unzip",
29
+           "write.table")
11 30
 
12 31
 exportPattern("^[[:alpha:]]+")