git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/DEGraph@59584 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -18,7 +18,7 @@ import(graph) |
18 | 18 |
import(KEGGgraph) |
19 | 19 |
## importFrom(graph,subGraph, numEdges, validGraph, isDirected, removeEdge) |
20 | 20 |
## importFrom(KEGGGraph, parseKGML, getPathwayInfo, KEGGpathway2Graph, getTitle, getSubtype) |
21 |
- |
|
21 |
+importFrom(NCIgraph, is.NCIgraph) |
|
22 | 22 |
##importFrom(KEGGGraph, getKEGGedgeData) |
23 | 23 |
|
24 | 24 |
##importFrom(graph, edgeData) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/DEGraph@59257 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -19,6 +19,10 @@ import(KEGGgraph) |
19 | 19 |
## importFrom(graph,subGraph, numEdges, validGraph, isDirected, removeEdge) |
20 | 20 |
## importFrom(KEGGGraph, parseKGML, getPathwayInfo, KEGGpathway2Graph, getTitle, getSubtype) |
21 | 21 |
|
22 |
+##importFrom(KEGGGraph, getKEGGedgeData) |
|
23 |
+ |
|
24 |
+##importFrom(graph, edgeData) |
|
25 |
+ |
|
22 | 26 |
importFrom(R.methodsS3, throw) |
23 | 27 |
importFrom(Rgraphviz, layoutGraph, renderGraph) |
24 | 28 |
importFrom(rrcov, T2.test) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/DEGraph@54155 bc3139a8-67e5-0310-9ffc-ced21a209358
o Added support of NCI networks through the NCIgraph package.
o Updated the man page of the Loi2008 data.
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/DEGraph@53977 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/DEGraph@50237 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,28 @@ |
1 |
+export("AN.test", |
|
2 |
+ "BS.test", |
|
3 |
+ "getConnectedComponentList", |
|
4 |
+ "getKEGGPathways", |
|
5 |
+ "getSignedGraph", |
|
6 |
+ "graph.T2.test", |
|
7 |
+ "hyper.test", |
|
8 |
+ "laplacianFromA", |
|
9 |
+ "plotValuedGraph", |
|
10 |
+ "randomWAMGraph", |
|
11 |
+ "testOneConnectedComponent", |
|
12 |
+ "testOneGraph", |
|
13 |
+ "twoSampleFromGraph", |
|
14 |
+ "writeAdjacencyMatrix2KGML") |
|
15 |
+ |
|
16 |
+## import(R.utils) |
|
17 |
+import(graph) |
|
18 |
+import(KEGGgraph) |
|
19 |
+## importFrom(graph,subGraph, numEdges, validGraph, isDirected, removeEdge) |
|
20 |
+## importFrom(KEGGGraph, parseKGML, getPathwayInfo, KEGGpathway2Graph, getTitle, getSubtype) |
|
21 |
+ |
|
22 |
+importFrom(R.methodsS3, throw) |
|
23 |
+importFrom(Rgraphviz, layoutGraph, renderGraph) |
|
24 |
+importFrom(rrcov, T2.test) |
|
25 |
+importFrom(mvtnorm, rmvnorm) |
|
26 |
+importFrom(RBGL,connectedComp) |
|
27 |
+importFrom(lattice, level.colors) |
|
28 |
+ |