-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lukáš Chudíček
committed
Oct 25, 2023
1 parent
40725a0
commit f4c7222
Showing
4 changed files
with
340 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version='1.0' encoding='UTF-8' standalone='no'?> | ||
<!-- basis system of one entity; | ||
the entity only has two states - 0 & 1 | ||
the only transition is from 0 to 1 (condition being true) | ||
so for states tarting in the {(0)} set of states, the successors shall be {(1)} | ||
for states starting in the {(1)} set of states, the successors shall be {(1)} | ||
for the states starting in the {(0), (1)} set of states, the successors shall be {(1)} --> | ||
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" layout:required="false" level="3" | ||
qual:required="true" xmlns:layout="http://www.sbml.org/sbml/level3/version1/layout/version1" | ||
version="1" xmlns:qual="http://www.sbml.org/sbml/level3/version1/qual/version1"> | ||
<model metaid="_174907b7-8e1c-47f3-9a50-bb8e4c6ebd0d" id="model_id"> | ||
<qual:listOfTransitions xmlns:qual="http://www.sbml.org/sbml/level3/version1/qual/version1"> | ||
<qual:transition qual:id="the_only_variable"> | ||
<qual:listOfInputs> | ||
<qual:input qual:qualitativeSpecies="the_only_variable" | ||
qual:transitionEffect="none" | ||
qual:sign="negative" qual:id="tr_p53_in_2" /> | ||
<!-- <qual:input qual:qualitativeSpecies="renamed" qual:transitionEffect="none" | ||
qual:sign="negative" qual:id="tr_p53_in_2" /> | ||
<qual:input qual:qualitativeSpecies="renamed" qual:transitionEffect="none" | ||
qual:sign="negative" qual:id="tr_p53_in_2" /> --> | ||
</qual:listOfInputs> | ||
<qual:listOfOutputs> | ||
<qual:output qual:qualitativeSpecies="the_only_variable" | ||
qual:transitionEffect="assignmentLevel" | ||
qual:id="tr_p53_out" /> | ||
</qual:listOfOutputs> | ||
<qual:listOfFunctionTerms> | ||
<!-- 255 is the maximum accepted value; limit of u8 --> | ||
<qual:defaultTerm qual:resultLevel="3"> | ||
</qual:defaultTerm> | ||
<!-- <qual:functionTerm qual:resultLevel="0"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<eq /> | ||
<ci> renamed </ci> | ||
<cn type="integer"> 0 </cn> | ||
</apply> | ||
</math> | ||
</qual:functionTerm> | ||
<qual:functionTerm qual:resultLevel="1"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<eq /> | ||
<ci> renamed </ci> | ||
<cn type="integer"> 1 </cn> | ||
</apply> | ||
</math> | ||
</qual:functionTerm> | ||
<qual:functionTerm qual:resultLevel="2"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<eq /> | ||
<ci> renamed </ci> | ||
<cn type="integer"> 2 </cn> | ||
</apply> | ||
</math> | ||
</qual:functionTerm> --> | ||
</qual:listOfFunctionTerms> | ||
</qual:transition> | ||
</qual:listOfTransitions> | ||
</model> | ||
</sbml> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
digraph G { | ||
init__ [label="", style=invis, height=0, width=0]; | ||
init__ -> 4; | ||
0 [shape=box, label="0", style=filled, shape=box, height=0.3, width=0.3]; | ||
1 [shape=box, label="1", style=filled, shape=box, height=0.3, width=0.3]; | ||
2[label="the_only_variable_v3"]; | ||
2 -> 1 [style=filled]; | ||
2 -> 0 [style=dotted]; | ||
3[label="the_only_variable_v2"]; | ||
3 -> 2 [style=filled]; | ||
3 -> 0 [style=dotted]; | ||
4[label="the_only_variable_v1"]; | ||
4 -> 3 [style=filled]; | ||
4 -> 0 [style=dotted]; | ||
} | ||
|
||
digraph G { | ||
init__ [label="", style=invis, height=0, width=0]; | ||
init__ -> 4; | ||
0 [shape=box, label="0", style=filled, shape=box, height=0.3, width=0.3]; | ||
1 [shape=box, label="1", style=filled, shape=box, height=0.3, width=0.3]; | ||
2[label="the_only_variable_v3"]; | ||
2 -> 1 [style=filled]; | ||
2 -> 0 [style=dotted]; | ||
3[label="the_only_variable_v2"]; | ||
3 -> 2 [style=filled]; | ||
3 -> 0 [style=dotted]; | ||
4[label="the_only_variable_v1"]; | ||
4 -> 3 [style=filled]; | ||
4 -> 0 [style=dotted]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters