doc('Lists the molecular species that are neither a non-strict-catalyst reaction product nor the target of an influence rule in the curent model.Strict catalysts, i.e. catalysts with same stoichiometry in left-hand and right side of reactions, are allowed as inputs.'),
input_species(Molecules),
writeln(Molecules).
list_source_species:-
biocham_command,
doc('Lists the molecular species that are neither a reaction product, nor the target of an influence rule, in the curent model.'),
doc('Lists the molecular species that are neither a reaction product nor the target of an influence rule in the curent model.'),
source_species(Molecules),
writeln(Molecules).
list_sink_species:-
biocham_command,
doc('Lists the molecular species that are neither a reactant, nor a (positive) source of an influence rule, in the curent model.'),
doc('Lists the molecular species that are neither a reactant nor a positive source of an influence rule in the curent model.'),
sink_species(Molecules),
writeln(Molecules).
...
...
@@ -84,6 +93,10 @@ list_sink_species:-
:-devdoc('Prolog lists of graph sources and sinks.').
doc('Test graphical sufficient conditions for rate independence of the current model for the computation of graph sink species from graph source species (assuming well-formed kinetics).'),
source_species(Inputs),
doc('Test graphical sufficient conditions for rate independence of the current model for the computation of graph output species from graph input species (assuming well-formed kinetics). The input species are the species that are not a reaction product or a strict catalyst (i.e. with same stoichiometry). The output species are the species that are not reactant.'),
doc('Reduces the current reaction model while preserving rate independence for computing sink species from source species.'),
source_species(Inputs),
doc('Reduces the current reaction model while preserving the rate independence property for computing the graph sink species from the input species. Warning: the reduction does not preserve the computation, only the rate independence property which may be true or false.'),