Skip to content

Commit

Permalink
Merge pull request #158 from kkaris/fix-sif-colname
Browse files Browse the repository at this point in the history
Fix column name in sif dump
  • Loading branch information
pagreene committed Jan 27, 2021
2 parents 699311d + bae09c7 commit 39691dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indra_db/util/dump_sif.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def make_dataframe(reconvert, db_content, res_pos_dict, src_count_dict,
('stmt_hash', hash),
('residue', res_pos_dict['residue'].get(hash)),
('position', res_pos_dict['position'].get(hash)),
('source_count', src_count_dict.get(hash)),
('source_counts', src_count_dict.get(hash)),
('belief', belief_dict.get(str(hash)))
])
rows.append(row)
Expand Down

0 comments on commit 39691dd

Please sign in to comment.