git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/branches/RELEASE_3_5/madman/Rpacks/DEsubs@131511 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,12 +1,11 @@ |
1 | 1 |
Package: DEsubs |
2 |
-Version: 1.2.1 |
|
3 |
-Date: 2015-07-19 |
|
2 |
+Version: 1.2.2 |
|
3 |
+Date: 2017-07-23 |
|
4 | 4 |
Title: DEsubs: an R package for flexible identification of |
5 | 5 |
differentially expressed subpathways using RNA-seq expression |
6 | 6 |
experiments |
7 | 7 |
Author: Aristidis G. Vrahatis and Panos Balomenos |
8 |
-Maintainer: Aristidis G. Vrahatis <agvrahatis@upatras.gr> and Panos |
|
9 |
- Balomenos <balomenos@upatras.gr> |
|
8 |
+Maintainer: Aristidis G. Vrahatis <agvrahatis@upatras.gr>, Panos Balomenos <balomenos@upatras.gr> |
|
10 | 9 |
Description: DEsubs is a network-based systems biology package that |
11 | 10 |
extracts disease-perturbed subpathways within a pathway network |
12 | 11 |
as recorded by RNA-seq experiments. It contains an extensive |
... | ... |
@@ -315,7 +315,8 @@ subpathwayTypes <- function(grouping='all') |
315 | 315 |
p <- gsub('-cliques', '', method) |
316 | 316 |
k <- as.numeric(gsub('component.', '', p)) |
317 | 317 |
|
318 |
- g <- as_graphnel( gi ) |
|
318 |
+ # g <- as_graphnel( gi ) |
|
319 |
+ g <- igraph.to.graphNEL( gi ) |
|
319 | 320 |
ksubs <- kCliques(ugraph(g))[paste0(k, '-cliques')][[1]] |
320 | 321 |
ksubs <- lapply(ksubs, function(x) { matrix(x, nrow=1) } ) |
321 | 322 |
|