Skip to content

Commit

Permalink
Merge pull request #613 from schorschinho/develop
Browse files Browse the repository at this point in the history
LCModel label bug
  • Loading branch information
HJZollner authored Apr 7, 2023
2 parents d984da5 + 6079fd1 commit 5702d1d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions quantify/OspreyQuantify.m
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,9 @@
for ss = 1 : size(amplMets,3)
for AlphaMets = 1 : length(metabNames)
idx = find(strcmp(metsName.metab{mm,ss},metabNames{AlphaMets}));
if isempty(idx)
idx = find(strcmp(metsName.metab{mm,ss},'Glu_Gln'));
end
[T1_Metab_GM, T1_Metab_WM, T2_Metab_GM, T2_Metab_WM] = lookUpRelaxTimes(metsName.metab{mm,ss}{idx},Bo);
% average across GM and WM
T1_Metab = mean([T1_Metab_GM T1_Metab_WM]);
Expand Down

0 comments on commit 5702d1d

Please sign in to comment.