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

Commit

Permalink
general cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 29, 2018
1 parent f1757f4 commit c1869a7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ To compile the documentation, run

sphinx-build . _build

Notes
=====
To view the sphinx inventory of DryMass, run

python -m sphinx.ext.intersphinx 'http://shapeout.readthedocs.io/en/develop/objects.inv'
4 changes: 2 additions & 2 deletions docs/sec_rtdc_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ well as its aspect ratio are often used for filtering.
channel axis, exclusion of objects elongated along the channel axis.


Brightness within image
-----------------------
Brightness within contour
-------------------------
Quantifying the brightness values within the image contour yields
information on object properties such as homogeneity or density.
For instance, it has been shown that the quantities "mean brightness" and
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
],
},
install_requires=["appdirs",
"dclab>=0.7.0",
"dclab>=0.8.0",
"fcswrite>=0.4.1",
"h5py",
"imageio>=2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion shapeout/gui/controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def OnChangeFilter(self, e=None, updp=True, draw=True):
# identify controls via their name correspondence in the cfg
for c in ctrls:
name = c.GetName()
if samdict.has_key(name):
if name in samdict:
# box filters
if isinstance(c, wx._controls.CheckBox):
newfilt[name] = bool(c.GetValue())
Expand Down

0 comments on commit c1869a7

Please sign in to comment.