-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
ggkegg
for visualisation of all KEGG pathway diagrams (#200)
* implemented a new `color_kegg_pathway()` function using `ggkegg` to create colored KEGG pathway ggplot objects (instead of using `KEGGREST` to obtain the colored PNG files, which no longer works #169) * renamed the `visualize_hsa_KEGG` to `visualize_KEGG_diagram()` to reflect this is now able to handle KEGG pathway enrichment results from any organism * updated the `visualize_term_interactions()` and `visualize_KEGG_diagram()` functions so that they now return a list of ggplot objects (named by term ID) * updated the `get_kegg_gsets()` function to also use `ggkegg` for fetching genes per pathway data * removed unneeded dependencies: `magick`, `KEGGgraph` and `KEGGREST`
- Loading branch information
Showing
25 changed files
with
352 additions
and
724 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: pathfindR | ||
Type: Package | ||
Title: Enrichment Analysis Utilizing Active Subnetworks | ||
Version: 2.3.1.9000 | ||
Version: 2.3.1.9001 | ||
Authors@R: c(person("Ege", "Ulgen", | ||
role = c("cre", "cph"), | ||
email = "[email protected]", | ||
|
@@ -45,19 +45,18 @@ Imports: | |
ggraph, | ||
ggupset, | ||
fpc, | ||
ggkegg, | ||
grDevices, | ||
httr, | ||
igraph, | ||
R.utils, | ||
magick, | ||
msigdbr, | ||
KEGGREST, | ||
KEGGgraph, | ||
knitr | ||
Depends: R (>= 4.0), | ||
pathfindR.data (>= 2.0) | ||
Suggests: | ||
testthat (>= 2.3.2), | ||
covr, | ||
mockery | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.