Skip to content

Commit

Permalink
Update table when new data is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
syntonym committed Mar 16, 2021
1 parent d6d3ed8 commit ac82628
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion menqu/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.3.0"
__version__ = "3.4.0"
8 changes: 8 additions & 0 deletions menqu/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,14 @@ def load_data_to_plots(self):

self.bargraphs.redraw()

self.table._gene_data = gene_data
self.table._condition_data = condition_data
self.table._genes = genes
self.table._conditions = conditions
self.table._samples = samples

self.table.redraw()

def save_to_menqu(self, filename):
self._get_color_data()
with open(filename, mode="wb") as f:
Expand Down

0 comments on commit ac82628

Please sign in to comment.