biocrnpyler.mechanisms.enzyme
Classes
|
Mechanism for the schema S + C --> P + C. |
|
Mechanism for the schema C --> P + C. |
|
Mechanism to automatically generate Michaelis-Menten Type Reactions. |
|
In the Copy RXN version, the Substrate is not Consumed. |
|
Mechanism to automatically generate Michaelis-Menten Type Reactions with products that can bind to enzymes. |
- class biocrnpyler.mechanisms.enzyme.BasicCatalysis(name: str = 'basic_catalysis', mechanism_type: str = 'catalysis', **keywords)[source]
Mechanism for the schema S + C –> P + C.
Initializes a BasicCatalysis instance.
- Parameters:
name – name of the Mechanism, default: basic_catalysis
mechanism_type – type of the Mechanism, default: catalysis
keywords
- class biocrnpyler.mechanisms.enzyme.BasicProduction(name='basic_production', mechanism_type='catalysis', **keywords)[source]
Mechanism for the schema C –> P + C.
Initializes a BasicProduction instance.
- Parameters:
name – name of the Mechanism, default: basic_production
mechanism_type – type of the Mechanism, default: catalysis
keywords
- class biocrnpyler.mechanisms.enzyme.MichaelisMenten(name='michalis_menten', mechanism_type='catalysis', **keywords)[source]
Mechanism to automatically generate Michaelis-Menten Type Reactions.
In the Copy RXN version, the Substrate is not Consumed Sub+Enz <–> Sub:Enz –> Enz+Prod
Initializes a MichaelisMenten instance.
- Parameters:
name – name of the Mechanism, default: michalis_menten
mechanism_type – type of the Mechanism, default: catalysis
keywords
- class biocrnpyler.mechanisms.enzyme.MichaelisMentenCopy(name='michalis_menten_copy', mechanism_type='copy', **keywords)[source]
In the Copy RXN version, the Substrate is not Consumed.
Sub+Enz <–> Sub:Enz –> Sub+Enz+Prod
Initializes a MichaelisMentenCopy instance.
- Parameters:
name – name of the Mechanism, default: michalis_menten_copy
mechanism_type – type of the Mechanism, default: copy
keywords
- class biocrnpyler.mechanisms.enzyme.MichaelisMentenReversible(name='michalis_menten_reverse_binding', mechanism_type='catalysis', **keywords)[source]
Mechanism to automatically generate Michaelis-Menten Type Reactions with products that can bind to enzymes.
In the Copy RXN version, the Substrate is not Consumed Sub+Enz <–> Sub:Enz <–> Enz:Prod <–> Enz + Prod
Initializes a MichaelisMentenReversible instance.
- Parameters:
name – name of the Mechanism, default: michalis_menten_reverse_binding
mechanism_type – type of the Mechanism, default: catalysis
keywords