Skip to content

Commit

Permalink
Merge pull request #31 from yhoogstrate/bugfix
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
yhoogstrate committed Mar 16, 2016
2 parents be1b465 + 92669a6 commit e93667e
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-16 Youri Hoogstrate

* Version 2.12.3: Bugfix.

2016-03-16 Youri Hoogstrate

* Version 2.12.2: Removal of unused 'sequence' and 'transition
Expand Down
2 changes: 1 addition & 1 deletion fuma/FusionDetectionExperiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def export_to_list(self,fh,order,blacklist,args):

fh.write("\t")
if(i > -1):
for loc in fusion.locations:
for loc in fusion.locations():
if(loc['dataset'] == dataset):
strdata.append(str(loc['id'])+"=chr"+loc['right'][0]+':'+str(loc['right'][1])+'-chr'+loc['left'][0]+':'+str(loc['left'][1]))
fh.write(",".join(sorted(strdata)))
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', '12', '2')
__version_info__ = ('2', '12', '3')
__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 e93667e

Please sign in to comment.