Skip to content
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #19 from ggirelli/dev
Browse files Browse the repository at this point in the history
Fixed bug crushing web interface due to missing str2int conversion.
  • Loading branch information
ggirelli committed Sep 11, 2019
2 parents 2fe11e8 + 4468f1d commit 47b6630
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- ...


## [2.0.3.post2] - 2019-07-24
## Fixed
- Bug crashing web interface due to missing str2int conversion.


## [2.0.3.post1] - 2019-07-24
### Fixed
Expand Down Expand Up @@ -121,6 +125,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.



[2.0.3.post2] https://github.com/ggirelli/iFISH-probe-design/releases/tag/v2.0.3.post2
[2.0.3.post1] https://github.com/ggirelli/iFISH-probe-design/releases/tag/v2.0.3.post1
[2.0.3] https://github.com/ggirelli/iFISH-probe-design/releases/tag/v2.0.3
[2.0.2] https://github.com/ggirelli/iFISH-probe-design/releases/tag/v2.0.2
Expand Down
2 changes: 1 addition & 1 deletion ifpd/sections/probe_design/views/query.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
</tr>
</thead>
<tbody>
%for rowi in range(min(query['candidate_table'].shape[0], max_probes)):
%for rowi in range(min(query['candidate_table'].shape[0], int(max_probes))):
<tr>
<td>{{rowi}}</td>
%for coli in range(query['candidate_table'].shape[1]):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
long_description = f.read()

setup(name='ifpd',
version='2.0.3.post1',
version='2.0.3.post2',
description='''An iFISH probe design pipeline, with web interface included.''',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 47b6630

Please sign in to comment.