From 65357c80e929edf0452932a19d30dc99457defd6 Mon Sep 17 00:00:00 2001 From: Aaron Gudmundson Date: Mon, 8 Jul 2024 13:36:47 -0400 Subject: [PATCH] PSD name was changed - adding in new name as an option --- spec2nii/GE/ge_pfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec2nii/GE/ge_pfile.py b/spec2nii/GE/ge_pfile.py index 77a128f..da5189b 100644 --- a/spec2nii/GE/ge_pfile.py +++ b/spec2nii/GE/ge_pfile.py @@ -107,7 +107,7 @@ def _process_svs_pfile(pfile): data, meta, dwelltime, fname_suffix = _process_slaser(pfile) elif psd in ('jpress', 'jpress_ac', 'gaba', 'probe-p-mega_rml', 'repress7'): data, meta, dwelltime, fname_suffix = _process_gaba(pfile) - elif psd in ('hbcd'): # ATG + elif psd in ('hbcd', 'hbcd1', 'hbcd2'): # ATG data, meta, dwelltime, fname_suffix = _process_hbcd(pfile) # ATG else: raise UnsupportedPulseSequenceError(f'Unrecognised sequence {psd}.')