comparison COBRAxy/docs/tools/README.md @ 538:fd53d42348bd draft

Uploaded
author francesco_lapi
date Sat, 25 Oct 2025 11:39:03 +0000
parents 4ed95023af20
children fcdbc81feb45
comparison
equal deleted inserted replaced
537:f79250e824b5 538:fd53d42348bd
1 # Tool| Tool | Purpose | Input | Output |
2 |------|---------|--------|---------|
3 | [RAS Generator](ras-generator.md) | Compute reaction activity scores | Gene expression + GPR rules | RAS values |
4 | [RPS Generator](rps-generator.md) | Compute reaction propensity scores | Metabolite abundance | RPS values |
5 | [MAREA](marea.md) | Statistical pathway enrichment | RAS/RPS data | Enriched maps + statistics |
6 | [RAS to Bounds](ras-to-bounds.md) | Apply RAS constraints to model | RAS + SBML model | Constrained bounds |
7 | [Flux Simulation](flux-simulation.md) | Sample metabolic fluxes | Constrained model | Flux distributions |
8 | [Flux to Map](flux-to-map.md) | Visualize flux data on maps | Flux samples + statistical comparison | Color-coded pathway maps |
9 | [Model Setting](metabolic-model-setting.md) | Extract model components | SBML/JSON/MAT/YML model | Tabular model data |
10 | [Tabular to Model](tabular-to-model.md) | Create COBRA models | Tabular reaction data | SBML/JSON/MAT/YAML models |
11 | [MAREA Cluster](marea-cluster.md) | Cluster analysis | Expression/RAS/RPS/flux data | Sample clusters + validation plots |ation
12
13 Complete reference for all COBRAxy tools with parameters, examples, and usage guidelines. 1 Complete reference for all COBRAxy tools with parameters, examples, and usage guidelines.
14 2
15 ## Available Tools 3 ## Available Tools
16 4
17 | Tool | Purpose | Input | Output | 5 | Tool | Purpose | Input | Output |
40 28
41 **Flux Simulation**: Gene Expression → RAS Generator → RAS to Bounds → Flux Simulation → Flux to Map 29 **Flux Simulation**: Gene Expression → RAS Generator → RAS to Bounds → Flux Simulation → Flux to Map
42 30
43 ## Usage Patterns 31 ## Usage Patterns
44 32
33 ### Galaxy Integration
34 All tools include Galaxy XML wrappers for web-based usage through the Galaxy interface.
35
45 ### Command Line Usage 36 ### Command Line Usage
46 ```bash 37 ```bash
47 # Basic pattern for all tools 38 # Basic pattern for all tools
48 tool_name -td $(pwd) [tool-specific options] 39 tool_name -td $(pwd) [tool-specific options]
49 40
50 # Example: Generate RAS scores 41 # Example: Generate RAS scores
51 ras_generator -td $(pwd) -in expression.tsv -ra ras_output.tsv -rs ENGRO2 42 ras_generator -td $(pwd) -in expression.tsv -ra ras_output.tsv -rs ENGRO2
52 ``` 43 ```
53
54 ### Python API Usage
55 ```python
56 import tool_module
57
58 # All tools accept argument lists
59 args = ['-td', '/path/to/cobraxy', '-in', 'input.tsv', '-out', 'output.tsv']
60 tool_module.main(args)
61 ```
62
63 ### Galaxy Integration
64 All tools include Galaxy XML wrappers for web-based usage through the Galaxy interface.
65 44
66 ## Parameter Reference 45 ## Parameter Reference
67 46
68 ### File Format Requirements 47 ### File Format Requirements
69 48
85 64
86 ### Built-in Models 65 ### Built-in Models
87 66
88 | Model | Organism | Reactions | Genes | Best For | 67 | Model | Organism | Reactions | Genes | Best For |
89 |-------|----------|-----------|-------|----------| 68 |-------|----------|-----------|-------|----------|
90 | **ENGRO2** | Human | ~2,000 | ~500 | Focused analysis, faster computation | 69 | **ENGRO2** | Human | ~500 | ~500 | Focused analysis, faster computation |
91 | **Recon** | Human | ~10,000 | ~2,000 | Comprehensive metabolism | 70 | **RECON3D** | Human | ~10,000 | ~2,000 | Comprehensive metabolism |
92 | **HMRcore** | Human | ~5,000 | ~1,000 | Balanced coverage |
93 71
94 ## Tool Selection Guide 72 ## Tool Selection Guide
95 73
96 ### Choose Your Analysis Path 74 ### Choose Your Analysis Path
97 75