From aaf26fbc23baf8c1f1753fcdf75f1626b69dcf01 Mon Sep 17 00:00:00 2001 From: Niklas Neubrand <38315848+niklasneubrand@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:21:31 +0200 Subject: [PATCH] increased compatibility --- arFramework3/ImportExport/arExportPEtab.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arFramework3/ImportExport/arExportPEtab.m b/arFramework3/ImportExport/arExportPEtab.m index 580ed025..b364eab8 100644 --- a/arFramework3/ImportExport/arExportPEtab.m +++ b/arFramework3/ImportExport/arExportPEtab.m @@ -67,7 +67,7 @@ function arExportPEtab(name, export_SBML) IDs.condition = arrayfun(@(d) sprintf('%s_D%d', ar.model.data(d).name, d), 1:length(ar.model(m).data), "UniformOutput", false); % collect all data-condition-specific parameter replacements - condT = table(ar.model(m).p, ar.model(m).fp', VariableNames={'modelP', 'modelFP'}); + condT = table(ar.model(m).p, ar.model(m).fp', 'VariableNames', {'modelP', 'modelFP'}); for d = 1:length(ar.model(m).data) is_modelP = ismember(ar.model(m).data(d).pold, ar.model(m).p); condT_tmp = cell2table([ar.model(m).data(d).pold(is_modelP)', ar.model(m).data(d).fp(is_modelP)]);