Skip to content

Commit

Permalink
Merge branch 'master' of vcell_cli_utils
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarupilla committed May 8, 2021
2 parents 0cfd4ca + bb806e3 commit 445d34d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vcell_cli_utils/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ def plot_and_save_curves(all_plot_curves, report_frames, result_out_dir):
fig, ax = plt.subplots(figsize=dims)
for curve, data in curve_dat.items():
df = report_frames[data['report']]
df.to_csv(os.path.join(result_out_dir, plot + '.csv'), index = False, header=True)
transpose_vcml_csv(os.path.join(result_out_dir, plot + '.csv'))
sns.lineplot(x=df[data['x']].astype(np.float), y=df[data['y']].astype(np.float), ax=ax, label=curve)
ax.set_ylabel('')
# plt.show()
Expand Down

0 comments on commit 445d34d

Please sign in to comment.