Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Commit

Permalink
bump dclab version, add line breals in analysis output
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Aug 7, 2019
1 parent 920f575 commit 0189bc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
0.9.6
- enh: improved support for .tdms file format (dclab 0.14.3)
- fix: remove nan/inf values before performing (g)lmm analysis (#248)
- docs: request citation of Herbig2018 when performing (g)lmm analysis
0.9.5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
],
},
install_requires=["appdirs",
"dclab[all]>=0.14.1",
"dclab[all]>=0.14.3",
"fcswrite>=0.4.1",
"h5py>=2.8.0",
"imageio>=2.3.0,<2.5.0",
Expand Down
2 changes: 1 addition & 1 deletion shapeout/gui/controls_analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def OnApply(self, e=None):
]

with io.open(outf, "w") as fd:
fd.writelines(citreq)
fd.writelines([ll + "\r\n" for ll in citreq])
fd.writelines(result["Full Summary"].replace("\n", "\r\n"))

webbrowser.open(fd.name)
Expand Down

0 comments on commit 0189bc5

Please sign in to comment.