Skip to content

Commit

Permalink
wrong type for distance_bound
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Simkovic committed Dec 9, 2016
1 parent b620c19 commit 5826a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conkit/io/PsicovIO.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def read(self, f_handle, f_id="psicov"):

elif line[0].isdigit():
_contact = Contact(int(line[0]), int(line[1]), float(line[4]),
distance_bound=(float(line[2]), float(line[3])))
distance_bound=(int(line[2]), int(line[3])))
_map.add(_contact)

hierarchy.method = 'Contact map predicted using PSICOV'
Expand Down

0 comments on commit 5826a2e

Please sign in to comment.