bio-comparative-genomics-hgt-detection
Detect horizontal gene transfer events in microbial genomes.
Maintainer K-Dense Inc. · Last updated April 1, 2026
COBRApy is a Python library for constraint-based reconstruction and analysis (COBRA) of metabolic models, essential for systems biology research. Work with genome-scale metabolic models, perform computational simulations of cellular metabolism, conduct metabolic engineering analyses, and predict phenotypic behaviors.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/cobrapy
Skill Snapshot
Source Doc
COBRApy provides comprehensive tools organized into several key areas:
Load existing models from repositories or files:
from cobra.io import load_model
## Load from files
from cobra.io import read_sbml_model, load_json_model, load_yaml_model
model = read_sbml_model("path/to/model.xml")
model = load_json_model("path/to/model.json")
model = load_yaml_model("path/to/model.yml")
python
from cobra.io import write_sbml_model, save_json_model, save_yaml_model
write_sbml_model(model, "output.xml") # Preferred format
save_json_model(model, "output.json") # For Escher compatibility
save_yaml_model(model, "output.yml") # Human-readable
Related skills
Detect horizontal gene transfer events in microbial genomes.
Detects differential alternative splicing between conditions using rMATS-turbo (BAM-based) or SUPPA2 diffSplice (TPM-based). Reports events…
Map between Ensembl, Entrez, HGNC, and gene symbol identifiers.
Bead-based normalization for CyTOF and high-parameter flow cytometry. Covers EQ bead normalization, signal drift correction, and batch norma…