CLI Reference¶
The atlantis CLI provides commands for the full simulation lifecycle.
Top-Level¶
atlantis [OPTIONS] COMMAND [ARGS]...
Commands: simulator, simulation, parca, analysis, compose,
demo, tui, gui, help.
Global option: --base-url selects the API server (default:
http://localhost:8080). Can also be set via the API_BASE_URL
environment variable.
help¶
Show help for the top-level CLI or any command group. The word help works
as a trailing argument at any nesting level:
uv run atlantis help
uv run atlantis help simulator
uv run atlantis simulator help # equivalent
uv run atlantis simulation run help # same as --help
simulator¶
Manage simulator (vEcoli) container images.
simulator latest¶
Fetch the latest commit, upload, and build a simulator image.
uv run atlantis simulator latest [OPTIONS]
Option |
Description |
|---|---|
|
Git repo URL. Defaults to the configured default. |
|
Git branch. Any branch on the target repo is accepted. Defaults to |
|
Force rebuild even if a completed build exists. |
simulator list¶
List registered simulator versions.
uv run atlantis simulator list
uv run atlantis simulator list --n 3 # first 3 (by ID)
uv run atlantis simulator list --n -1 # most recent
Option |
Description |
|
Number of entries. Positive = first N, negative = last N (by ID). |
simulator status¶
Get the container build status for a simulator.
uv run atlantis simulator status SIMULATOR_ID
simulation¶
Run and inspect simulation workflows.
simulation run¶
Submit a simulation workflow (parca -> simulation -> analysis).
uv run atlantis simulation run EXPERIMENT_ID SIMULATOR_ID [OPTIONS]
Option |
Default |
Description |
|---|---|---|
|
|
Simulation config preset |
|
1 |
Generations per seed |
|
3 |
Number of lineages |
|
auto |
Custom run description |
|
off |
Run parameter calculator first |
|
baseline (all analysis paths) |
Comma-separated dot-path observables to record. Limits simulation output to the specified vEcoli state paths. If omitted, uses the default baseline set (55 paths covering all analysis modules). |
|
repo-aware defaults |
JSON string specifying which analysis modules to run. Keys are
categories ( |
|
none |
Local data-source directories to sync to S3 before the workflow.
Repeat for multiple sources. Each is uploaded via |
|
|
S3 key prefix under the configured bucket for |
|
off |
Pass |
|
off |
Poll until completion |
Examples:
# Minimal: 1 generation, 1 seed, default observables
uv run atlantis simulation run my-experiment 11
# Large-scale: 10 generations, 1000 seeds, with parca
uv run atlantis simulation run baseline-1k 11 --generations 10 --seeds 1000 --run-parca
# Poll until completion
uv run atlantis simulation run quick-test 11 --generations 1 --seeds 1 --poll
# Custom observables (only mass and bulk)
uv run atlantis simulation run mass-only 11 --observables "bulk,listeners.mass.cell_mass,listeners.mass.dry_mass"
# Custom analysis modules
uv run atlantis simulation run my-exp 11 \
--analysis-options '{"multiseed": {"ptools_rna": {"n_tp": 10}, "ptools_rxns": {"n_tp": 10}}}'
# Sync local data sources to S3 before running (ecoli-sources workflow)
uv run atlantis simulation run my-exp 11 \
--sources ../ecoli-sources --sources ../ecoli-sources-vegas \
--run-parca --poll
# Target a specific server
uv run atlantis simulation run test1 11 --base-url https://sms.cam.uchc.edu
# With a custom config preset and description
uv run atlantis simulation run violacein-run 12 \
--config-filename api_test_violacein_with_metabolism.json \
--generations 5 --seeds 10 \
--description "Violacein pathway test with metabolism" \
--poll
simulation get¶
Get a simulation by its database ID.
uv run atlantis simulation get SIMULATION_ID
simulation list¶
List simulations.
uv run atlantis simulation list
uv run atlantis simulation list --n -1 # most recent simulation
uv run atlantis simulation list --n 5 # first 5 (by ID)
Option |
Description |
|
Number of entries. Positive = first N, negative = last N (by ID). |
simulation configs¶
List available config filenames for a simulator’s repo. The available configs depend on what exists in the simulator’s vEcoli commit.
uv run atlantis simulation configs SIMULATOR_ID
simulation analyses¶
List available analysis modules for a simulator’s repo, grouped by category (single, multiseed, multigeneration, etc.).
uv run atlantis simulation analyses SIMULATOR_ID
Example:
# Discover what analyses are available before submitting
uv run atlantis simulation analyses 16 --base-url http://localhost:8080
# Then use a discovered module in a run
uv run atlantis simulation run my-exp 16 \
--analysis-options '{"multiseed": {"protein_counts_validation": {}}}'
simulation status¶
Show the workflow log tail and status for a simulation. Displays the Nextflow executor summary block (last progress snapshot) followed by a status panel. Fast even for large simulations — only the log tail is rendered.
uv run atlantis simulation status SIMULATION_ID [--poll]
Use --poll to keep checking until the simulation reaches a terminal state.
simulation log¶
Show the full Nextflow workflow log for a simulation (any state).
uv run atlantis simulation log SIMULATION_ID
simulation cancel¶
Cancel a running simulation.
uv run atlantis simulation cancel SIMULATION_ID
simulation outputs¶
Download simulation output data as a tar.gz archive.
uv run atlantis simulation outputs SIMULATION_ID [--dest DIR]
--dest defaults to ./simulation_id_<ID>.
simulation analysis¶
Run standalone analysis on existing simulation output. Useful for re-running specific analysis modules on a completed simulation without re-running the entire workflow.
uv run atlantis simulation analysis SIMULATION_ID [--modules JSON]
Option |
Description |
|---|---|
|
JSON string of analysis modules keyed by domain.
E.g. |
Examples:
# Default ptools analysis on simulation 44
uv run atlantis simulation analysis 44
# Specific modules only
uv run atlantis simulation analysis 44 \
--modules '{"multiseed": {"ptools_rna": {"n_tp": 10}, "cd1_fluxomics": {"generation_lower_bound": 5}}}'
parca¶
Inspect parca (parameter calculator) datasets and runs.
parca list¶
uv run atlantis parca list
uv run atlantis parca list --n -3 # last 3 parca datasets
Option |
Description |
|
Number of entries. Positive = first N, negative = last N (by ID). |
parca status¶
uv run atlantis parca status PARCA_ID
analysis¶
Inspect analysis jobs and outputs.
analysis get / status / log / plots¶
uv run atlantis analysis get ANALYSIS_ID
uv run atlantis analysis status ANALYSIS_ID
uv run atlantis analysis log ANALYSIS_ID
uv run atlantis analysis plots ANALYSIS_ID
Application Launchers¶
tui¶
Launch the interactive terminal UI.
uv run atlantis tui [--base-url URL]
Three navigation buttons (Simulations, Simulators, Analyses) with auto-listing and status enrichment. Double-click a completed simulation to browse its output files interactively.
gui¶
Launch the Marimo web GUI (opens in browser).
uv run atlantis gui [--base-url URL]
compose¶
Compose (process-bigraph) simulation commands. See compose for full documentation.
compose run¶
Upload an OMEX, PBG, or SBML file and submit a compose simulation:
uv run atlantis compose run mymodel.omex --poll --base-url URL
compose ecoli¶
Run a v2ecoli whole-cell E. coli simulation (no file upload needed):
uv run atlantis compose ecoli --duration 60 --seed 0 --poll --base-url URL
compose copasi¶
Run a COPASI simulation from an SBML file:
uv run atlantis compose copasi model.sbml --duration 100 --num-data-points 200
compose tellurium¶
Run a Tellurium simulation from an SBML file:
uv run atlantis compose tellurium model.sbml --end-time 100 --num-data-points 200
compose status / results / doc¶
uv run atlantis compose status <ID>
uv run atlantis compose results <ID> --dest ./output
uv run atlantis compose doc <ID>
compose simulators / processes / steps / build-status¶
uv run atlantis compose simulators
uv run atlantis compose processes
uv run atlantis compose steps
uv run atlantis compose build-status <SIMULATOR_ID>
demo¶
demo get-data¶
Download S3 simulation outputs directly (no running API server needed).
uv run atlantis demo get-data [--dest DIR]
Requires TEST_BUCKET_EXPERIMENT_OUTDIR and S3 credentials in environment.
Observables¶
The --observables flag controls which vEcoli state paths are recorded in
simulation output. Each observable is a dot-separated path that maps to a node
in the simulation state tree:
bulk # all bulk molecule counts
listeners.mass.cell_mass # scalar cell mass
listeners.fba_results.base_reaction_fluxes # FBA fluxes
listeners.monomer_counts # protein counts
When omitted, the baseline set (55 paths) is used automatically. This set
covers every analysis module shipped with vEcoli (single, multigeneration,
multiseed, multivariant). The full list is defined in
sms_api.common.simulator_defaults.DEFAULT_OBSERVABLES.
To emit all simulation data (no filtering), pass an empty string:
--observables "".
Note
The baseline observables reference file is also available at
assets/observables_baseline.json in the repository.