Skip to content

Commit

Permalink
fixed bug in generating pdf output
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Sep 23, 2021
1 parent b987096 commit 24c813c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhdx/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def _make_peptide_subplots(self, indices, **fig_kwargs):
axes_iter = iter(axes)
for i, ax in zip(indices, axes_iter):
ax.plot(self.fit_timepoints, self.d_calc[i], color='r')
ax.scatter(self.fit_result.data_obj.timepoints, self.fit_result.data_obj.d_exp[i], color='k')
ax.scatter(self.fit_result.data_obj.timepoints, self.fit_result.data_obj.d_exp.to_numpy()[i], color='k')

start = self.fit_result.data_obj.coverage.data['_start'][i]
end = self.fit_result.data_obj.coverage.data['_end'][i]
Expand Down

0 comments on commit 24c813c

Please sign in to comment.