Load the spant package:
Get the path to a data file included with spant:
Read the file and save to the workspace as mrs_data
:
Output some basic information about the data:
print(mrs_data)
#> MRS Data Parameters
#> ----------------------------------
#> Trans. freq (MHz) : 127.7861
#> FID data points : 1024
#> X,Y,Z dimensions : 1x1x1
#> Dynamics : 1
#> Coils : 1
#> Voxel resolution (mm) : 20x20x20
#> Sampling frequency (Hz) : 2000
#> Repetition time (s) : 2
#> Reference freq. (ppm) : 4.65
#> Nucleus : 1H
#> Spectral domain : FALSE
#> Number of transients : 128
#> Echo time (s) : 0.03
#> Manufacturer : Philips
Plot the spectral region between 5 and 0.5 ppm:
Apply a HSVD filter to the residual water region and align the spectrum to the tNAA resonance at 2.01 ppm:
Simulate a typical basis set for short TE brain analysis, print some basic information and plot:
basis <- sim_basis_1h_brain_press(mrs_proc)
print(basis)
#> Basis set parameters
#> -------------------------------
#> Trans. freq (MHz) : 127.8
#> Data points : 1024
#> Sampling frequency (Hz) : 2000
#> Elements : 27
#>
#> Names
#> -------------------------------
#> -CrCH2,Ala,Asp,Cr,GABA,Glc,Gln,
#> GSH,Glu,GPC,Ins,Lac,Lip09,
#> Lip13a,Lip13b,Lip20,MM09,MM12,
#> MM14,MM17,MM20,NAA,NAAG,PCh,
#> PCr,sIns,Tau
stackplot(basis, xlim = c(4, 0.5), labels = basis$names, y_offset = 5)
Perform ABfit analysis of the processed data
(mrs_proc
):
Plot the fit result:
Unscaled amplitudes, CRLB error estimates and other useful fitting
diagnostics, such as SNR, are given in the fit_res
results
table:
fit_res$res_tab
#> X Y Z Dynamic Coil X.CrCH2 Ala Asp Cr
#> 1 1 1 1 1 1 0 8.133857e-06 3.547055e-05 4.026723e-05
#> GABA Glc Gln GSH Glu GPC
#> 1 1.697282e-05 2.446764e-06 3.036203e-06 2.228052e-05 6.50323e-05 1.606707e-05
#> Ins Lac Lip09 Lip13a Lip13b Lip20 MM09
#> 1 5.906174e-05 5.802217e-06 2.387702e-05 2.670625e-06 0 0 9.630804e-06
#> MM12 MM14 MM17 MM20 NAA NAAG
#> 1 6.511376e-06 2.60385e-05 2.238407e-05 9.203752e-05 6.01111e-05 1.536524e-05
#> PCh PCr sIns Tau tNAA tCr tCho
#> 1 0 2.101913e-05 6.504118e-06 0 7.547634e-05 6.128637e-05 1.606707e-05
#> Glx tLM09 tLM13 tLM20 X.CrCH2.sd Ala.sd
#> 1 6.80685e-05 3.350782e-05 3.52205e-05 9.203752e-05 2.386863e-06 4.343937e-06
#> Asp.sd Cr.sd GABA.sd Glc.sd Gln.sd GSH.sd
#> 1 9.235336e-06 3.688984e-06 4.574432e-06 4.421688e-06 5.083007e-06 2.020429e-06
#> Glu.sd GPC.sd Ins.sd Lac.sd Lip09.sd Lip13a.sd
#> 1 5.082983e-06 2.602651e-06 2.09323e-06 5.301709e-06 4.11926e-06 1.328305e-05
#> Lip13b.sd Lip20.sd MM09.sd MM12.sd MM14.sd MM17.sd
#> 1 6.474473e-06 7.510914e-06 3.827557e-06 4.594031e-06 7.223431e-06 3.811304e-06
#> MM20.sd NAA.sd NAAG.sd PCh.sd PCr.sd sIns.sd
#> 1 8.595859e-06 1.017712e-06 1.208982e-06 2.236872e-06 3.084582e-06 7.240075e-07
#> Tau.sd tNAA.sd tCr.sd tCho.sd Glx.sd tLM09.sd
#> 1 3.759962e-06 7.031387e-07 5.890483e-07 2.110664e-07 3.169663e-06 1.006795e-06
#> tLM13.sd tLM20.sd phase lw shift asym
#> 1 1.573148e-06 3.016812e-06 11.10959 5.023681 -0.003765048 0.1771062
#> res.deviance res.niter res.info
#> 1 7.307684e-05 28 2
#> res.message bl_ed_pppm
#> 1 Relative error between `par' and the solution is at most `ptol'. 2.364083
#> max_bl_flex_used full_res spec_resid fit_pts ppm_range SNR SRR
#> 1 FALSE 7.75438e-05 7.307684e-05 497 3.8 62.71686 51.33275
#> FQN tNAA_lw tCr_lw tCho_lw auto_bl_crit_7 auto_bl_crit_5.901
#> 1 1.492724 0.04562445 0.05189504 0.0543824 -8.900349 -8.944159
#> auto_bl_crit_4.942 auto_bl_crit_4.12 auto_bl_crit_3.425 auto_bl_crit_2.844
#> 1 -8.977354 -9.000064 -9.013366 -9.020549
#> auto_bl_crit_2.364 auto_bl_crit_1.969 auto_bl_crit_1.647 auto_bl_crit_1.384
#> 1 -9.024177 -9.023461 -9.009853 -8.958654
#> auto_bl_crit_1.17 auto_bl_crit_0.997 auto_bl_crit_0.856 auto_bl_crit_0.743
#> 1 -8.844272 -8.690746 -8.562634 -8.485474
#> auto_bl_crit_0.654 auto_bl_crit_0.593 auto_bl_crit_0.558 auto_bl_crit_0.54
#> 1 -8.447139 -8.430176 -8.423056 -8.420088
#> auto_bl_crit_0.532 auto_bl_crit_0.529
#> 1 -8.418842 -8.418315
Note that signal names appended with “.sd” are the CRLB estimates for the uncertainty (standard deviation) in the metabolite quantity estimate. e.g. to calculate the percentage s.d. for tNAA:
Spectral SNR:
Linewidth of the tNAA resonance in PPM:
Amplitude estimates measured by the fitting method are essentially arbitrary unless scaled to a known reference signal. The simplest approach for proton-MRS is to simply divide all metabolite values by total-creatine:
fit_res_tcr_sc <- scale_amp_ratio(fit_res, "tCr")
amps <- fit_amps(fit_res_tcr_sc)
print(t(amps))
#> [,1]
#> X.CrCH2 0.00000000
#> Ala 0.13271886
#> Asp 0.57876737
#> Cr 0.65703413
#> GABA 0.27694291
#> Glc 0.03992347
#> Gln 0.04954125
#> GSH 0.36354772
#> Glu 1.06112179
#> GPC 0.26216392
#> Ins 0.96370116
#> Lac 0.09467386
#> Lip09 0.38959753
#> Lip13a 0.04357617
#> Lip13b 0.00000000
#> Lip20 0.00000000
#> MM09 0.15714432
#> MM12 0.10624510
#> MM14 0.42486615
#> MM17 0.36523740
#> MM20 1.50176178
#> NAA 0.98082340
#> NAAG 0.25071218
#> PCh 0.00000000
#> PCr 0.34296587
#> sIns 0.10612667
#> Tau 0.00000000
#> tNAA 1.23153557
#> tCr 1.00000000
#> tCho 0.26216392
#> Glx 1.11066304
#> tLM09 0.54674184
#> tLM13 0.57468742
#> tLM20 1.50176178
A more sophisticated approach to scaling metabolite values involves the use of a separate water-reference acquisition - which can be imported in the standard way:
fname_wref <- system.file("extdata", "philips_spar_sdat_W.SDAT", package = "spant")
mrs_data_wref <- read_mrs(fname_wref)
The following code assumes the voxel contains 100% white matter tissue and scales the metabolite values into molal (mM) units (mol / kg tissue water) based on the method described by Gasparovic et al MRM 2006 55(6):1219-26:
p_vols <- c(WM = 100, GM = 0, CSF = 0)
TE = 0.03
TR = 2
fit_res_molal <- scale_amp_molal_pvc(fit_res, mrs_data_wref, p_vols, TE, TR)
fit_res_molal$res_tab$tNAA
#> [1] 12.59788
An alternative method scales the metabolite values into molar (mM) units (mol / Litre of tissue) based on assumptions outlined in the LCModel manual and references therein (section 10.2). This approach may be preferred when comparing results to those obtained LCModel or TARQUIN.
Note, while “absolute” units are attractive, a large number of assumptions about metabolite and water relaxation rates are necessary to arrive at these mM estimates. If you’re not confident at being able to justify these assumptions, scaling to a metabolite reference (eg tCr as above) is going to be a better option in most cases. Simple metabolite referenced ratios also have the benefit of being more reproducible due to the simplicity of the approach.