Skip to content

Commit

Permalink
Fixes for issues 21 and 22
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuSetty committed Dec 18, 2019
1 parent 73aa8fd commit 35d159b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
install_requires=[
'numpy>=1.14.2',
'pandas>=0.22.0',
'scipy>=1.0.1',
'scipy>=1.3',
'networkx>=2.1',
'scikit-learn',
'joblib',
Expand Down
2 changes: 1 addition & 1 deletion src/palantir/presults.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def load(cls, pkl_file):

# Set up object
presults = cls(data['_pseudotime'], data['_entropy'],
data['_branch_prob'], data['_waypoints'])
data['_branch_probs'], data['_waypoints'])
return presults

def save(self, pkl_file: str):
Expand Down

0 comments on commit 35d159b

Please sign in to comment.