Skip to content

Commit 4caef57

Browse files
authored
Merge branch 'main' into bug/crash-on-gpr-error
2 parents 9719053 + 230e43d commit 4caef57

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,18 @@ The CLI allows you to calculate differential centralities using gene expression
100100

101101
1. **Using a single file with pre-calculated fold-changes:**
102102
```bash
103-
gemcat <expression_file.csv> <model_file.xml> -e <column_name> -o <result_file.csv>
103+
gemcat <model_file.xml> <expression_file.csv> -e <column_name> -o <result_file.csv>
104104
```
105-
* `<expression_file.csv>`: Path to your input file.
106105
* `<model_file.xml>`: Path to your metabolic model file (SBML, JSON, or MAT format).
106+
* `<expression_file.csv>`: Path to your input file.
107107
* `<column_name>`: The name of the column in your CSV containing the fold-change values.
108108
* `<result_file.csv>`: The desired output file path.
109109

110110
2. **Using two files (or one) with condition and baseline expression values:**
111111
```bash
112-
gemcat <condition_file.csv> <model_file.xml> -e <condition_column_name> -b <baseline_file.csv> -c <baseline_column_name> -o <result_file.csv>
112+
gemcat <model_file.xml> <condition_file.csv> -e <condition_column_name> -b <baseline_file.csv> -c <baseline_column_name> -o <result_file.csv>
113113
```
114+
* `<model_file.xml>`: Path to your metabolic model file (SBML, JSON, or MAT format).
114115
* `<condition_file.csv>`: Path to the file with expression values for your experimental condition.
115116
* `<baseline_file.csv>`: Path to the file with baseline expression values. If this is the same as the condition file, you can omit the `-b` flag and just use `<condition_file.csv>` as the second positional argument.
116117
* `<condition_column_name>`: Name of the column with condition expression data.
@@ -119,7 +120,7 @@ The CLI allows you to calculate differential centralities using gene expression
119120
3. **Using built-in models:**
120121
If you don't have a model file, GEMCAT can automatically access some common models by name:
121122
```bash
122-
gemcat <expression_file.csv> <model_name> -e <column_name> -o <result_file.csv>
123+
gemcat <model_name> <expression_file.csv> -e <column_name> -o <result_file.csv>
123124
```
124125
Currently supported model names:
125126
* `recon3d`: [Recon3D](http://bigg.ucsd.edu/models/Recon3D)

0 commit comments

Comments
 (0)