Skip to content

Commit

Permalink
increased compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasneubrand committed Jun 12, 2024
1 parent 9d46c52 commit aaf26fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arFramework3/ImportExport/arExportPEtab.m
Original file line number Diff line number Diff line change
Expand Up @@ -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)]);
Expand Down

0 comments on commit aaf26fb

Please sign in to comment.