Skip to content

Commit

Permalink
Fixes bug in data import (wrong parent_id)
Browse files Browse the repository at this point in the history
Bumps version
  • Loading branch information
robinandeer committed Jun 2, 2014
1 parent 6a9a5bd commit 593baf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chanjo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with_statement

__title__ = 'chanjo'
__version__ = '1.1.0'
__version__ = '1.1.1'
__author__ = 'Robin Andeer'
__email__ = '[email protected]'
__url__ = 'http://www.chanjo.co/'
Expand Down
2 changes: 1 addition & 1 deletion chanjo/stages.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def build_interval_data(stdin, db, sample_id, group_id):
# Create a new intervals data entry
db.add(db.create(
'interval_data',
parent_id=interval_data[0],
parent_id=interval_data[3],
sample_id=sample_id,
group_id=group_id,
coverage=float(interval_data[5]),
Expand Down

0 comments on commit 593baf2

Please sign in to comment.