Skip to content

Commit dc26164

Browse files
Merge pull request #2 from matthiaskoenig/develop
Changes for v0.0.2
2 parents 5ca325b + 095cd88 commit dc26164

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
This repository creates standard files for FBC curation based on cobrapy.
1111

1212
## Reference output
13-
In the following the reference outputs are described for the [`e_coli_core.xml`](../examples/e_coli_core.xml) model.
13+
In the following the created reference output files are described and examples provided for the [`e_coli_core.xml`](./examples/models/e_coli_core.xml) model.
1414

1515
### 01 Objective value
1616
The objective value file contains the objective value if the model is optimized with the default settings. The file only contains the objective value.
1717
```
1818
0.873921507
1919
```
20-
See for instance: [`e_coli_core_01_objective.tsv`](../results/e_coli_core_01_objective.tsv)
20+
See for instance: [`e_coli_core_01_objective.tsv`](./examples/results/e_coli_core_01_objective.tsv). For more information: https://cobrapy.readthedocs.io/en/latest/simulating.html
2121

2222
### 02 Flux variability analysis (FVA)
2323
The flux variability analysis results contain the SBML reaction identifiers and the minimum and maximum values of the FVA. The file is a tab separated file (TSV) with the three columns `reaction`, `minimum` and `maximum`.
@@ -33,7 +33,7 @@ ADK1 0.0 0.0
3333
AKGDH 5.0643756615 5.0643756615
3434
...
3535
```
36-
See for instance: [`e_coli_core_02_fva.tsv`](../results/e_coli_core_02_fva.tsv)
36+
See for instance: [`e_coli_core_02_fva.tsv`](./examples/results/e_coli_core_02_fva.tsv). For more information: https://cobrapy.readthedocs.io/en/latest/simulating.html#Running-FVA
3737

3838
### 03 Gene deletions
3939
The gene deletions results contain the SBML reaction identifiers, the optimal value under the given gene deletion and the status of the optimization. The file is a tab separated file (TSV) with the three columns `gene`, `value` and `status`. The status can be either `optimal` or `infeasible`. In case of an `infeasible` status no solution could be found and no optimal value is provided.
@@ -51,7 +51,7 @@ b2417 0.873921507 optimal
5151
b2458 0.873921507 optimal
5252
...
5353
```
54-
See for instance: [`e_coli_core_03_gene_deletion.tsv`](../results/03_gene_deletion.tsv)
54+
See for instance: [`e_coli_core_03_gene_deletion.tsv`](./examples/results/e_coli_core_03_gene_deletion.tsv). For more information: https://cobrapy.readthedocs.io/en/latest/deletions.html
5555

5656
### 04 Reaction deletions
5757
The gene deletions results contain the SBML reaction identifiers, the optimal value under the given gene deletion and the status of the optimization. The file is a tab separated file (TSV) with the three columns `reaction`, `value` and `status`. In case of an `infeasible` status no solution could be found and no optimal value is provided.
@@ -67,7 +67,7 @@ ADK1 0.873921507 optimal
6767
AKGDH 0.858307408 optimal
6868
...
6969
```
70-
See for instance: [`e_coli_core_04_reaction_deletion.tsv`](../results/04_reaction_deletion.tsv)
70+
See for instance: [`e_coli_core_04_reaction_deletion.tsv`](./examples/results/e_coli_core_04_reaction_deletion.tsv). For more information: https://cobrapy.readthedocs.io/en/latest/deletions.html
7171

7272
## Installation
7373

@@ -95,7 +95,6 @@ Options:
9595
path to SBML model with fbc information
9696
-o OUTPUT_PATH, --out=OUTPUT_PATH
9797
path to write the output to
98-
9998
```
10099
For instance for the `e_coli_core.xml` example use
101100
```

fbc_curation/examples.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def example_iJR904(results_dir):
1717
model_path = EXAMPLE_PATH / "models" / "iJR904.xml.gz"
1818
create_fbc_files(results_dir=results_dir, model_path=model_path)
1919

20+
2021
def run_examples():
2122
results_dir = EXAMPLE_PATH / "results"
2223
example_ecoli_core(results_dir)

0 commit comments

Comments
 (0)