Skip to content
Snippets Groups Projects
Commit a1e8e701 authored by Holger Brandl's avatar Holger Brandl
Browse files

fixed: duplicated pathways

parent 8da587a3
No related branches found
No related tags found
No related merge requests found
......@@ -519,7 +519,7 @@ l_ply(term_barplot_files$file, function(pngFile){ cat(paste0("<img src='", pngFi
keggPathways <- sigEnrResults %>%
filter(Category=="KEGG_PATHWAY") %>%
separate(Term, c('kegg_pathway_id', 'pathway_description'), sep="\\:", remove=F) %>%
with(kegg_pathway_id) %>% ac()
with(kegg_pathway_id) %>% ac() %>% unique()
require(pathview)
require(png)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment