Variants in SimBiology debugger
3 次查看(过去 30 天)
显示 更早的评论
Hello,
Is it possible to apply variants when running the SimBiology debugger?
Thank you,
Abed
0 个评论
采纳的回答
Florian Augustin
2022-11-15
Hi Abed,
Yes, you can specify configuration set, doses and variants when starting the debugger. This is currently undocumented, but below is a full description of possible input arguments and how to start the debugger.
Best,
Florian
% startSimBiologyDebugger Open Model Debugger for SimBiology.
%
% startSimBiologyDebugger(modelObj) starts the Model Debugger app to
% debug the SimBiology model object modelObj. The model active
% configset, active variants, and active doses are used. Active
% variant values supersede the corresponding model values. Active doses
% define additions that are made to species amounts or parameter
% values.
%
% startSimBiologyDebugger(modelObj, configSetObj) uses the SimBiology
% configuration set configSetObj for debugging. The input
% configSetObj is a scalar SimBiology.ConfigSet object.
%
% startSimBiologyDebugger(modelObj, variantObj) applies the
% variant object or vector of variant objects variantObjs to the model
% before debugging.
%
% startSimBiologyDebugger(modelObj, doseObjs) uses the dose object or
% vector of dose objects doseObjs during debugging.
%
% startSimBiologyDebugger(modelObj, configSetObj, doseOrVariantObjs)
% debugs modelObj using the configuration set configSetObj and variants
% or doses doseOrVariantObjs. Specify [] as the third argument when you
% want to explicitly exclude any variant objects from debugging.
%
% startSimBiologyDebugger(modelObj, configSetObj, variantObjs, doseObjs)
% debugs modelObj using the configuration set configSetObj, variants
% variantsObjs, and doses doseObjs.
%
%
% Example:
%
% % Create a SimBiology model from an SBML file.
% m = sbmlimport('lotka');
%
% % Open the Debugger app to troubleshoot the model.
% startSimBiologyDebugger(m);
更多回答(0 个)
社区
更多回答在 SimBiology Community
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulate Responses to Biological Variability and Doses 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!