Skip to content

Commit

Permalink
bug fix related to 3f5a805
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Simkovic committed Jul 28, 2017
1 parent 3fcf22d commit 2c6415b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conkit/plot/contactdensity.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def _draw(self):
sorted([c.res1_seq for c in self.hierarchy] + [c.res2_seq for c in self.hierarchy])
))
)
x = np.arange(residues.min(), residues.max() + 1)
x = np.arange(residues.min(), residues.max())

ax.plot(x, dens, linestyle="solid",
color=ColorDefinitions.GENERAL, label="Kernel Density Estimate")
Expand Down

0 comments on commit 2c6415b

Please sign in to comment.