Skip to content

Commit

Permalink
Fixed last residue not being added
Browse files Browse the repository at this point in the history
  • Loading branch information
AldovdN committed Jul 27, 2022
1 parent 68daa5b commit e73b10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cport/modules/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def get_residue_range(result_dic):
active_reslist += [x for x in result_dic[pred]["active"]]

reslist = passive_reslist + active_reslist
absolute_range = list(range(min(reslist), max(reslist)))
absolute_range = list(range(min(reslist), max(reslist)+1))
return absolute_range


Expand Down

0 comments on commit e73b10a

Please sign in to comment.