You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[UPDATE] README.md and diel_models_docs.md files that now includes development/contributing instructions, pip from github option, mention to the examples scripts and how to export the final xml diel model + [UPDATE] package version 1.2.2 to 1.2.3
Using this package, you can handle generic or multi-tissue models by:
38
57
39
58
* Assigning day and night;
@@ -44,7 +63,11 @@ Using this package, you can handle generic or multi-tissue models by:
44
63
45
64
If each method is to be applied individually it is essential that the first 3 steps are applied in that order specifically.
46
65
47
-
**Alternatively, it is possible to apply all methods to a given model, running the entire pipeline (where the arguments are all relative to the original model), as shown below:**
66
+
**Alternatively, you can apply all methods to a given model by running the entire pipeline, with all arguments relative to the original model**
67
+
68
+
This approach has been applied to multiple models, as demonstrated in the [Examples](examples) folder, both generic (e.g. [_Athaliana13_](examples/Athaliana_cheung13.py)) and multi-tissue (e.g. [_MultiQuercus_](examples/MultiQuercus.py)).
69
+
70
+
Briefly, the pipeline is applied as follows:
48
71
49
72
- Generic model:
50
73
@@ -57,6 +80,8 @@ model = cobra.io.read_sbml_model('.../.../desired_single_tissue_model.xml')
Copy file name to clipboardExpand all lines: docs/diel_models_docs.md
+40-5Lines changed: 40 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,45 @@ Python 3.12
13
13
```
14
14
15
15
### Description
16
-
*diel_models* is a python package generated from this project and has its own [ReadtheDocs](https://dielmodels.readthedocs.io/) file.
17
16
18
17
Despite numerous successful studies, modeling plant metabolism remains challenging for several reasons, such as limited information, incomplete annotations, and dynamic changes in plant metabolism that occur under different conditions, including night and day.
19
18
In particular, the integration of these day-night cycles (diel cycles) is complex, laborious, and time-consuming.
20
19
21
-
With this in mind, this package aims to accelerate this process by being able to transform a non-diel model into a diel model.
20
+
With this in mind, *diel_models* was created to accelerate this process by being able to transform a non-diel model into a diel model.
21
+
22
+
### Table of contents:
23
+
24
+
-[Installation](#installation)
25
+
-[Using pip from PyPi](#using-pip-from-pypi)
26
+
-[Using pip directly from GitHub](#using-pip-directly-from-github)
Using this package, you can handle generic or multi-tissue models by:
29
56
30
57
* Assigning day and night;
@@ -35,7 +62,11 @@ Using this package, you can handle generic or multi-tissue models by:
35
62
36
63
If each method is to be applied individually it is essential that the first 3 steps are applied in that order specifically.
37
64
38
-
**Alternatively, it is possible to apply all methods to a given model, running the entire pipeline (where the arguments are all relative to the original model), as shown below:**
65
+
**Alternatively, you can apply all methods to a given model by running the entire pipeline, with all arguments relative to the original model**
66
+
67
+
This approach has been applied to multiple models, as demonstrated in the [Examples](examples) folder, both generic (e.g. [_Athaliana13_](examples/Athaliana_cheung13.py)) and multi-tissue (e.g. [_MultiQuercus_](examples/MultiQuercus.py)).
68
+
69
+
Briefly, the pipeline is applied as follows:
39
70
40
71
- Generic model:
41
72
@@ -48,6 +79,8 @@ model = cobra.io.read_sbml_model('.../.../desired_single_tissue_model.xml')
0 commit comments