Skip to content

Commit d7cc1d8

Browse files
committed
changed residue removal with improper bars
1 parent adbad96 commit d7cc1d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

basicrta/gibbs.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ def plot_protein(self, **kwargs):
108108
print('run `collect_residues` then rerun')
109109

110110
taus, bars = self.get_taus()
111-
exclude_inds = np.where(bars<0)[1]
111+
#exclude_inds = np.where(bars<0)[1]
112112

113-
residues = list(self.residues.keys())
114-
residues = [res.split('/')[-1] for res in residues]
113+
#residues = list(self.residues.keys())
114+
#residues = [res.split('/')[-1] for res in residues]
115115

116-
np.delete(taus, exclude_inds)
117-
np.delete(bars, exclude_inds)
118-
np.delete(residues, exclude_inds)
116+
#np.delete(taus, exclude_inds)
117+
#np.delete(bars, exclude_inds)
118+
#np.delete(residues, exclude_inds)
119119

120120
plot_protein(residues, taus, bars, self.prot, **kwargs)
121121

0 commit comments

Comments
 (0)