pymetadata 0.5.1__py3-none-any.whl → 0.5.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pymetadata might be problematic. Click here for more details.
- pymetadata/__init__.py +1 -1
- pymetadata/examples/cache_path_example.py +0 -1
- pymetadata/identifiers/registry.py +11 -33
- pymetadata/metadata/eco.py +1246 -1340
- pymetadata/metadata/kisao.py +83 -26
- pymetadata/metadata/sbo.py +131 -378
- pymetadata/ontologies/ontology.py +6 -5
- pymetadata/resources/chebi_webservice_wsdl.xml +1 -1
- pymetadata/resources/templates/ontology_enum.pytemplate +0 -2
- pymetadata/unichem.py +2 -2
- pymetadata-0.5.3.dist-info/METADATA +115 -0
- {pymetadata-0.5.1.dist-info → pymetadata-0.5.3.dist-info}/RECORD +14 -14
- {pymetadata-0.5.1.dist-info → pymetadata-0.5.3.dist-info}/licenses/LICENSE +1 -1
- pymetadata-0.5.1.dist-info/METADATA +0 -154
- {pymetadata-0.5.1.dist-info → pymetadata-0.5.3.dist-info}/WHEEL +0 -0
pymetadata/metadata/sbo.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"""SBO ontology."""
|
|
2
2
|
|
|
3
|
+
from typing import Union, Optional
|
|
3
4
|
from enum import Enum
|
|
4
|
-
from typing import Optional, Union
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
SBOType = Union[str,
|
|
7
|
+
SBOType = Union[str, 'SBO']
|
|
8
8
|
|
|
9
9
|
_terms = {
|
|
10
10
|
"SBO_0000000": "systems biology representation",
|
|
@@ -820,9 +820,7 @@ class SBO(str, Enum):
|
|
|
820
820
|
|
|
821
821
|
# enzymatic rate law for irreversible non-modulated non-interacting unireactant enzymes
|
|
822
822
|
SBO_0000028 = "SBO_0000028"
|
|
823
|
-
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_UNIREACTANT_ENZYMES =
|
|
824
|
-
"SBO_0000028"
|
|
825
|
-
)
|
|
823
|
+
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_UNIREACTANT_ENZYMES = "SBO_0000028"
|
|
826
824
|
|
|
827
825
|
# Henri-Michaelis-Menten rate law
|
|
828
826
|
SBO_0000029 = "SBO_0000029"
|
|
@@ -898,9 +896,7 @@ class SBO(str, Enum):
|
|
|
898
896
|
|
|
899
897
|
# mass action rate law for zeroth order irreversible reactions, continuous scheme
|
|
900
898
|
SBO_0000047 = "SBO_0000047"
|
|
901
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_IRREVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
902
|
-
"SBO_0000047"
|
|
903
|
-
)
|
|
899
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_IRREVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000047"
|
|
904
900
|
|
|
905
901
|
# forward zeroth order rate constant, continuous case
|
|
906
902
|
SBO_0000048 = "SBO_0000048"
|
|
@@ -908,33 +904,23 @@ class SBO(str, Enum):
|
|
|
908
904
|
|
|
909
905
|
# mass action rate law for first order irreversible reactions, continuous scheme
|
|
910
906
|
SBO_0000049 = "SBO_0000049"
|
|
911
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
912
|
-
"SBO_0000049"
|
|
913
|
-
)
|
|
907
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000049"
|
|
914
908
|
|
|
915
909
|
# mass action rate law for second order irreversible reactions, one reactant
|
|
916
910
|
SBO_0000050 = "SBO_0000050"
|
|
917
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
918
|
-
"SBO_0000050"
|
|
919
|
-
)
|
|
911
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000050"
|
|
920
912
|
|
|
921
913
|
# mass action rate law for second order irreversible reactions, one reactant, continuous scheme
|
|
922
914
|
SBO_0000052 = "SBO_0000052"
|
|
923
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME =
|
|
924
|
-
"SBO_0000052"
|
|
925
|
-
)
|
|
915
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME = "SBO_0000052"
|
|
926
916
|
|
|
927
917
|
# mass action rate law for second order irreversible reactions, two reactants
|
|
928
918
|
SBO_0000053 = "SBO_0000053"
|
|
929
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
930
|
-
"SBO_0000053"
|
|
931
|
-
)
|
|
919
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000053"
|
|
932
920
|
|
|
933
921
|
# mass action rate law for second order irreversible reactions, two reactants, continuous scheme
|
|
934
922
|
SBO_0000054 = "SBO_0000054"
|
|
935
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME =
|
|
936
|
-
"SBO_0000054"
|
|
937
|
-
)
|
|
923
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000054"
|
|
938
924
|
|
|
939
925
|
# mass action rate law for third order irreversible reactions
|
|
940
926
|
SBO_0000055 = "SBO_0000055"
|
|
@@ -942,39 +928,27 @@ class SBO(str, Enum):
|
|
|
942
928
|
|
|
943
929
|
# mass action rate law for third order irreversible reactions, one reactant
|
|
944
930
|
SBO_0000056 = "SBO_0000056"
|
|
945
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
946
|
-
"SBO_0000056"
|
|
947
|
-
)
|
|
931
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000056"
|
|
948
932
|
|
|
949
933
|
# mass action rate law for third order irreversible reactions, one reactant, continuous scheme
|
|
950
934
|
SBO_0000057 = "SBO_0000057"
|
|
951
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME =
|
|
952
|
-
"SBO_0000057"
|
|
953
|
-
)
|
|
935
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME = "SBO_0000057"
|
|
954
936
|
|
|
955
937
|
# mass action rate law for third order irreversible reactions, two reactants
|
|
956
938
|
SBO_0000058 = "SBO_0000058"
|
|
957
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
958
|
-
"SBO_0000058"
|
|
959
|
-
)
|
|
939
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000058"
|
|
960
940
|
|
|
961
941
|
# mass action rate law for third order irreversible reactions, two reactants, continuous scheme
|
|
962
942
|
SBO_0000059 = "SBO_0000059"
|
|
963
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME =
|
|
964
|
-
"SBO_0000059"
|
|
965
|
-
)
|
|
943
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000059"
|
|
966
944
|
|
|
967
945
|
# mass action rate law for third order irreversible reactions, three reactants
|
|
968
946
|
SBO_0000060 = "SBO_0000060"
|
|
969
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__THREE_REACTANTS =
|
|
970
|
-
"SBO_0000060"
|
|
971
|
-
)
|
|
947
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__THREE_REACTANTS = "SBO_0000060"
|
|
972
948
|
|
|
973
949
|
# mass action rate law for third order irreversible reactions, three reactants, continuous scheme
|
|
974
950
|
SBO_0000061 = "SBO_0000061"
|
|
975
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__THREE_REACTANTS__CONTINUOUS_SCHEME =
|
|
976
|
-
"SBO_0000061"
|
|
977
|
-
)
|
|
951
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__THREE_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000061"
|
|
978
952
|
|
|
979
953
|
# continuous framework
|
|
980
954
|
SBO_0000062 = "SBO_0000062"
|
|
@@ -1010,51 +984,35 @@ class SBO(str, Enum):
|
|
|
1010
984
|
|
|
1011
985
|
# mass action rate law for zeroth order forward, first order reverse, reversible reactions, continuous scheme
|
|
1012
986
|
SBO_0000070 = "SBO_0000070"
|
|
1013
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
1014
|
-
"SBO_0000070"
|
|
1015
|
-
)
|
|
987
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000070"
|
|
1016
988
|
|
|
1017
989
|
# mass action rate law for zeroth order forward, second order reverse, reversible reactions, continuous scheme
|
|
1018
990
|
SBO_0000071 = "SBO_0000071"
|
|
1019
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
1020
|
-
"SBO_0000071"
|
|
1021
|
-
)
|
|
991
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000071"
|
|
1022
992
|
|
|
1023
993
|
# mass action rate law for zeroth order forward, second order reverse, reversible reactions, one product, continuous scheme
|
|
1024
994
|
SBO_0000072 = "SBO_0000072"
|
|
1025
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1026
|
-
"SBO_0000072"
|
|
1027
|
-
)
|
|
995
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000072"
|
|
1028
996
|
|
|
1029
997
|
# mass action rate law for zeroth order forward, second order reverse, reversible reactions, two products, continuous scheme
|
|
1030
998
|
SBO_0000073 = "SBO_0000073"
|
|
1031
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1032
|
-
"SBO_0000073"
|
|
1033
|
-
)
|
|
999
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000073"
|
|
1034
1000
|
|
|
1035
1001
|
# mass action rate law for zeroth order forward, third order reverse, reversible reactions, continuous scheme
|
|
1036
1002
|
SBO_0000074 = "SBO_0000074"
|
|
1037
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
1038
|
-
"SBO_0000074"
|
|
1039
|
-
)
|
|
1003
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000074"
|
|
1040
1004
|
|
|
1041
1005
|
# mass action rate law for zeroth order forward, third order reverse, reversible reactions, one product, continuous scheme
|
|
1042
1006
|
SBO_0000075 = "SBO_0000075"
|
|
1043
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1044
|
-
"SBO_0000075"
|
|
1045
|
-
)
|
|
1007
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000075"
|
|
1046
1008
|
|
|
1047
1009
|
# mass action rate law for zeroth order forward, third order reverse, reversible reactions, two products, continuous scheme
|
|
1048
1010
|
SBO_0000076 = "SBO_0000076"
|
|
1049
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1050
|
-
"SBO_0000076"
|
|
1051
|
-
)
|
|
1011
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000076"
|
|
1052
1012
|
|
|
1053
1013
|
# mass action rate law for zeroth order forward, third order reverse, reversible reactions, three products, continuous scheme
|
|
1054
1014
|
SBO_0000077 = "SBO_0000077"
|
|
1055
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1056
|
-
"SBO_0000077"
|
|
1057
|
-
)
|
|
1015
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000077"
|
|
1058
1016
|
|
|
1059
1017
|
# mass action rate law for first order reversible reactions
|
|
1060
1018
|
SBO_0000078 = "SBO_0000078"
|
|
@@ -1062,57 +1020,39 @@ class SBO(str, Enum):
|
|
|
1062
1020
|
|
|
1063
1021
|
# mass action rate law for first order forward, zeroth order reverse, reversible reactions, continuous scheme
|
|
1064
1022
|
SBO_0000079 = "SBO_0000079"
|
|
1065
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
1066
|
-
"SBO_0000079"
|
|
1067
|
-
)
|
|
1023
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000079"
|
|
1068
1024
|
|
|
1069
1025
|
# mass action rate law for first order forward, first order reverse, reversible reactions, continuous scheme
|
|
1070
1026
|
SBO_0000080 = "SBO_0000080"
|
|
1071
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME =
|
|
1072
|
-
"SBO_0000080"
|
|
1073
|
-
)
|
|
1027
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__CONTINUOUS_SCHEME = "SBO_0000080"
|
|
1074
1028
|
|
|
1075
1029
|
# mass action rate law for first order forward, second order reverse, reversible reactions
|
|
1076
1030
|
SBO_0000081 = "SBO_0000081"
|
|
1077
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS =
|
|
1078
|
-
"SBO_0000081"
|
|
1079
|
-
)
|
|
1031
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS = "SBO_0000081"
|
|
1080
1032
|
|
|
1081
1033
|
# mass action rate law for first order forward, second order reverse, reversible reactions, one product, continuous scheme
|
|
1082
1034
|
SBO_0000082 = "SBO_0000082"
|
|
1083
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1084
|
-
"SBO_0000082"
|
|
1085
|
-
)
|
|
1035
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000082"
|
|
1086
1036
|
|
|
1087
1037
|
# mass action rate law for first order forward, second order reverse, reversible reactions, two products, continuous scheme
|
|
1088
1038
|
SBO_0000083 = "SBO_0000083"
|
|
1089
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1090
|
-
"SBO_0000083"
|
|
1091
|
-
)
|
|
1039
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000083"
|
|
1092
1040
|
|
|
1093
1041
|
# mass action rate law for first order forward, third order reverse, reversible reactions
|
|
1094
1042
|
SBO_0000084 = "SBO_0000084"
|
|
1095
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS =
|
|
1096
|
-
"SBO_0000084"
|
|
1097
|
-
)
|
|
1043
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS = "SBO_0000084"
|
|
1098
1044
|
|
|
1099
1045
|
# mass action rate law for first order forward, third order reverse, reversible reactions, one product, continuous scheme
|
|
1100
1046
|
SBO_0000085 = "SBO_0000085"
|
|
1101
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1102
|
-
"SBO_0000085"
|
|
1103
|
-
)
|
|
1047
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000085"
|
|
1104
1048
|
|
|
1105
1049
|
# mass action rate law for first order forward, third order reverse, reversible reactions, two products, continuous scheme
|
|
1106
1050
|
SBO_0000086 = "SBO_0000086"
|
|
1107
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1108
|
-
"SBO_0000086"
|
|
1109
|
-
)
|
|
1051
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000086"
|
|
1110
1052
|
|
|
1111
1053
|
# mass action rate law for first order forward, third order reverse, reversible reactions, three products, continuous scheme
|
|
1112
1054
|
SBO_0000087 = "SBO_0000087"
|
|
1113
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1114
|
-
"SBO_0000087"
|
|
1115
|
-
)
|
|
1055
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000087"
|
|
1116
1056
|
|
|
1117
1057
|
# mass action rate law for second order reversible reactions
|
|
1118
1058
|
SBO_0000088 = "SBO_0000088"
|
|
@@ -1120,123 +1060,83 @@ class SBO(str, Enum):
|
|
|
1120
1060
|
|
|
1121
1061
|
# mass action rate law for second order forward, reversible reactions, one reactant
|
|
1122
1062
|
SBO_0000089 = "SBO_0000089"
|
|
1123
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__REVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
1124
|
-
"SBO_0000089"
|
|
1125
|
-
)
|
|
1063
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__REVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000089"
|
|
1126
1064
|
|
|
1127
1065
|
# mass action rate law for second order forward, zeroth order reverse, reversible reactions, one reactant, continuous scheme
|
|
1128
1066
|
SBO_0000090 = "SBO_0000090"
|
|
1129
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME =
|
|
1130
|
-
"SBO_0000090"
|
|
1131
|
-
)
|
|
1067
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME = "SBO_0000090"
|
|
1132
1068
|
|
|
1133
1069
|
# mass action rate law for second order forward, first order reverse, reversible reactions, one reactant, continuous scheme
|
|
1134
1070
|
SBO_0000091 = "SBO_0000091"
|
|
1135
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME =
|
|
1136
|
-
"SBO_0000091"
|
|
1137
|
-
)
|
|
1071
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME = "SBO_0000091"
|
|
1138
1072
|
|
|
1139
1073
|
# mass action rate law for second order forward, second order reverse, reversible reactions, one reactant
|
|
1140
1074
|
SBO_0000092 = "SBO_0000092"
|
|
1141
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
1142
|
-
"SBO_0000092"
|
|
1143
|
-
)
|
|
1075
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000092"
|
|
1144
1076
|
|
|
1145
1077
|
# mass action rate law for second order forward, second order reverse, reversible reactions, one reactant, one product, continuous scheme
|
|
1146
1078
|
SBO_0000093 = "SBO_0000093"
|
|
1147
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1148
|
-
"SBO_0000093"
|
|
1149
|
-
)
|
|
1079
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000093"
|
|
1150
1080
|
|
|
1151
1081
|
# mass action rate law for second order forward, second order reverse, reversible reactions, two products, continuous scheme
|
|
1152
1082
|
SBO_0000094 = "SBO_0000094"
|
|
1153
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1154
|
-
"SBO_0000094"
|
|
1155
|
-
)
|
|
1083
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000094"
|
|
1156
1084
|
|
|
1157
1085
|
# mass action rate law for second order forward, third order reverse, reversible reactions, one reactant
|
|
1158
1086
|
SBO_0000095 = "SBO_0000095"
|
|
1159
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
1160
|
-
"SBO_0000095"
|
|
1161
|
-
)
|
|
1087
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000095"
|
|
1162
1088
|
|
|
1163
1089
|
# mass action rate law for second order forward, third order reverse, reversible reactions, one reactant, one product, continuous scheme
|
|
1164
1090
|
SBO_0000096 = "SBO_0000096"
|
|
1165
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1166
|
-
"SBO_0000096"
|
|
1167
|
-
)
|
|
1091
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000096"
|
|
1168
1092
|
|
|
1169
1093
|
# mass action rate law for second order forward, third order reverse, reversible reactions, one reactant, two products, continuous scheme
|
|
1170
1094
|
SBO_0000097 = "SBO_0000097"
|
|
1171
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1172
|
-
"SBO_0000097"
|
|
1173
|
-
)
|
|
1095
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000097"
|
|
1174
1096
|
|
|
1175
1097
|
# mass action rate law for second order forward, third order reverse, reversible reactions, one reactant, three products, continuous scheme
|
|
1176
1098
|
SBO_0000098 = "SBO_0000098"
|
|
1177
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1178
|
-
"SBO_0000098"
|
|
1179
|
-
)
|
|
1099
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000098"
|
|
1180
1100
|
|
|
1181
1101
|
# mass action rate law for second order forward, reversible reactions, two reactants
|
|
1182
1102
|
SBO_0000099 = "SBO_0000099"
|
|
1183
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__REVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
1184
|
-
"SBO_0000099"
|
|
1185
|
-
)
|
|
1103
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__REVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000099"
|
|
1186
1104
|
|
|
1187
1105
|
# mass action rate law for second order forward, zeroth order reverse, reversible reactions, two reactants, continuous scheme
|
|
1188
1106
|
SBO_0000100 = "SBO_0000100"
|
|
1189
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME =
|
|
1190
|
-
"SBO_0000100"
|
|
1191
|
-
)
|
|
1107
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000100"
|
|
1192
1108
|
|
|
1193
1109
|
# mass action rate law for second order forward, first order reverse, reversible reactions, two reactants, continuous scheme
|
|
1194
1110
|
SBO_0000101 = "SBO_0000101"
|
|
1195
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME =
|
|
1196
|
-
"SBO_0000101"
|
|
1197
|
-
)
|
|
1111
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000101"
|
|
1198
1112
|
|
|
1199
1113
|
# mass action rate law for second order forward, second order reverse, reversible reactions, two reactants
|
|
1200
1114
|
SBO_0000102 = "SBO_0000102"
|
|
1201
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
1202
|
-
"SBO_0000102"
|
|
1203
|
-
)
|
|
1115
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000102"
|
|
1204
1116
|
|
|
1205
1117
|
# mass action rate law for second order forward, second order reverse, reversible reactions, two reactants, one product, continuous scheme
|
|
1206
1118
|
SBO_0000103 = "SBO_0000103"
|
|
1207
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1208
|
-
"SBO_0000103"
|
|
1209
|
-
)
|
|
1119
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000103"
|
|
1210
1120
|
|
|
1211
1121
|
# mass action rate law for second order forward, second order reverse, reversible reactions, two reactants, two products, continuous scheme
|
|
1212
1122
|
SBO_0000104 = "SBO_0000104"
|
|
1213
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1214
|
-
"SBO_0000104"
|
|
1215
|
-
)
|
|
1123
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000104"
|
|
1216
1124
|
|
|
1217
1125
|
# mass action rate law for second order forward, third order reverse, reversible reactions, two reactants
|
|
1218
1126
|
SBO_0000105 = "SBO_0000105"
|
|
1219
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
1220
|
-
"SBO_0000105"
|
|
1221
|
-
)
|
|
1127
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000105"
|
|
1222
1128
|
|
|
1223
1129
|
# mass action rate law for second order forward, third order reverse, reversible reactions, two reactants, one product, continuous scheme
|
|
1224
1130
|
SBO_0000106 = "SBO_0000106"
|
|
1225
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1226
|
-
"SBO_0000106"
|
|
1227
|
-
)
|
|
1131
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000106"
|
|
1228
1132
|
|
|
1229
1133
|
# mass action rate law for second order forward, third order reverse, reversible reactions, two reactants, two products, continuous scheme
|
|
1230
1134
|
SBO_0000107 = "SBO_0000107"
|
|
1231
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1232
|
-
"SBO_0000107"
|
|
1233
|
-
)
|
|
1135
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000107"
|
|
1234
1136
|
|
|
1235
1137
|
# mass action rate law for second order forward, third order reverse, reversible reactions, two reactants, three products, continuous scheme
|
|
1236
1138
|
SBO_0000108 = "SBO_0000108"
|
|
1237
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1238
|
-
"SBO_0000108"
|
|
1239
|
-
)
|
|
1139
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000108"
|
|
1240
1140
|
|
|
1241
1141
|
# mass action rate law for third order reversible reactions
|
|
1242
1142
|
SBO_0000109 = "SBO_0000109"
|
|
@@ -1244,225 +1144,151 @@ class SBO(str, Enum):
|
|
|
1244
1144
|
|
|
1245
1145
|
# mass action rate law for third order forward, reversible reactions, two reactants
|
|
1246
1146
|
SBO_0000110 = "SBO_0000110"
|
|
1247
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__REVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
1248
|
-
"SBO_0000110"
|
|
1249
|
-
)
|
|
1147
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__REVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000110"
|
|
1250
1148
|
|
|
1251
1149
|
# mass action rate law for third order forward, zeroth order reverse, reversible reactions, two reactants, continuous scheme
|
|
1252
1150
|
SBO_0000111 = "SBO_0000111"
|
|
1253
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME =
|
|
1254
|
-
"SBO_0000111"
|
|
1255
|
-
)
|
|
1151
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000111"
|
|
1256
1152
|
|
|
1257
1153
|
# mass action rate law for third order forward, first order reverse, reversible reactions, two reactants, continuous scheme
|
|
1258
1154
|
SBO_0000112 = "SBO_0000112"
|
|
1259
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME =
|
|
1260
|
-
"SBO_0000112"
|
|
1261
|
-
)
|
|
1155
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000112"
|
|
1262
1156
|
|
|
1263
1157
|
# mass action rate law for third order forward, second order reverse, reversible reactions, two reactants
|
|
1264
1158
|
SBO_0000113 = "SBO_0000113"
|
|
1265
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
1266
|
-
"SBO_0000113"
|
|
1267
|
-
)
|
|
1159
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000113"
|
|
1268
1160
|
|
|
1269
1161
|
# mass action rate law for third order forward, second order reverse, reversible reactions, two reactants, one product, continuous scheme
|
|
1270
1162
|
SBO_0000114 = "SBO_0000114"
|
|
1271
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1272
|
-
"SBO_0000114"
|
|
1273
|
-
)
|
|
1163
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000114"
|
|
1274
1164
|
|
|
1275
1165
|
# mass action rate law for third order forward, second order reverse, reversible reactions, two reactants, two products, continuous scheme
|
|
1276
1166
|
SBO_0000115 = "SBO_0000115"
|
|
1277
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1278
|
-
"SBO_0000115"
|
|
1279
|
-
)
|
|
1167
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000115"
|
|
1280
1168
|
|
|
1281
1169
|
# mass action rate law for third order forward, third order reverse, reversible reactions, two reactants
|
|
1282
1170
|
SBO_0000116 = "SBO_0000116"
|
|
1283
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS =
|
|
1284
|
-
"SBO_0000116"
|
|
1285
|
-
)
|
|
1171
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS = "SBO_0000116"
|
|
1286
1172
|
|
|
1287
1173
|
# mass action rate law for third order forward, third order reverse, reversible reactions, two reactants, one product, continuous scheme
|
|
1288
1174
|
SBO_0000117 = "SBO_0000117"
|
|
1289
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1290
|
-
"SBO_0000117"
|
|
1291
|
-
)
|
|
1175
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000117"
|
|
1292
1176
|
|
|
1293
1177
|
# mass action rate law for third order forward, third order reverse, reversible reactions, two reactants, two products, continuous scheme
|
|
1294
1178
|
SBO_0000118 = "SBO_0000118"
|
|
1295
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1296
|
-
"SBO_0000118"
|
|
1297
|
-
)
|
|
1179
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000118"
|
|
1298
1180
|
|
|
1299
1181
|
# mass action rate law for third order forward, third order reverse, reversible reactions, two reactants, three products, continuous scheme
|
|
1300
1182
|
SBO_0000119 = "SBO_0000119"
|
|
1301
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1302
|
-
"SBO_0000119"
|
|
1303
|
-
)
|
|
1183
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__TWO_REACTANTS__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000119"
|
|
1304
1184
|
|
|
1305
1185
|
# mass action rate law for third order forward, reversible reactions, three reactants
|
|
1306
1186
|
SBO_0000120 = "SBO_0000120"
|
|
1307
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__REVERSIBLE_REACTIONS__THREE_REACTANTS =
|
|
1308
|
-
"SBO_0000120"
|
|
1309
|
-
)
|
|
1187
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__REVERSIBLE_REACTIONS__THREE_REACTANTS = "SBO_0000120"
|
|
1310
1188
|
|
|
1311
1189
|
# mass action rate law for third order forward, zeroth order reverse, reversible reactions, three reactants, continuous scheme
|
|
1312
1190
|
SBO_0000121 = "SBO_0000121"
|
|
1313
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__CONTINUOUS_SCHEME =
|
|
1314
|
-
"SBO_0000121"
|
|
1315
|
-
)
|
|
1191
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000121"
|
|
1316
1192
|
|
|
1317
1193
|
# mass action rate law for third order forward, first order reverse, reversible reactions, three reactants, continuous scheme
|
|
1318
1194
|
SBO_0000122 = "SBO_0000122"
|
|
1319
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__CONTINUOUS_SCHEME =
|
|
1320
|
-
"SBO_0000122"
|
|
1321
|
-
)
|
|
1195
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__CONTINUOUS_SCHEME = "SBO_0000122"
|
|
1322
1196
|
|
|
1323
1197
|
# mass action rate law for third order forward, second order reverse, reversible reactions, three reactants
|
|
1324
1198
|
SBO_0000123 = "SBO_0000123"
|
|
1325
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS =
|
|
1326
|
-
"SBO_0000123"
|
|
1327
|
-
)
|
|
1199
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS = "SBO_0000123"
|
|
1328
1200
|
|
|
1329
1201
|
# mass action rate law for third order forward, second order reverse, reversible reactions, three reactants, one product, continuous scheme
|
|
1330
1202
|
SBO_0000124 = "SBO_0000124"
|
|
1331
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1332
|
-
"SBO_0000124"
|
|
1333
|
-
)
|
|
1203
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000124"
|
|
1334
1204
|
|
|
1335
1205
|
# mass action rate law for third order forward, second order reverse, reversible reactions, three reactants, two products, continuous scheme
|
|
1336
1206
|
SBO_0000125 = "SBO_0000125"
|
|
1337
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1338
|
-
"SBO_0000125"
|
|
1339
|
-
)
|
|
1207
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000125"
|
|
1340
1208
|
|
|
1341
1209
|
# mass action rate law for third order forward, third order reverse, reversible reactions, three reactants
|
|
1342
1210
|
SBO_0000126 = "SBO_0000126"
|
|
1343
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS =
|
|
1344
|
-
"SBO_0000126"
|
|
1345
|
-
)
|
|
1211
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS = "SBO_0000126"
|
|
1346
1212
|
|
|
1347
1213
|
# mass action rate law for third order forward, third order reverse, reversible reactions, three reactants, one product, continuous scheme
|
|
1348
1214
|
SBO_0000127 = "SBO_0000127"
|
|
1349
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1350
|
-
"SBO_0000127"
|
|
1351
|
-
)
|
|
1215
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000127"
|
|
1352
1216
|
|
|
1353
1217
|
# mass action rate law for third order forward, third order reverse, reversible reactions, three reactants, two products, continuous scheme
|
|
1354
1218
|
SBO_0000128 = "SBO_0000128"
|
|
1355
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1356
|
-
"SBO_0000128"
|
|
1357
|
-
)
|
|
1219
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000128"
|
|
1358
1220
|
|
|
1359
1221
|
# mass action rate law for third order forward, third order reverse, reversible reactions, three reactants, three products, continuous scheme
|
|
1360
1222
|
SBO_0000129 = "SBO_0000129"
|
|
1361
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1362
|
-
"SBO_0000129"
|
|
1363
|
-
)
|
|
1223
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__THREE_REACTANTS__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000129"
|
|
1364
1224
|
|
|
1365
1225
|
# mass action rate law for third order forward, reversible reactions, one reactant
|
|
1366
1226
|
SBO_0000130 = "SBO_0000130"
|
|
1367
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__REVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
1368
|
-
"SBO_0000130"
|
|
1369
|
-
)
|
|
1227
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__REVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000130"
|
|
1370
1228
|
|
|
1371
1229
|
# mass action rate law for third order forward, zeroth order reverse, reversible reactions, one reactant, continuous scheme
|
|
1372
1230
|
SBO_0000131 = "SBO_0000131"
|
|
1373
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME =
|
|
1374
|
-
"SBO_0000131"
|
|
1375
|
-
)
|
|
1231
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__ZEROTH_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME = "SBO_0000131"
|
|
1376
1232
|
|
|
1377
1233
|
# mass action rate law for third order forward, first order reverse, reversible reactions, one reactant, continuous scheme
|
|
1378
1234
|
SBO_0000132 = "SBO_0000132"
|
|
1379
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME =
|
|
1380
|
-
"SBO_0000132"
|
|
1381
|
-
)
|
|
1235
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__FIRST_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__CONTINUOUS_SCHEME = "SBO_0000132"
|
|
1382
1236
|
|
|
1383
1237
|
# mass action rate law for third order forward, second order reverse, reversible reactions, one reactant
|
|
1384
1238
|
SBO_0000133 = "SBO_0000133"
|
|
1385
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
1386
|
-
"SBO_0000133"
|
|
1387
|
-
)
|
|
1239
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000133"
|
|
1388
1240
|
|
|
1389
1241
|
# mass action rate law for third order forward, second order reverse, reversible reactions, one reactant, one product, continuous scheme
|
|
1390
1242
|
SBO_0000134 = "SBO_0000134"
|
|
1391
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1392
|
-
"SBO_0000134"
|
|
1393
|
-
)
|
|
1243
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000134"
|
|
1394
1244
|
|
|
1395
1245
|
# mass action rate law for third order forward, second order reverse, reversible reactions, one reactant, two products, continuous scheme
|
|
1396
1246
|
SBO_0000135 = "SBO_0000135"
|
|
1397
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1398
|
-
"SBO_0000135"
|
|
1399
|
-
)
|
|
1247
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__SECOND_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000135"
|
|
1400
1248
|
|
|
1401
1249
|
# mass action rate law for third order forward, third order reverse, reversible reactions, one reactant
|
|
1402
1250
|
SBO_0000136 = "SBO_0000136"
|
|
1403
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT =
|
|
1404
|
-
"SBO_0000136"
|
|
1405
|
-
)
|
|
1251
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT = "SBO_0000136"
|
|
1406
1252
|
|
|
1407
1253
|
# mass action rate law for third order forward, third order reverse, reversible reactions, one reactant, one product, continuous scheme
|
|
1408
1254
|
SBO_0000137 = "SBO_0000137"
|
|
1409
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME =
|
|
1410
|
-
"SBO_0000137"
|
|
1411
|
-
)
|
|
1255
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__ONE_PRODUCT__CONTINUOUS_SCHEME = "SBO_0000137"
|
|
1412
1256
|
|
|
1413
1257
|
# mass action rate law for third order forward, third order reverse, reversible reactions, one reactant, two products, continuous scheme
|
|
1414
1258
|
SBO_0000138 = "SBO_0000138"
|
|
1415
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__TWO_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1416
|
-
"SBO_0000138"
|
|
1417
|
-
)
|
|
1259
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__TWO_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000138"
|
|
1418
1260
|
|
|
1419
1261
|
# mass action rate law for third order forward, third order reverse, reversible reactions, one reactant, three products, continuous scheme
|
|
1420
1262
|
SBO_0000139 = "SBO_0000139"
|
|
1421
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__THREE_PRODUCTS__CONTINUOUS_SCHEME =
|
|
1422
|
-
"SBO_0000139"
|
|
1423
|
-
)
|
|
1263
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_FORWARD__THIRD_ORDER_REVERSE__REVERSIBLE_REACTIONS__ONE_REACTANT__THREE_PRODUCTS__CONTINUOUS_SCHEME = "SBO_0000139"
|
|
1424
1264
|
|
|
1425
1265
|
# mass action rate law for zeroth order irreversible reactions, discrete scheme
|
|
1426
1266
|
SBO_0000140 = "SBO_0000140"
|
|
1427
|
-
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_IRREVERSIBLE_REACTIONS__DISCRETE_SCHEME =
|
|
1428
|
-
"SBO_0000140"
|
|
1429
|
-
)
|
|
1267
|
+
MASS_ACTION_RATE_LAW_FOR_ZEROTH_ORDER_IRREVERSIBLE_REACTIONS__DISCRETE_SCHEME = "SBO_0000140"
|
|
1430
1268
|
|
|
1431
1269
|
# mass action rate law for first order irreversible reactions, discrete scheme
|
|
1432
1270
|
SBO_0000141 = "SBO_0000141"
|
|
1433
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__DISCRETE_SCHEME =
|
|
1434
|
-
"SBO_0000141"
|
|
1435
|
-
)
|
|
1271
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__DISCRETE_SCHEME = "SBO_0000141"
|
|
1436
1272
|
|
|
1437
1273
|
# mass action rate law for second order irreversible reactions, one reactant, discrete scheme
|
|
1438
1274
|
SBO_0000142 = "SBO_0000142"
|
|
1439
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__DISCRETE_SCHEME =
|
|
1440
|
-
"SBO_0000142"
|
|
1441
|
-
)
|
|
1275
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__DISCRETE_SCHEME = "SBO_0000142"
|
|
1442
1276
|
|
|
1443
1277
|
# mass action rate law for second order irreversible reactions, two reactants, discrete scheme
|
|
1444
1278
|
SBO_0000143 = "SBO_0000143"
|
|
1445
|
-
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__DISCRETE_SCHEME =
|
|
1446
|
-
"SBO_0000143"
|
|
1447
|
-
)
|
|
1279
|
+
MASS_ACTION_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__DISCRETE_SCHEME = "SBO_0000143"
|
|
1448
1280
|
|
|
1449
1281
|
# mass action rate law for third order irreversible reactions, one reactant, discrete scheme
|
|
1450
1282
|
SBO_0000144 = "SBO_0000144"
|
|
1451
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__DISCRETE_SCHEME =
|
|
1452
|
-
"SBO_0000144"
|
|
1453
|
-
)
|
|
1283
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__DISCRETE_SCHEME = "SBO_0000144"
|
|
1454
1284
|
|
|
1455
1285
|
# mass action rate law for third order irreversible reactions, two reactants, discrete scheme
|
|
1456
1286
|
SBO_0000145 = "SBO_0000145"
|
|
1457
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__DISCRETE_SCHEME =
|
|
1458
|
-
"SBO_0000145"
|
|
1459
|
-
)
|
|
1287
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__TWO_REACTANTS__DISCRETE_SCHEME = "SBO_0000145"
|
|
1460
1288
|
|
|
1461
1289
|
# mass action rate law for third order irreversible reactions, three reactants, discrete scheme
|
|
1462
1290
|
SBO_0000146 = "SBO_0000146"
|
|
1463
|
-
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__THREE_REACTANTS__DISCRETE_SCHEME =
|
|
1464
|
-
"SBO_0000146"
|
|
1465
|
-
)
|
|
1291
|
+
MASS_ACTION_RATE_LAW_FOR_THIRD_ORDER_IRREVERSIBLE_REACTIONS__THREE_REACTANTS__DISCRETE_SCHEME = "SBO_0000146"
|
|
1466
1292
|
|
|
1467
1293
|
# thermodynamic temperature
|
|
1468
1294
|
SBO_0000147 = "SBO_0000147"
|
|
@@ -1478,21 +1304,15 @@ class SBO(str, Enum):
|
|
|
1478
1304
|
|
|
1479
1305
|
# enzymatic rate law for irreversible non-modulated non-interacting reactant enzymes
|
|
1480
1306
|
SBO_0000150 = "SBO_0000150"
|
|
1481
|
-
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_REACTANT_ENZYMES =
|
|
1482
|
-
"SBO_0000150"
|
|
1483
|
-
)
|
|
1307
|
+
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_REACTANT_ENZYMES = "SBO_0000150"
|
|
1484
1308
|
|
|
1485
1309
|
# enzymatic rate law for irreversible non-modulated non-interacting bireactant enzymes
|
|
1486
1310
|
SBO_0000151 = "SBO_0000151"
|
|
1487
|
-
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_BIREACTANT_ENZYMES =
|
|
1488
|
-
"SBO_0000151"
|
|
1489
|
-
)
|
|
1311
|
+
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_BIREACTANT_ENZYMES = "SBO_0000151"
|
|
1490
1312
|
|
|
1491
1313
|
# enzymatic rate law for irreversible non-modulated non-interacting trireactant enzymes
|
|
1492
1314
|
SBO_0000152 = "SBO_0000152"
|
|
1493
|
-
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_TRIREACTANT_ENZYMES =
|
|
1494
|
-
"SBO_0000152"
|
|
1495
|
-
)
|
|
1315
|
+
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_NON_MODULATED_NON_INTERACTING_TRIREACTANT_ENZYMES = "SBO_0000152"
|
|
1496
1316
|
|
|
1497
1317
|
# forward rate constant
|
|
1498
1318
|
SBO_0000153 = "SBO_0000153"
|
|
@@ -1924,9 +1744,7 @@ class SBO(str, Enum):
|
|
|
1924
1744
|
|
|
1925
1745
|
# enzymatic rate law for simple competitive inhibition of irreversible unireactant enzymes by one inhibitor
|
|
1926
1746
|
SBO_0000260 = "SBO_0000260"
|
|
1927
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_ONE_INHIBITOR =
|
|
1928
|
-
"SBO_0000260"
|
|
1929
|
-
)
|
|
1747
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_ONE_INHIBITOR = "SBO_0000260"
|
|
1930
1748
|
|
|
1931
1749
|
# inhibitory constant
|
|
1932
1750
|
SBO_0000261 = "SBO_0000261"
|
|
@@ -1934,9 +1752,7 @@ class SBO(str, Enum):
|
|
|
1934
1752
|
|
|
1935
1753
|
# enzymatic rate law for simple uncompetitive inhibition of irreversible unireactant enzymes
|
|
1936
1754
|
SBO_0000262 = "SBO_0000262"
|
|
1937
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_UNCOMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES =
|
|
1938
|
-
"SBO_0000262"
|
|
1939
|
-
)
|
|
1755
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_UNCOMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES = "SBO_0000262"
|
|
1940
1756
|
|
|
1941
1757
|
# relative equilibrium constant
|
|
1942
1758
|
SBO_0000263 = "SBO_0000263"
|
|
@@ -1948,21 +1764,15 @@ class SBO(str, Enum):
|
|
|
1948
1764
|
|
|
1949
1765
|
# enzymatic rate law for simple mixed-type inhibition of irreversible unireactant enzymes
|
|
1950
1766
|
SBO_0000265 = "SBO_0000265"
|
|
1951
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_MIXED_TYPE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES =
|
|
1952
|
-
"SBO_0000265"
|
|
1953
|
-
)
|
|
1767
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_MIXED_TYPE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES = "SBO_0000265"
|
|
1954
1768
|
|
|
1955
1769
|
# enzymatic rate law for simple irreversible non-competitive inhibition of unireactant enzymes
|
|
1956
1770
|
SBO_0000266 = "SBO_0000266"
|
|
1957
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_IRREVERSIBLE_NON_COMPETITIVE_INHIBITION_OF_UNIREACTANT_ENZYMES =
|
|
1958
|
-
"SBO_0000266"
|
|
1959
|
-
)
|
|
1771
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_IRREVERSIBLE_NON_COMPETITIVE_INHIBITION_OF_UNIREACTANT_ENZYMES = "SBO_0000266"
|
|
1960
1772
|
|
|
1961
1773
|
# enzymatic rate law for competitive inhibition of irreversible unireactant enzymes by one inhibitor
|
|
1962
1774
|
SBO_0000267 = "SBO_0000267"
|
|
1963
|
-
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_ONE_INHIBITOR =
|
|
1964
|
-
"SBO_0000267"
|
|
1965
|
-
)
|
|
1775
|
+
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_ONE_INHIBITOR = "SBO_0000267"
|
|
1966
1776
|
|
|
1967
1777
|
# enzymatic rate law
|
|
1968
1778
|
SBO_0000268 = "SBO_0000268"
|
|
@@ -1974,15 +1784,11 @@ class SBO(str, Enum):
|
|
|
1974
1784
|
|
|
1975
1785
|
# enzymatic rate law for competitive inhibition of irreversible unireactant enzymes by exclusive inhibitors
|
|
1976
1786
|
SBO_0000270 = "SBO_0000270"
|
|
1977
|
-
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_EXCLUSIVE_INHIBITORS =
|
|
1978
|
-
"SBO_0000270"
|
|
1979
|
-
)
|
|
1787
|
+
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_EXCLUSIVE_INHIBITORS = "SBO_0000270"
|
|
1980
1788
|
|
|
1981
1789
|
# enzymatic rate law for competitive inhibition of irreversible unireactant enzymes by two exclusive inhibitors
|
|
1982
1790
|
SBO_0000271 = "SBO_0000271"
|
|
1983
|
-
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_EXCLUSIVE_INHIBITORS =
|
|
1984
|
-
"SBO_0000271"
|
|
1985
|
-
)
|
|
1791
|
+
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_EXCLUSIVE_INHIBITORS = "SBO_0000271"
|
|
1986
1792
|
|
|
1987
1793
|
# number of inhibitors
|
|
1988
1794
|
SBO_0000272 = "SBO_0000272"
|
|
@@ -1990,33 +1796,23 @@ class SBO(str, Enum):
|
|
|
1990
1796
|
|
|
1991
1797
|
# enzymatic rate law for competitive inhibition of irreversible unireactant enzymes by non-exclusive non-cooperative inhibitors
|
|
1992
1798
|
SBO_0000273 = "SBO_0000273"
|
|
1993
|
-
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_NON_EXCLUSIVE_NON_COOPERATIVE_INHIBITORS =
|
|
1994
|
-
"SBO_0000273"
|
|
1995
|
-
)
|
|
1799
|
+
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_NON_EXCLUSIVE_NON_COOPERATIVE_INHIBITORS = "SBO_0000273"
|
|
1996
1800
|
|
|
1997
1801
|
# enzymatic rate law for simple competitive inhibition of irreversible unireactant enzymes by two non-exclusive, non-cooperative inhibitors
|
|
1998
1802
|
SBO_0000274 = "SBO_0000274"
|
|
1999
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_NON_EXCLUSIVE__NON_COOPERATIVE_INHIBITORS =
|
|
2000
|
-
"SBO_0000274"
|
|
2001
|
-
)
|
|
1803
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_NON_EXCLUSIVE__NON_COOPERATIVE_INHIBITORS = "SBO_0000274"
|
|
2002
1804
|
|
|
2003
1805
|
# enzymatic rate law for mixed-type inhibition of irreversible enzymes by mutually exclusive inhibitors
|
|
2004
1806
|
SBO_0000275 = "SBO_0000275"
|
|
2005
|
-
ENZYMATIC_RATE_LAW_FOR_MIXED_TYPE_INHIBITION_OF_IRREVERSIBLE_ENZYMES_BY_MUTUALLY_EXCLUSIVE_INHIBITORS =
|
|
2006
|
-
"SBO_0000275"
|
|
2007
|
-
)
|
|
1807
|
+
ENZYMATIC_RATE_LAW_FOR_MIXED_TYPE_INHIBITION_OF_IRREVERSIBLE_ENZYMES_BY_MUTUALLY_EXCLUSIVE_INHIBITORS = "SBO_0000275"
|
|
2008
1808
|
|
|
2009
1809
|
# enzymatic rate law for mixed-type inhibition of irreversible unireactant enzymes by two inhibitors
|
|
2010
1810
|
SBO_0000276 = "SBO_0000276"
|
|
2011
|
-
ENZYMATIC_RATE_LAW_FOR_MIXED_TYPE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_INHIBITORS =
|
|
2012
|
-
"SBO_0000276"
|
|
2013
|
-
)
|
|
1811
|
+
ENZYMATIC_RATE_LAW_FOR_MIXED_TYPE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_INHIBITORS = "SBO_0000276"
|
|
2014
1812
|
|
|
2015
1813
|
# enzymatic rate law for non-competitive inhibition of irreversible unireactant enzymes by two exclusively binding inhibitors
|
|
2016
1814
|
SBO_0000277 = "SBO_0000277"
|
|
2017
|
-
ENZYMATIC_RATE_LAW_FOR_NON_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_EXCLUSIVELY_BINDING_INHIBITORS =
|
|
2018
|
-
"SBO_0000277"
|
|
2019
|
-
)
|
|
1815
|
+
ENZYMATIC_RATE_LAW_FOR_NON_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_EXCLUSIVELY_BINDING_INHIBITORS = "SBO_0000277"
|
|
2020
1816
|
|
|
2021
1817
|
# messenger RNA
|
|
2022
1818
|
SBO_0000278 = "SBO_0000278"
|
|
@@ -2416,15 +2212,11 @@ class SBO(str, Enum):
|
|
|
2416
2212
|
|
|
2417
2213
|
# enzymatic rate law for inhibition of irreversible unireactant enzymes by competing substrates
|
|
2418
2214
|
SBO_0000378 = "SBO_0000378"
|
|
2419
|
-
ENZYMATIC_RATE_LAW_FOR_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_COMPETING_SUBSTRATES =
|
|
2420
|
-
"SBO_0000378"
|
|
2421
|
-
)
|
|
2215
|
+
ENZYMATIC_RATE_LAW_FOR_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_COMPETING_SUBSTRATES = "SBO_0000378"
|
|
2422
2216
|
|
|
2423
2217
|
# enzymatic rate law for simple competitive inhibition of irreversible unireactant enzymes by two non-exclusive inhibitors
|
|
2424
2218
|
SBO_0000379 = "SBO_0000379"
|
|
2425
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_NON_EXCLUSIVE_INHIBITORS =
|
|
2426
|
-
"SBO_0000379"
|
|
2427
|
-
)
|
|
2219
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_TWO_NON_EXCLUSIVE_INHIBITORS = "SBO_0000379"
|
|
2428
2220
|
|
|
2429
2221
|
# biochemical coefficient
|
|
2430
2222
|
SBO_0000380 = "SBO_0000380"
|
|
@@ -2452,21 +2244,15 @@ class SBO(str, Enum):
|
|
|
2452
2244
|
|
|
2453
2245
|
# enzymatic rate law for inhibition of irreversible unireactant enzymes by single competing substrate
|
|
2454
2246
|
SBO_0000386 = "SBO_0000386"
|
|
2455
|
-
ENZYMATIC_RATE_LAW_FOR_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_SINGLE_COMPETING_SUBSTRATE =
|
|
2456
|
-
"SBO_0000386"
|
|
2457
|
-
)
|
|
2247
|
+
ENZYMATIC_RATE_LAW_FOR_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_SINGLE_COMPETING_SUBSTRATE = "SBO_0000386"
|
|
2458
2248
|
|
|
2459
2249
|
# enzymatic rate law for competitive inhibition of irreversible unireactant enzyme by product
|
|
2460
2250
|
SBO_0000387 = "SBO_0000387"
|
|
2461
|
-
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYME_BY_PRODUCT =
|
|
2462
|
-
"SBO_0000387"
|
|
2463
|
-
)
|
|
2251
|
+
ENZYMATIC_RATE_LAW_FOR_COMPETITIVE_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYME_BY_PRODUCT = "SBO_0000387"
|
|
2464
2252
|
|
|
2465
2253
|
# enzymatic rate law for inhibition of irreversible unireactant enzymes by single competing substrate with product inhibition
|
|
2466
2254
|
SBO_0000388 = "SBO_0000388"
|
|
2467
|
-
ENZYMATIC_RATE_LAW_FOR_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_SINGLE_COMPETING_SUBSTRATE_WITH_PRODUCT_INHIBITION =
|
|
2468
|
-
"SBO_0000388"
|
|
2469
|
-
)
|
|
2255
|
+
ENZYMATIC_RATE_LAW_FOR_INHIBITION_OF_IRREVERSIBLE_UNIREACTANT_ENZYMES_BY_SINGLE_COMPETING_SUBSTRATE_WITH_PRODUCT_INHIBITION = "SBO_0000388"
|
|
2470
2256
|
|
|
2471
2257
|
# switch value
|
|
2472
2258
|
SBO_0000389 = "SBO_0000389"
|
|
@@ -2674,15 +2460,11 @@ class SBO(str, Enum):
|
|
|
2674
2460
|
|
|
2675
2461
|
# enzymatic rate law for mixed-type inhibition of reversible enzymes by mutually exclusive inhibitors
|
|
2676
2462
|
SBO_0000441 = "SBO_0000441"
|
|
2677
|
-
ENZYMATIC_RATE_LAW_FOR_MIXED_TYPE_INHIBITION_OF_REVERSIBLE_ENZYMES_BY_MUTUALLY_EXCLUSIVE_INHIBITORS =
|
|
2678
|
-
"SBO_0000441"
|
|
2679
|
-
)
|
|
2463
|
+
ENZYMATIC_RATE_LAW_FOR_MIXED_TYPE_INHIBITION_OF_REVERSIBLE_ENZYMES_BY_MUTUALLY_EXCLUSIVE_INHIBITORS = "SBO_0000441"
|
|
2680
2464
|
|
|
2681
2465
|
# enzymatic rate law for simple reversible non-competitive inhibition of unireactant enzymes
|
|
2682
2466
|
SBO_0000442 = "SBO_0000442"
|
|
2683
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_REVERSIBLE_NON_COMPETITIVE_INHIBITION_OF_UNIREACTANT_ENZYMES =
|
|
2684
|
-
"SBO_0000442"
|
|
2685
|
-
)
|
|
2467
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_REVERSIBLE_NON_COMPETITIVE_INHIBITION_OF_UNIREACTANT_ENZYMES = "SBO_0000442"
|
|
2686
2468
|
|
|
2687
2469
|
# enzymatic rate law for reversible essential activation
|
|
2688
2470
|
SBO_0000443 = "SBO_0000443"
|
|
@@ -2702,9 +2484,7 @@ class SBO(str, Enum):
|
|
|
2702
2484
|
|
|
2703
2485
|
# enzymatic rate law for reversible catalytic activation with one activator
|
|
2704
2486
|
SBO_0000447 = "SBO_0000447"
|
|
2705
|
-
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_CATALYTIC_ACTIVATION_WITH_ONE_ACTIVATOR =
|
|
2706
|
-
"SBO_0000447"
|
|
2707
|
-
)
|
|
2487
|
+
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_CATALYTIC_ACTIVATION_WITH_ONE_ACTIVATOR = "SBO_0000447"
|
|
2708
2488
|
|
|
2709
2489
|
# enzymatic rate law for reversible specific activation
|
|
2710
2490
|
SBO_0000448 = "SBO_0000448"
|
|
@@ -2712,9 +2492,7 @@ class SBO(str, Enum):
|
|
|
2712
2492
|
|
|
2713
2493
|
# enzymatic rate law for irreversible catalytic activation with one activator
|
|
2714
2494
|
SBO_0000449 = "SBO_0000449"
|
|
2715
|
-
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_CATALYTIC_ACTIVATION_WITH_ONE_ACTIVATOR =
|
|
2716
|
-
"SBO_0000449"
|
|
2717
|
-
)
|
|
2495
|
+
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_CATALYTIC_ACTIVATION_WITH_ONE_ACTIVATOR = "SBO_0000449"
|
|
2718
2496
|
|
|
2719
2497
|
# enzymatic rate law for irreversible specific activation
|
|
2720
2498
|
SBO_0000450 = "SBO_0000450"
|
|
@@ -2722,21 +2500,15 @@ class SBO(str, Enum):
|
|
|
2722
2500
|
|
|
2723
2501
|
# enzymatic rate law for reversible reactions with competitive inhibition
|
|
2724
2502
|
SBO_0000451 = "SBO_0000451"
|
|
2725
|
-
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_REACTIONS_WITH_COMPETITIVE_INHIBITION =
|
|
2726
|
-
"SBO_0000451"
|
|
2727
|
-
)
|
|
2503
|
+
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_REACTIONS_WITH_COMPETITIVE_INHIBITION = "SBO_0000451"
|
|
2728
2504
|
|
|
2729
2505
|
# enzymatic rate law for reversible competitive inhibition by one inhibitor
|
|
2730
2506
|
SBO_0000452 = "SBO_0000452"
|
|
2731
|
-
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_COMPETITIVE_INHIBITION_BY_ONE_INHIBITOR =
|
|
2732
|
-
"SBO_0000452"
|
|
2733
|
-
)
|
|
2507
|
+
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_COMPETITIVE_INHIBITION_BY_ONE_INHIBITOR = "SBO_0000452"
|
|
2734
2508
|
|
|
2735
2509
|
# enzymatic rate law for reversible empirical allosteric inhibition by one inhibitor
|
|
2736
2510
|
SBO_0000453 = "SBO_0000453"
|
|
2737
|
-
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_EMPIRICAL_ALLOSTERIC_INHIBITION_BY_ONE_INHIBITOR =
|
|
2738
|
-
"SBO_0000453"
|
|
2739
|
-
)
|
|
2511
|
+
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_EMPIRICAL_ALLOSTERIC_INHIBITION_BY_ONE_INHIBITOR = "SBO_0000453"
|
|
2740
2512
|
|
|
2741
2513
|
# enzymatic rate law for reversible substrate inhibition
|
|
2742
2514
|
SBO_0000454 = "SBO_0000454"
|
|
@@ -2748,21 +2520,15 @@ class SBO(str, Enum):
|
|
|
2748
2520
|
|
|
2749
2521
|
# enzymatic rate law for reversible unireactant enzyme with a single hyperbolic modulator
|
|
2750
2522
|
SBO_0000456 = "SBO_0000456"
|
|
2751
|
-
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_UNIREACTANT_ENZYME_WITH_A_SINGLE_HYPERBOLIC_MODULATOR =
|
|
2752
|
-
"SBO_0000456"
|
|
2753
|
-
)
|
|
2523
|
+
ENZYMATIC_RATE_LAW_FOR_REVERSIBLE_UNIREACTANT_ENZYME_WITH_A_SINGLE_HYPERBOLIC_MODULATOR = "SBO_0000456"
|
|
2754
2524
|
|
|
2755
2525
|
# enzymatic rate law for irreversible unireactant enzyme with a single hyperbolic modulator
|
|
2756
2526
|
SBO_0000457 = "SBO_0000457"
|
|
2757
|
-
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_UNIREACTANT_ENZYME_WITH_A_SINGLE_HYPERBOLIC_MODULATOR =
|
|
2758
|
-
"SBO_0000457"
|
|
2759
|
-
)
|
|
2527
|
+
ENZYMATIC_RATE_LAW_FOR_IRREVERSIBLE_UNIREACTANT_ENZYME_WITH_A_SINGLE_HYPERBOLIC_MODULATOR = "SBO_0000457"
|
|
2760
2528
|
|
|
2761
2529
|
# enzymatic rate law for simple uncompetitive inhibition of reversible unireactant enzymes
|
|
2762
2530
|
SBO_0000458 = "SBO_0000458"
|
|
2763
|
-
ENZYMATIC_RATE_LAW_FOR_SIMPLE_UNCOMPETITIVE_INHIBITION_OF_REVERSIBLE_UNIREACTANT_ENZYMES =
|
|
2764
|
-
"SBO_0000458"
|
|
2765
|
-
)
|
|
2531
|
+
ENZYMATIC_RATE_LAW_FOR_SIMPLE_UNCOMPETITIVE_INHIBITION_OF_REVERSIBLE_UNIREACTANT_ENZYMES = "SBO_0000458"
|
|
2766
2532
|
|
|
2767
2533
|
# stimulator
|
|
2768
2534
|
SBO_0000459 = "SBO_0000459"
|
|
@@ -3166,33 +2932,23 @@ class SBO(str, Enum):
|
|
|
3166
2932
|
|
|
3167
2933
|
# mass action rate law for first order irreversible reactions, single essential stimulator, continuous scheme
|
|
3168
2934
|
SBO_0000560 = "SBO_0000560"
|
|
3169
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__SINGLE_ESSENTIAL_STIMULATOR__CONTINUOUS_SCHEME =
|
|
3170
|
-
"SBO_0000560"
|
|
3171
|
-
)
|
|
2935
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__SINGLE_ESSENTIAL_STIMULATOR__CONTINUOUS_SCHEME = "SBO_0000560"
|
|
3172
2936
|
|
|
3173
2937
|
# mass action rate law for first order irreversible reactions, single essential stimulator, discrete scheme
|
|
3174
2938
|
SBO_0000561 = "SBO_0000561"
|
|
3175
|
-
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__SINGLE_ESSENTIAL_STIMULATOR__DISCRETE_SCHEME =
|
|
3176
|
-
"SBO_0000561"
|
|
3177
|
-
)
|
|
2939
|
+
MASS_ACTION_RATE_LAW_FOR_FIRST_ORDER_IRREVERSIBLE_REACTIONS__SINGLE_ESSENTIAL_STIMULATOR__DISCRETE_SCHEME = "SBO_0000561"
|
|
3178
2940
|
|
|
3179
2941
|
# mass action like rate law for second order irreversible reactions, one reactant, one essential stimulator
|
|
3180
2942
|
SBO_0000562 = "SBO_0000562"
|
|
3181
|
-
MASS_ACTION_LIKE_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__ONE_ESSENTIAL_STIMULATOR =
|
|
3182
|
-
"SBO_0000562"
|
|
3183
|
-
)
|
|
2943
|
+
MASS_ACTION_LIKE_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__ONE_ESSENTIAL_STIMULATOR = "SBO_0000562"
|
|
3184
2944
|
|
|
3185
2945
|
# mass action like rate law for second order irreversible reactions, one reactant, one essential stimulator, continuous scheme
|
|
3186
2946
|
SBO_0000563 = "SBO_0000563"
|
|
3187
|
-
MASS_ACTION_LIKE_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__ONE_ESSENTIAL_STIMULATOR__CONTINUOUS_SCHEME =
|
|
3188
|
-
"SBO_0000563"
|
|
3189
|
-
)
|
|
2947
|
+
MASS_ACTION_LIKE_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__ONE_ESSENTIAL_STIMULATOR__CONTINUOUS_SCHEME = "SBO_0000563"
|
|
3190
2948
|
|
|
3191
2949
|
# mass action like rate law for second order irreversible reactions, one reactant, one essential stimulator, discrete scheme
|
|
3192
2950
|
SBO_0000564 = "SBO_0000564"
|
|
3193
|
-
MASS_ACTION_LIKE_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__ONE_ESSENTIAL_STIMULATOR__DISCRETE_SCHEME =
|
|
3194
|
-
"SBO_0000564"
|
|
3195
|
-
)
|
|
2951
|
+
MASS_ACTION_LIKE_RATE_LAW_FOR_SECOND_ORDER_IRREVERSIBLE_REACTIONS__ONE_REACTANT__ONE_ESSENTIAL_STIMULATOR__DISCRETE_SCHEME = "SBO_0000564"
|
|
3196
2952
|
|
|
3197
2953
|
# systems description constant
|
|
3198
2954
|
SBO_0000565 = "SBO_0000565"
|
|
@@ -3246,7 +3002,7 @@ class SBO(str, Enum):
|
|
|
3246
3002
|
SBO_0000577 = "SBO_0000577"
|
|
3247
3003
|
ENTROPY_CHANGE = "SBO_0000577"
|
|
3248
3004
|
|
|
3249
|
-
# standard entropy of reaction
|
|
3005
|
+
# standard entropy of reaction
|
|
3250
3006
|
SBO_0000578 = "SBO_0000578"
|
|
3251
3007
|
STANDARD_ENTROPY_OF_REACTION_ = "SBO_0000578"
|
|
3252
3008
|
|
|
@@ -3676,9 +3432,7 @@ class SBO(str, Enum):
|
|
|
3676
3432
|
|
|
3677
3433
|
# hybrid flux balance-logical-deterministic continuous non-spatial framework
|
|
3678
3434
|
SBO_0000686 = "SBO_0000686"
|
|
3679
|
-
HYBRID_FLUX_BALANCE_LOGICAL_DETERMINISTIC_CONTINUOUS_NON_SPATIAL_FRAMEWORK =
|
|
3680
|
-
"SBO_0000686"
|
|
3681
|
-
)
|
|
3435
|
+
HYBRID_FLUX_BALANCE_LOGICAL_DETERMINISTIC_CONTINUOUS_NON_SPATIAL_FRAMEWORK = "SBO_0000686"
|
|
3682
3436
|
|
|
3683
3437
|
# hybrid flux balance-logical non-spatial framework
|
|
3684
3438
|
SBO_0000687 = "SBO_0000687"
|
|
@@ -3721,7 +3475,7 @@ class SBO(str, Enum):
|
|
|
3721
3475
|
PART_OF = "part_of"
|
|
3722
3476
|
|
|
3723
3477
|
@staticmethod
|
|
3724
|
-
def get_name(sbo:
|
|
3478
|
+
def get_name(sbo: 'SBO') -> Optional[str]:
|
|
3725
3479
|
"""Get name for term.
|
|
3726
3480
|
|
|
3727
3481
|
:returns: None if term does not exist in ontology.
|
|
@@ -3729,9 +3483,9 @@ class SBO(str, Enum):
|
|
|
3729
3483
|
return _terms.get(sbo.value, None)
|
|
3730
3484
|
|
|
3731
3485
|
@classmethod
|
|
3732
|
-
def validate(cls, sbo:
|
|
3486
|
+
def validate(cls, sbo: 'SBOType') -> 'SBO':
|
|
3733
3487
|
"""Validate and normalize sbo."""
|
|
3734
|
-
term:
|
|
3488
|
+
term: 'SBO'
|
|
3735
3489
|
if isinstance(sbo, str):
|
|
3736
3490
|
if not sbo.startswith("SBO"):
|
|
3737
3491
|
raise ValueError(sbo + " is not a SBO id.")
|
|
@@ -3740,15 +3494,14 @@ class SBO(str, Enum):
|
|
|
3740
3494
|
|
|
3741
3495
|
term = getattr(cls, sbo)
|
|
3742
3496
|
|
|
3743
|
-
elif isinstance(sbo,
|
|
3497
|
+
elif isinstance(sbo, 'SBO'):
|
|
3744
3498
|
term = sbo
|
|
3745
3499
|
else:
|
|
3746
3500
|
raise ValueError
|
|
3747
3501
|
|
|
3748
3502
|
return term
|
|
3749
3503
|
|
|
3750
|
-
|
|
3751
3504
|
__all__ = [
|
|
3752
3505
|
"SBO",
|
|
3753
3506
|
"SBOType",
|
|
3754
|
-
]
|
|
3507
|
+
]
|