Skip to content

Commit

Permalink
Merge pull request #458 from plotly/fix-clustergram-reordering
Browse files Browse the repository at this point in the history
Fix Clustergram reordering of row and column indices.
  • Loading branch information
mkcor authored Jan 7, 2020
2 parents 4ae055b + e43023f commit 1ba0536
Show file tree
Hide file tree
Showing 9 changed files with 329 additions and 345 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.4.6] - 2020-01-07
### Fixed
* [#458](https://github.com/plotly/dash-bio/pull/458) Fixed reordering bug of
row and column indices following clustering in Clustergram component.

## [0.4.5] - 2019-11-26
* [#452](https://github.com/plotly/dash-bio/pull/452) Fix issue finding CDN resources when using `serve_locally=False`

Expand Down
2 changes: 1 addition & 1 deletion dash_bio/FornaContainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class FornaContainer(Component):
- allowPanningAndZooming (boolean; default True): Allow users to zoom in and pan the display. If this is enabled,
then pressing the 'c' key on the keyboard will center the view."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, sequences=Component.UNDEFINED, nodeFillColor=Component.UNDEFINED, colorScheme=Component.UNDEFINED, customColors=Component.UNDEFINED, allowPanningAndZooming=Component.UNDEFINED, labelInterval=Component.UNDEFINED, **kwargs):
def __init__(self, id=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, sequences=Component.UNDEFINED, nodeFillColor=Component.UNDEFINED, colorScheme=Component.UNDEFINED, customColors=Component.UNDEFINED, allowPanningAndZooming=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'height', 'width', 'sequences', 'nodeFillColor', 'colorScheme', 'customColors', 'allowPanningAndZooming']
self._type = 'FornaContainer'
self._namespace = 'dash_bio'
Expand Down
2 changes: 1 addition & 1 deletion dash_bio/bundle.js

Large diffs are not rendered by default.

Loading

0 comments on commit 1ba0536

Please sign in to comment.