8.1.1.2.1.2. skimpy.core.itemsets

[———]

Copyright 2017 Laboratory of Computational Systems Biotechnology (LCSB), Ecole Polytechnique Federale de Lausanne (EPFL), Switzerland

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

8.1.1.2.1.2.1. Classes

Item

ItemSet

Helper class that provides a standard way to create an ABC using

Parameter

ParameterSet

Helper class that provides a standard way to create an ABC using

Reactant

ReactantSet

Helper class that provides a standard way to create an ABC using

8.1.1.2.1.2.2. Functions

make_parameter_set(mechanism, param_declaration)

make_reactant_set(mechanism, reactant_declaration)

8.1.1.2.1.2.3. Module Contents

class pytfa.Item(name, value=None, model=None, suffix='')

Bases: object

name
model = None
value = None
_suffix = ''
_symbol = None
hook = None
type = None
_lower_bound = None
_upper_bound = None
_generate_symbol()
property symbol
property suffix
property bounds
__str__()
__repr__()
class pytfa.ItemSet(mechanism)

Bases: abc.ABC, skimpy.utils.tabdict.TabDict

Helper class that provides a standard way to create an ABC using inheritance.

mechanism
__reduce__()

Helper for pickle.

class pytfa.Parameter(name, required_for=None, value=None, model=None, suffix='')

Bases: Item

type = 'parameter'
class pytfa.ParameterSet(mechanism, param_declaration, param_values, suffix='')

Bases: ItemSet

Helper class that provides a standard way to create an ABC using inheritance.

property required_for
pytfa.make_parameter_set(mechanism, param_declaration)
class pytfa.Reactant(name, value=None, model=None, suffix='')

Bases: Item

type = 'variable'
compartment = None
class pytfa.ReactantSet(mechanism, reactant_declaration, reactant_values)

Bases: ItemSet

Helper class that provides a standard way to create an ABC using inheritance.

pytfa.make_reactant_set(mechanism, reactant_declaration)