Skip to content

Commit

Permalink
Merge pull request #21 from yhoogstrate/reduced_memory_footprint
Browse files Browse the repository at this point in the history
Reduction of memory footprint
  • Loading branch information
yhoogstrate committed Mar 11, 2016
2 parents 8989229 + 6a83f1d commit 3fb94ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2016-03-11 Youri Hoogstrate

* Version 2.11.4: Reduces memory footprint for high number of samples

2015-02-08 Youri Hoogstrate

* Version 2.11.3: Fixes support for EricScript
Expand Down
2 changes: 1 addition & 1 deletion fuma/OverlapComplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def overlay_fusions(self,sparse=True,export_dir=False,args=None):
export_key = '.'.join(export_key)

self.matrix_tmp[export_key].export_to_list(export_dir,self.dataset_names,matches_this_iteration,args)
#del(self.matrix_tmp[export_key]) ## if this was once in a list to be removed, remove...
del(self.matrix_tmp[export_key]) ## if this was once in a list to be removed, remove...
else:
for export_key in [str(i+1) for i in range(len(self.datasets))]:
self.matrix_tmp[export_key].export_to_list(export_dir,self.dataset_names,matches_this_iteration,args)
Expand Down
2 changes: 1 addition & 1 deletion fuma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<http://epydoc.sourceforge.net/manual-fields.html#fields-synonyms>
"""

__version_info__ = ('2', '11', '3')
__version_info__ = ('2', '11', '4')
__version__ = '.'.join(__version_info__) if (len(__version_info__) == 3) else '.'.join(__version_info__[0:3])+"-"+__version_info__[3]
__author__ = 'Youri Hoogstrate'
__homepage__ = 'https://github.com/yhoogstrate/fuma'
Expand Down

0 comments on commit 3fb94ac

Please sign in to comment.