Skip to content

Commit

Permalink
Merge pull request #795 from HJZollner/develop
Browse files Browse the repository at this point in the history
[BUG FIX] - Recent osp_combineCoils breaks compatibility with GE P-file loader (and presumably others) - Alex & Steve
  • Loading branch information
HJZollner authored Nov 7, 2024
2 parents dc6174f + 2c47a4a commit cd626b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion process/osp_combineCoils.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
metab_ll = MRSCont.opts.MultipleSpectra.metab(ll);
% For SPECIAL acquisitions, some of the sub-spectra need to be combined
% prior to determining the CC coefficients. We'll set a flag here.
isSpecial = strcmpi(MRSCont.raw_uncomb{metab_ll,kk}.seq(1), 'special');
isSpecial = strcmpi(MRSCont.raw_uncomb{metab_ll,kk}.seq, 'special');
MRSCont.flags.isSPECIAL = isSpecial;
% Check if reference scans exist, if so, get CC coefficients from there
if MRSCont.flags.hasRef
Expand Down
2 changes: 1 addition & 1 deletion settings/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{"Version": "2.8.2",
{"Version": "2.8.3",
"Date": "November 7, 2024",
"Description": "First digit for major releases, second digit for regular compiled releases, third digit for each commit to the develop branch. "}

0 comments on commit cd626b9

Please sign in to comment.