Skip to content

Commit

Permalink
Fix filter_graph arg
Browse files Browse the repository at this point in the history
  • Loading branch information
bschilder committed Jan 26, 2024
1 parent 59cf10c commit 6aafb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/make_igraph_object.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ make_igraph_object <- function(phenos,
terms = phenos$hpo_id,
to = "tbl_graph")
g <- KGExplorer::filter_graph(g,
filters = list(name=phenos$hpo_id))
node_filters = list(name=phenos$hpo_id))
pcols <- intersect(names(phenos), names(cols))
gcols <- KGExplorer::get_graph_colnames(g)
cols <- setdiff(pcols, gcols)
Expand Down

0 comments on commit 6aafb4e

Please sign in to comment.