Skip to content
This repository has been archived by the owner on Oct 18, 2021. It is now read-only.

Commit

Permalink
Fixed crash when 2D mask folder is not provided.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggirelli committed Aug 22, 2018
1 parent 2c03bf9 commit 85e146d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `tiff_findoof`
+ Gradient magnitude mode now default, switch to intensity sum mode with `-S` or `--intensity-sum`.

### Fixed
- `gpseq_anim`
+ Crash when 2D mask folder is not provided.

### Removed
- `gpseq_fromfish`
+ Removed `com` (center of mass) column from the output dot table. Now the same information is available in the nuclei table (although the CoM coordinates are box-wise, and not image-wise).
Expand Down
2 changes: 1 addition & 1 deletion pygpseq/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __setattr__(self, name, value):

# kwargs automatic update
_const.KWARGS_TYPELIST = (type([]), type(()), type(0), type(''),
type(True), type({}), type(0.0))
type(True), type({}), type(0.0), type(None))
_const.KWARGS_AVOIDLIST = ('conds')

# Step-related main() class parameters
Expand Down

0 comments on commit 85e146d

Please sign in to comment.