Variants in SimBiology debugger
조회 수: 4 (최근 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!