Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 873 Bytes

File metadata and controls

40 lines (33 loc) · 873 Bytes

SIMULATION

Overview

Evolutionary and Population Genetics Simulation module for METAINFORMANT.

Contents

  • models/
  • visualization/
  • workflow/
  • [__init__.py](__init__.py)

Structure

graph TD
    subgraph "Simulation Module"
        M[models/] --> |sequences.py| SQ[Sequence Evolution]
        M --> |popgen.py| PG[Population Genetics]
        M --> |rna.py| RN[RNA-seq Counts]
        M --> |agents.py| AG[Agent-Based Ecosystems]

        W[workflow/] --> |workflow.py| WF[SimulationConfig & Orchestration]
        V[visualization/] --> |visualization.py| VZ[Simulation Plots]
        B[benchmark/] --> BM[Performance Benchmarks]
    end

    WF --> SQ
    WF --> PG
    WF --> RN
    WF --> AG
    SQ --> VZ
    PG --> VZ
    AG --> VZ
Loading

Usage

Import module:

from metainformant.simulation import ...