Difference between revisions of "Hnca.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(See also)
(Sync syntax/arguments/outputs with current Spinach source)
Line 1: Line 1:
 
{{DISPLAYTITLE:hnca.m}} __NOTOC__
 
{{DISPLAYTITLE:hnca.m}} __NOTOC__
 +
 
Protein-specific HNCA experiment (Figure 7.31a of "Protein NMR Spectroscopy", 2nd edition) using pre-set values of J-couplings used in the magnetisation transfer stages. The simulation uses the bidirectional propagation method described in (http://dx.doi.org/10.1016/j.jmr.2014.04.002). The sequence is hard-wired to work on 1H,13C,15N proteins and uses PDB labels to select spins that will be affected by otherwise ideal pulses.
 
Protein-specific HNCA experiment (Figure 7.31a of "Protein NMR Spectroscopy", 2nd edition) using pre-set values of J-couplings used in the magnetisation transfer stages. The simulation uses the bidirectional propagation method described in (http://dx.doi.org/10.1016/j.jmr.2014.04.002). The sequence is hard-wired to work on 1H,13C,15N proteins and uses PDB labels to select spins that will be affected by otherwise ideal pulses.
  
 
==Syntax==
 
==Syntax==
  
    fid=hnca(spin_system,parameters,H,R,K)
+
fid=hnca(spin_system,parameters,H,R,K)
  
 
==Arguments==
 
==Arguments==
  
    parameters.npoints    - a vector of three integers giving the
+
parameters.npoints    - a vector of three integers giving the
 
                             number of points in the three temporal
 
                             number of points in the three temporal
 
                             dimensions, ordered as [t1 t2 t3].
 
                             dimensions, ordered as [t1 t2 t3].
Line 24: Line 25:
 
==Outputs==
 
==Outputs==
  
    fid - three-dimensional free induction decay
+
fid - three-dimensional free induction decay
 +
 
 +
Note: spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in
 +
      sys.labels for this sequence to work properly.
 +
 
 +
TODO: whoever understands how phase cycles and quadratures work in
 +
      3D NMR is welcome to add a phase-sensitive version.
 +
 
 +
m.walker@soton.ac.uk
 +
ilya.kuprov@weizmann.ac.il
  
 
==Examples==
 
==Examples==
 +
 
HNCA simulation (3D and three projections) of GB1 protein (examples/nmr_proteins/hnca_gb1.m):
 
HNCA simulation (3D and three projections) of GB1 protein (examples/nmr_proteins/hnca_gb1.m):
  
Line 32: Line 43:
  
 
==Notes==
 
==Notes==
 +
 
# Dimensions: F1 is 1H, F2 is 13C, F3 is 15N.
 
# Dimensions: F1 is 1H, F2 is 13C, F3 is 15N.
 
# Spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in sys.labels for this sequence to work properly.
 
# Spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in sys.labels for this sequence to work properly.
Line 37: Line 49:
  
 
==See also==
 
==See also==
 +
 
[[Built-in experiments]], [[Protein NMR simulations]]
 
[[Built-in experiments]], [[Protein NMR simulations]]
  
  
 
''Version 2.5, authors: [[Matt Walker]], [[Ilya Kuprov]]''
 
''Version 2.5, authors: [[Matt Walker]], [[Ilya Kuprov]]''

Revision as of 15:05, 5 April 2026


Protein-specific HNCA experiment (Figure 7.31a of "Protein NMR Spectroscopy", 2nd edition) using pre-set values of J-couplings used in the magnetisation transfer stages. The simulation uses the bidirectional propagation method described in (http://dx.doi.org/10.1016/j.jmr.2014.04.002). The sequence is hard-wired to work on 1H,13C,15N proteins and uses PDB labels to select spins that will be affected by otherwise ideal pulses.

Syntax

fid=hnca(spin_system,parameters,H,R,K)

Arguments

parameters.npoints - a vector of three integers giving the

                            number of points in the three temporal
                            dimensions, ordered as [t1 t2 t3].

   parameters.sweep       - a vector of three real numbers giving
                            the sweep widths in the three frequen-
                            cy dimensions, ordered as [f1 f2 f3].

   H   - Hamiltonian matrix, received from context function

   R   - relaxation superoperator, received from context function

   K   - kinetics superoperator, received from context function

Outputs

fid - three-dimensional free induction decay

Note: spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in
      sys.labels for this sequence to work properly.
TODO: whoever understands how phase cycles and quadratures work in
      3D NMR is welcome to add a phase-sensitive version.
m.walker@soton.ac.uk
ilya.kuprov@weizmann.ac.il

Examples

HNCA simulation (3D and three projections) of GB1 protein (examples/nmr_proteins/hnca_gb1.m):

Hnca gb1.png

Notes

  1. Dimensions: F1 is 1H, F2 is 13C, F3 is 15N.
  2. Spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in sys.labels for this sequence to work properly.
  3. 15N-1H J-coupling is hard-coded to 92 Hz. Edit the code to change.

See also

Built-in experiments, Protein NMR simulations


Version 2.5, authors: Matt Walker, Ilya Kuprov