Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
phantomas1234 committed Aug 5, 2015
1 parent 443afb3 commit 5ee5821
Show file tree
Hide file tree
Showing 19 changed files with 1,997 additions and 7,342 deletions.
2,417 changes: 175 additions & 2,242 deletions docs/1-quick-start.rst

Large diffs are not rendered by default.

956 changes: 297 additions & 659 deletions docs/2-import-models.rst

Large diffs are not rendered by default.

19 changes: 8 additions & 11 deletions docs/3-simulate-models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
from cameo import load_model
model = load_model("iJO1366")
Simulating models with
======================

**c**\ omputer **a**\ ided **m**\ etabolic **e**\ ngineering and
**o**\ ptimization
Simulate models
===============

**cameo** uses and extends the model data structures defined by
`cobrapy <https://opencobra.github.io/cobrapy/>`__, our favorite
Expand Down Expand Up @@ -72,17 +69,17 @@ Flux Balance Analysis
---------------------

In **cameo**, flux balance analysis can be performed with the function
``fba``.
`fba`.

.. code:: python
from cameo import fba
fba_result = fba(model)
Basically, ``fba`` calls ``model.solve()`` and wraps the optimization
solution in a ``FluxDistributionResult`` object. The maximum objective
Basically, `fba` calls `model.solve()` and wraps the optimization
solution in a `FluxDistributionResult` object. The maximum objective
values (corresponding to a maximum growth rate) can obtained throug
``result.objective_value``.
`result.objective_value`.

.. code:: python
Expand Down Expand Up @@ -120,14 +117,14 @@ low.
~ & ~ \mathbf{v}_{lb} \leq \mathbf{v} \leq \mathbf{v}_{ub} \,.
\end{align}
In **cameo**, pFBA can be performed with the function ``pfba``.
In **cameo**, pFBA can be performed with the function `pfba`.

.. code:: python
from cameo import pfba
pfba_result = pfba(model)
The ``objective_function`` value is :math:`\lvert \mathbf{v} \rvert` ...
The `objective_function` value is :math:`\lvert \mathbf{v} \rvert` ...

.. code:: python
Expand Down
551 changes: 195 additions & 356 deletions docs/4-analyze-models.rst

Large diffs are not rendered by default.

764 changes: 240 additions & 524 deletions docs/5-predict-expression-modulation-targets.rst

Large diffs are not rendered by default.

1,155 changes: 2 additions & 1,153 deletions docs/6-predict-gene-knockout-strategies.rst

Large diffs are not rendered by default.

1,018 changes: 501 additions & 517 deletions docs/7-predict-heterologous-pathways.rst

Large diffs are not rendered by default.

618 changes: 572 additions & 46 deletions docs/8-high-level-API.rst

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions docs/How_to.rst

This file was deleted.

1 change: 1 addition & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ help:

ipy2rst:
for i in notebooks/*.ipynb; do ipython nbconvert $$i --to rst; done
sed -i '' 's/``/`/g' *.rst

clean:
rm -rf $(BUILDDIR)/*
Expand Down
195 changes: 0 additions & 195 deletions docs/Quickstart.ipynb

This file was deleted.

Loading

0 comments on commit 5ee5821

Please sign in to comment.