Variants in SimBiology debugger

조회 수: 4 (최근 30일)
Abed Alnaif
Abed Alnaif 2022년 11월 15일
댓글: Abed Alnaif 2022년 11월 17일
Hello,
Is it possible to apply variants when running the SimBiology debugger?
Thank you,
Abed

채택된 답변

Florian Augustin
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 CenterFile Exchange에서 Build Models에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by