Skip to content

Commit

Permalink
Fix outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
asistradition committed Apr 12, 2024
1 parent c45a0ee commit 27bfecb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion inferelator_velocity/utils/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@
try:
from scanpy.neighbors import _compute_connectivities_umap as _connect_umap
except ImportError:
from scanpy.neighbors._connectivity import umap as _connect_umap
from scanpy.neighbors._connectivity import umap as _scanpy_connect

def _connect_umap(i, d, **kwargs):

return d, _scanpy_connect(
i, d, **kwargs
)


def compute_neighbors(
Expand Down

0 comments on commit 27bfecb

Please sign in to comment.