Skip to content

Commit

Permalink
fixed parsing parameter file
Browse files Browse the repository at this point in the history
  • Loading branch information
jgould committed Feb 21, 2019
1 parent bb52e6e commit d796a0b
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 @@ -24,7 +24,7 @@

setuptools.setup(
name='wot',
version='0.5.1',
version='0.5.2',
description="Optimal transport for time-course single cell data",
author="WOT Team",
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion wot/ot/initializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def parse_per_timepoint_configuration(config):


def parse_parameter_file(path):
df = pd.read_csv(path, engine='python', delimiter=None, header=None)
df = pd.read_csv(path, engine='python', sep=None, header=None)
# two column file containing parameter and value
result = {}
for i in range(len(df)):
Expand Down

0 comments on commit d796a0b

Please sign in to comment.