Skip to content

Commit

Permalink
v. 0.9.65
Browse files Browse the repository at this point in the history
  • Loading branch information
ludwigc committed Dec 16, 2024
1 parent b761677 commit 0f7e9a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion metabolabpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = 'Christian Ludwig ([email protected])'
__credits__ = 'Christian Ludwig ([email protected])'
__version__ = '0.9.64'
__version__ = '0.9.65'
__license__ = 'GPLv3'
2 changes: 0 additions & 2 deletions metabolabpy/nmr/nmrData.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,6 @@ def autophase1d_bl(self, upper_min=10.0, lower_max=-0.5, ref_spc=[], run_compare
if len(ref_spc) == 0:
return

print('autophase1d_bl!!!!!!!')
phase = [0.0, 0.0]
#self.autophase1d()
pars0 = [self.proc.ph0[0], self.proc.ph1[0]]
Expand Down Expand Up @@ -773,7 +772,6 @@ def invert_spc(self, width=128, num_windows=1024, max_peaks=1000, noise_fact=20)
min_point = 131072 - self.ppm2points(5.26)
max_point = 131072 - self.ppm2points(4.26)
self.spc[0][min_point:max_point] = np.zeros(max_point - min_point)
print(f'max_point: {max_point}, min_point: {min_point}, max_point - min_point: {max_point - min_point}')
result = False
if np.max(np.abs(self.spc[0].real)) != np.max(self.spc[0].real):
result = True
Expand Down

0 comments on commit 0f7e9a5

Please sign in to comment.