BioLQM tutorial#
This notebook illustrates the main features of the python API of the biolqm
toolkit. We will show how to load a model, perform simple dynamical analysis (simulation and identification of attractors) and apply perturbations.
The code from this tutorial can be executed on the standard python interpreter, the IPython shell or the Jupyter notebook web interface.
import pandas as pd # for the visualization of lists of states
import biolqm
This notebook has been executed using the docker image colomoto/colomoto-docker:for-next
Load a model#
The biolqm.load
function allows to load a model froma file given as parameter. It can be a local file or a web URL to downloadit. bioLQM will use the file extension to guess the format.
See colomoto/bioLQM for a list of supported formats, notably GINsim (.zginml
or .ginml
files) and SBML qual (.sbml
files).
When using the web interface, calling the load function without specifying the parameter enables to pick and upload a local file.
Here we load a published model of the mammalian cell cycle.
lqm = biolqm.load("http://ginsim.org/sites/default/files/boolean_cell_cycle.zginml")
Deterministic simulations#
Starting with an initial state (by default where all components are inactive), we can compute the evolution of all components over time by evaluating the logical functions of the model. The biolqm.trace
function returns an iterator from which we can obtain a list of successive states.
These simulations are limited to deterministic updating modes, where each state has a single successor. The simulation stops when reaching a stable state or a maximal number of steps (1000 by default).
trace = biolqm.trace(lqm)
pd.DataFrame( [s for s in trace] )
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 |
2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
3 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 |
4 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
The biolqm.trace
function can take an additional argument to specify simulation parameters. These parameters are specified in a single string and identified by the following flags:
-u
for the updating mode (synchronous by default, can also be sequential)-i
for the initial state (following the internal component ordering)-m
for the maximal number of steps.
trace = biolqm.trace(lqm, "-u synchronous -i 0010000000 -m 50")
pd.DataFrame( [s for s in trace] )
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
3 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 |
4 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
Random walk in non-deterministic simulations#
Logical models can also be updated in a non-deterministic mode, where each state can have many alternative successors.
The biolqm.random
function allows to perform a random walk in the complex dynamics obtained with non-deterministic updating modes.
Like biolqm.trace
, the biolqm.random
function takes an additional argument for simulation parameters:
-u
for the updating mode (asynchronous by default, can also be complete)-i
for the initial state (following the internal component ordering)-m
for the maximal number of steps.
random = biolqm.random(lqm, "-i 0010000000 -m 50")
pd.DataFrame( [s for s in random] )
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
3 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
4 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 |
5 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 |
6 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
As this type of simulation is a random walk, successive calls often yield different trajectories.
pd.DataFrame( [s for s in random] )
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
2 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
3 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
4 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
5 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
6 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 |
7 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
8 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
9 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
10 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
11 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
12 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 |
13 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 |
14 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
15 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
16 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
17 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 |
18 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 |
19 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
20 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
While bioLQM implements non-deterministic updating modes, their simulation requires a more complex engine and data structure which are beyond the scope of bioLQM: use other tools such as GINsim or (py)boolnet to perform non-deterministic simulations.
Identification of stable states (fixed points)#
The biolqm.fixpoints
functions implements a constraint-solving method (based on decision diagrams) for the efficient identification of the stable states of a model without performing simulation.
fps = biolqm.fixpoints(lqm)
pd.DataFrame(fps)
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
Identification of stable motifs (trapspaces)#
A stable motif (also called symbolic steady state) is a partially assigned state such that all possible successors of all states which belong to the motif also belong to the motif. Like stable states, these stable motifs can be identified efficiently using constraint-solving methods.
Following this definition, all stable motifs contain at least an attractor. The stable states and the full state space are trivially identified stable motifs. Note that some stable motifs are embded inside others (in particular, they are all part of the full state space). The stable motifs which do not contain such smaller sub-motifs are called terminal and provide a good approximation of the attractors of the model (yet some attractors may be missed by this approximation).
The biolqm.trapspace
function computes these stable motifs. An additional argument allows to show only the terminal ones.
In the output below, the non-assigned components in each motif are denoted by the joker value 254
.
traps = biolqm.trapspace(lqm)
pd.DataFrame(traps)
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
1 | 1 | 0 | 254 | 254 | 254 | 0 | 254 | 254 | 254 | 254 |
traps = biolqm.trapspace(lqm, "terminal")
pd.DataFrame(traps)
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
1 | 1 | 0 | 254 | 254 | 254 | 0 | 254 | 254 | 254 | 254 |
Model perturbation#
the biolqm.perturbation
function enables the construction of a variant of the model, where the logical function of one (or several) component has been modified. A textual parameter describes the modification:
component%0
defines a knockout of a componentcomponent%1
defines an ectopic expressioncomponent%1:2
restricts the range of values for multi-valued componentsregulator:component%0
allows to remove a regulator
In the following, we show the impact of the ectopic expression of the CycD
component on the stable states and trapspaces on the model.
pert = biolqm.perturbation(lqm, "CycD%1")
fps = biolqm.fixpoints(pert)
pd.DataFrame(fps)
traps = biolqm.trapspace(pert, "terminal")
pd.DataFrame(traps)
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | 0 | 254 | 254 | 254 | 0 | 254 | 254 | 254 | 254 |
Multiple perturbations are comma-separated. Here we show the effect of the ectopic expression of both CycD
and Rb
.
pert = biolqm.perturbation(lqm, "CycD%1 Rb%1")
fps = biolqm.fixpoints(pert)
pd.DataFrame(fps)
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
traps = biolqm.trapspace(pert, "terminal")
pd.DataFrame(traps)
CycD | Rb | E2F | CycE | CycA | p27 | Cdc20 | cdh1 | UbcH10 | CycB | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Export to other tools#
PyBoolNet:
b = biolqm.to_pyboolnet(lqm)
b
{'Cdc20': [[{'CycB': 0}], [{'CycB': 1}]],
'CycA': [[{'UbcH10': 1, 'cdh1': 1},
{'CycA': 0, 'E2F': 0},
{'Rb': 1},
{'Cdc20': 1}],
[{'Cdc20': 0, 'E2F': 1, 'Rb': 0, 'cdh1': 0},
{'Cdc20': 0, 'E2F': 1, 'Rb': 0, 'UbcH10': 0},
{'Cdc20': 0, 'CycA': 1, 'Rb': 0, 'cdh1': 0},
{'Cdc20': 0, 'CycA': 1, 'Rb': 0, 'UbcH10': 0}]],
'CycB': [[{'cdh1': 1}, {'Cdc20': 1}], [{'Cdc20': 0, 'cdh1': 0}]],
'CycD': [[{'CycD': 0}], [{'CycD': 1}]],
'CycE': [[{'Rb': 1}, {'E2F': 0}], [{'E2F': 1, 'Rb': 0}]],
'E2F': [[{'CycA': 1, 'p27': 0}, {'Rb': 1}, {'CycB': 1}],
[{'CycB': 0, 'Rb': 0, 'p27': 1}, {'CycA': 0, 'CycB': 0, 'Rb': 0}]],
'Rb': [[{'CycE': 1, 'p27': 0},
{'CycA': 1, 'p27': 0},
{'CycD': 1},
{'CycB': 1}],
[{'CycA': 0, 'CycB': 0, 'CycD': 0, 'CycE': 0},
{'CycB': 0, 'CycD': 0, 'p27': 1}]],
'UbcH10': [[{'Cdc20': 0, 'CycA': 0, 'CycB': 0, 'cdh1': 1},
{'UbcH10': 0, 'cdh1': 1}],
[{'CycB': 1, 'UbcH10': 1},
{'CycA': 1, 'UbcH10': 1},
{'Cdc20': 1, 'UbcH10': 1},
{'cdh1': 0}]],
'cdh1': [[{'Cdc20': 0, 'CycA': 1, 'p27': 0}, {'Cdc20': 0, 'CycB': 1}],
[{'CycB': 0, 'p27': 1}, {'CycA': 0, 'CycB': 0}, {'Cdc20': 1}]],
'p27': [[{'CycE': 1, 'p27': 0},
{'CycA': 1, 'p27': 0},
{'CycA': 1, 'CycE': 1},
{'CycD': 1},
{'CycB': 1}],
[{'CycB': 0, 'CycD': 0, 'CycE': 0, 'p27': 1},
{'CycA': 0, 'CycB': 0, 'CycD': 0, 'p27': 1},
{'CycA': 0, 'CycB': 0, 'CycD': 0, 'CycE': 0}]]}
Pint:
an = biolqm.to_pint(lqm)
an
<pypint.model.FileModel at 0x7fd877e0e750>
MaBoSS:
n = biolqm.to_maboss(lqm)
n
<maboss.simulation.Simulation at 0x7fd872118d50>
minibn:
f = biolqm.to_minibn(lqm)
f
Cdc20 <- CycB
CycA <- (!Cdc20&CycA&!Rb&!UbcH10)|(!Cdc20&CycA&!Rb&!cdh1)|(!Cdc20&E2F&!Rb&!UbcH10)|(!Cdc20&E2F&!Rb&!cdh1)
CycB <- !Cdc20&!cdh1
CycD <- CycD
CycE <- E2F&!Rb
E2F <- (!CycA&!CycB&!Rb)|(!CycB&!Rb&p27)
Rb <- (!CycA&!CycB&!CycD&!CycE)|(!CycB&!CycD&p27)
UbcH10 <- !cdh1|(Cdc20&UbcH10)|(CycA&UbcH10)|(CycB&UbcH10)
cdh1 <- Cdc20|(!CycA&!CycB)|(!CycB&p27)
p27 <- (!CycA&!CycB&!CycD&!CycE)|(!CycA&!CycB&!CycD&p27)|(!CycB&!CycD&!CycE&p27)