tutorials science

Automatic phase correction of NMR spectra

This notebook demonstrates automatic phase correction algorithms implemented for nmrglue. Two standard algorithms are implemented:

  • ACME algorithm by Chen Li et al. Journal of Magnetic Resonance 158 (2002) 164-168

  • Naive peak minima minimisation

The outputs for the two algorithms are shown below. Automatic phase correction can be used through the addition of an autops function to the proc_base set alongside the algorithm name to employ for scoring of phase. Custom algorithms can be provided via the same parameter.

python
import nmrglue as ng

dic, data = ng.bruker.read("/Users/mxf793/Data/THPNH/Extract/1d/103/")
data = ng.bruker.remove_digital_filter(dic, data)
python
%matplotlib inline
python
import matplotlib.pyplot as plt
plt.figure(figsize=(10,4))
plt.plot(data)
python
/usr/local/lib/python2.7/site-packages/numpy/core/numeric.py:462: ComplexWarning: Casting complex values to real discards the imaginary part
  return array(a, dtype, copy=False, order=order)





[<matplotlib.lines.Line2D at 0x10cc7d090>]

png

python
data_fft = ng.proc_base.fft(data)
plt.figure(figsize=(10,4))
plt.plot(data_fft)
python
[<matplotlib.lines.Line2D at 0x10d0588d0>]

png

python
data_pc_pm = ng.proc_base.autops(data_fft,'peak_minima')
python
Optimization terminated successfully.
         Current function value: 0.000037
         Iterations: 90
         Function evaluations: 165
python
plt.figure(figsize=(10,4))
plt.plot(data_pc_pm)
python
[<matplotlib.lines.Line2D at 0x10d2e6710>]

png

python
data_pc_acme = ng.proc_base.autops(data_fft,'acme')
python
Warning: Maximum number of function evaluations has been exceeded.
python
plt.figure(figsize=(10,4))
plt.plot(data_pc_acme)
python
[<matplotlib.lines.Line2D at 0x10d4db850>]

png

Tiny games for your BBC micro:bit.

To support developers in [[ countryRegion ]] I give a [[ localizedDiscount[couponCode] ]]% discount on all books and courses.

[[ activeDiscount.description ]] I'm giving a [[ activeDiscount.discount ]]% discount on all books and courses.