ANDREA 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- andrea-0.1.0/ANDREA.egg-info/PKG-INFO +147 -0
- andrea-0.1.0/ANDREA.egg-info/SOURCES.txt +277 -0
- andrea-0.1.0/ANDREA.egg-info/dependency_links.txt +1 -0
- andrea-0.1.0/ANDREA.egg-info/entry_points.txt +2 -0
- andrea-0.1.0/ANDREA.egg-info/requires.txt +23 -0
- andrea-0.1.0/ANDREA.egg-info/top_level.txt +1 -0
- andrea-0.1.0/LICENSE +21 -0
- andrea-0.1.0/PKG-INFO +147 -0
- andrea-0.1.0/README.md +100 -0
- andrea-0.1.0/andrea/__init__.py +5 -0
- andrea-0.1.0/andrea/__main__.py +15 -0
- andrea-0.1.0/andrea/catalog_inference_tools/__init__.py +1 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/cell_cell_interactions.json +64 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/chromatin_accessibility.json +20 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/chromatin_regions.json +23 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/cluster_identities.json +30 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/cluster_markers.json +35 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/column_descriptors.json +25 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/column_phenotypes.json +29 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/enrichment_background.json +9 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/expression_matrix.json +30 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/grnboost_network.json +32 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/groups.json +20 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/interventions.json +32 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/lineage_tree.json +18 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/perturbation_design.json +39 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/prior_grn.json +20 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/prior_grn_by_group.json +27 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/pseudotime.json +27 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/replicates.json +31 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/spatial_coordinates.json +32 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/terms_of_interest.json +9 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/tf_list.json +11 -0
- andrea-0.1.0/andrea/catalog_inference_tools/input_specs/timepoints.json +28 -0
- andrea-0.1.0/andrea/catalog_inference_tools/schemas/dataset-manifest.schema.json +456 -0
- andrea-0.1.0/andrea/catalog_inference_tools/schemas/input-spec.schema.json +152 -0
- andrea-0.1.0/andrea/catalog_inference_tools/schemas/toolcost.schema.json +460 -0
- andrea-0.1.0/andrea/catalog_inference_tools/schemas/toolspec.schema.json +781 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/aracne3/cost.json +2434 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/aracne3/toolspec.json +204 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/cespgrn/cost.json +5083 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/cespgrn/toolspec.json +303 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/clr/cost.json +715 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/clr/toolspec.json +129 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/dignet/cost.json +911 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/dignet/toolspec.json +516 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/genie3/cost.json +4808 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/genie3/toolspec.json +183 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/grnboost2/cost.json +4804 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/grnboost2/toolspec.json +190 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/infercsn/cost.json +3668 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/infercsn/toolspec.json +221 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/inferelator3/cost.json +3626 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/inferelator3/toolspec.json +187 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/kscreni/cost.json +2389 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/kscreni/toolspec.json +117 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/lioness/cost.json +691 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/lioness/toolspec.json +97 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/metasem/cost.json +3351 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/metasem/toolspec.json +190 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/miniex3/cost.json +1225 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/miniex3/toolspec.json +314 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/pidc/cost.json +3597 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/pidc/toolspec.json +143 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/planet/cost.json +915 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/planet/toolspec.json +524 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/ppcor/cost.json +1397 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/ppcor/toolspec.json +125 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/pyscenic/cost.json +4787 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/pyscenic/toolspec.json +141 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scgenerai/cost.json +2497 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scgenerai/toolspec.json +146 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scing/cost.json +1687 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scing/toolspec.json +257 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scminer/cost.json +1001 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scminer/toolspec.json +335 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scmtni/cost.json +2420 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scmtni/toolspec.json +152 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scregulate/cost.json +3437 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scregulate/toolspec.json +414 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scsgl/cost.json +1068 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/scsgl/toolspec.json +165 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/simic/cost.json +1220 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/simic/toolspec.json +206 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/tigress/cost.json +4820 -0
- andrea-0.1.0/andrea/catalog_inference_tools/tools/tigress/toolspec.json +170 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/__init__.py +1 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/boolode_boolean_model.json +23 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/boolode_initial_conditions.json +22 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/boolode_interaction_strengths.json +23 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/gnw_dynamical_network.json +15 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/groundgan_causal_controller_checkpoint.json +14 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/groundgan_causal_graph_pickle.json +15 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/groundgan_model_checkpoint.json +14 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/groundgan_reference_h5ad.json +16 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/regulatory_network.json +23 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/sergio_bifurcation_matrix.json +18 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/sergio_master_regulators.json +18 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/sergio_target_interactions.json +19 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/syntren_externals_table.json +21 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/syntren_source_network_sif.json +14 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/input_specs/tree_newick.json +14 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/benchmark-manifest.schema.json +824 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/ground-truth-manifest.schema.json +245 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/input-spec.schema.json +151 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/preflight-report.schema.json +442 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/scenario-request.schema.json +415 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/simulation-plan.schema.json +702 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/simulator-output-manifest.schema.json +451 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/simulator-runs.schema.json +64 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/simulatorcost.schema.json +792 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/schemas/simulatorspec.schema.json +1212 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/boolode/cost.json +1195 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/boolode/simulatorspec.json +705 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/dyngen/cost.json +66978 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/dyngen/simulatorspec.json +3062 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/genenetweaver/cost.json +1866 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/genenetweaver/simulatorspec.json +884 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/genespider2/cost.json +5994 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/genespider2/simulatorspec.json +1332 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/groundgan/cost.json +9702 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/groundgan/simulatorspec.json +582 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/scmultisim/cost.json +78510 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/scmultisim/simulatorspec.json +3262 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/sergio/cost.json +2691 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/sergio/simulatorspec.json +1812 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/syntren/cost.json +1850 -0
- andrea-0.1.0/andrea/catalog_simulation_data_tools/simulators/syntren/simulatorspec.json +731 -0
- andrea-0.1.0/andrea/cli/__init__.py +1 -0
- andrea-0.1.0/andrea/cli/app.py +741 -0
- andrea-0.1.0/andrea/config.py +12 -0
- andrea-0.1.0/andrea/core/__init__.py +1 -0
- andrea-0.1.0/andrea/core/commands/__init__.py +1 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/__init__.py +5 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/bundles.py +97 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/comparison.py +278 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/distances.py +806 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/loading.py +237 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/models.py +133 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/request.py +79 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/store.py +1651 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/tables.py +334 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/utils.py +82 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/view.py +36 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/view_assets/__init__.py +1 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/view_assets/template.html +18 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/view_assets/view.css +347 -0
- andrea-0.1.0/andrea/core/commands/compare_networks/view_assets/view.js +328 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/__init__.py +5 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/bundles.py +82 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/evaluation.py +1238 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/view_assets/__init__.py +1 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/view_assets/template.html +18 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/view_assets/view.css +455 -0
- andrea-0.1.0/andrea/core/commands/evaluate_inference/view_assets/view.js +604 -0
- andrea-0.1.0/andrea/core/commands/generate_data/__init__.py +19 -0
- andrea-0.1.0/andrea/core/commands/generate_data/backends/__init__.py +1 -0
- andrea-0.1.0/andrea/core/commands/generate_data/backends/docker_runner.py +203 -0
- andrea-0.1.0/andrea/core/commands/generate_data/backends/registry.py +30 -0
- andrea-0.1.0/andrea/core/commands/generate_data/bootstrap.py +300 -0
- andrea-0.1.0/andrea/core/commands/generate_data/bundles.py +176 -0
- andrea-0.1.0/andrea/core/commands/generate_data/catalog.py +138 -0
- andrea-0.1.0/andrea/core/commands/generate_data/cost_planner.py +939 -0
- andrea-0.1.0/andrea/core/commands/generate_data/output_validation.py +523 -0
- andrea-0.1.0/andrea/core/commands/generate_data/pipeline.py +1101 -0
- andrea-0.1.0/andrea/core/commands/generate_data/plan.py +284 -0
- andrea-0.1.0/andrea/core/commands/generate_data/request.py +1238 -0
- andrea-0.1.0/andrea/core/commands/generate_data/scenario.py +100 -0
- andrea-0.1.0/andrea/core/commands/generate_data/selection.py +297 -0
- andrea-0.1.0/andrea/core/commands/generate_data/semantic.py +351 -0
- andrea-0.1.0/andrea/core/commands/generate_data/shared.py +98 -0
- andrea-0.1.0/andrea/core/commands/infer_network/__init__.py +13 -0
- andrea-0.1.0/andrea/core/commands/infer_network/bundles.py +212 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/__init__.py +11 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/artifacts.py +270 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/catalog.py +134 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/custom_tools.py +282 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/dataset.py +446 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/execution_state.py +992 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/merge.py +299 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/network_exports.py +463 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/planner.py +1253 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/runtime_helpers.py +583 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/shared.py +145 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/threading.py +93 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/tool_rule_eval.py +201 -0
- andrea-0.1.0/andrea/core/commands/infer_network/commons/tools.py +752 -0
- andrea-0.1.0/andrea/core/commands/infer_network/pipeline.py +53 -0
- andrea-0.1.0/andrea/core/commands/infer_network/plan.py +760 -0
- andrea-0.1.0/andrea/core/commands/infer_network/preflight.py +314 -0
- andrea-0.1.0/andrea/core/commands/infer_network/run.py +1340 -0
- andrea-0.1.0/andrea/core/shared/__init__.py +17 -0
- andrea-0.1.0/andrea/core/shared/bundles.py +177 -0
- andrea-0.1.0/andrea/core/shared/catalog_contracts.py +40 -0
- andrea-0.1.0/andrea/core/shared/compatibility_rules.py +95 -0
- andrea-0.1.0/andrea/core/shared/container_runtime.py +39 -0
- andrea-0.1.0/andrea/core/shared/input_specs.py +39 -0
- andrea-0.1.0/andrea/core/shared/input_validation.py +648 -0
- andrea-0.1.0/andrea/core/shared/issues.py +42 -0
- andrea-0.1.0/andrea/core/shared/json_io.py +51 -0
- andrea-0.1.0/andrea/core/shared/network_context.py +99 -0
- andrea-0.1.0/andrea/core/shared/param_validation.py +165 -0
- andrea-0.1.0/andrea/core/shared/paths.py +23 -0
- andrea-0.1.0/andrea/core/shared/progress.py +28 -0
- andrea-0.1.0/andrea/core/shared/runtime_profile.py +59 -0
- andrea-0.1.0/andrea/gui/__init__.py +1 -0
- andrea-0.1.0/andrea/gui/common/__init__.py +1 -0
- andrea-0.1.0/andrea/gui/common/reproducibility.py +77 -0
- andrea-0.1.0/andrea/gui/common/server_files.py +386 -0
- andrea-0.1.0/andrea/gui/common/server_jobs.py +145 -0
- andrea-0.1.0/andrea/gui/common/static/app/bundles/modal.js +434 -0
- andrea-0.1.0/andrea/gui/common/static/app/bundles/styles.css +257 -0
- andrea-0.1.0/andrea/gui/common/static/app/buttons/styles.css +381 -0
- andrea-0.1.0/andrea/gui/common/static/app/core/dom.js +95 -0
- andrea-0.1.0/andrea/gui/common/static/app/files/explorer.js +679 -0
- andrea-0.1.0/andrea/gui/common/static/app/network_context.js +82 -0
- andrea-0.1.0/andrea/gui/common/static/app/params/schema_form.js +613 -0
- andrea-0.1.0/andrea/gui/common/static/app/params/styles.css +66 -0
- andrea-0.1.0/andrea/gui/common/static/app/repro/styles.css +121 -0
- andrea-0.1.0/andrea/gui/common/static/app/repro/view.js +160 -0
- andrea-0.1.0/andrea/gui/common/static/app/runtime/view.js +83 -0
- andrea-0.1.0/andrea/gui/common/static/app/ui/popovers.css +412 -0
- andrea-0.1.0/andrea/gui/common/static/app/ui/popovers.js +627 -0
- andrea-0.1.0/andrea/gui/common/static/app/ui/steps.js +28 -0
- andrea-0.1.0/andrea/gui/common/static/app/ui/toasts.css +72 -0
- andrea-0.1.0/andrea/gui/common/static/app/ui/toasts.js +37 -0
- andrea-0.1.0/andrea/gui/common/static/app/uploads/progress.js +160 -0
- andrea-0.1.0/andrea/gui/common/static/app/uploads/styles.css +327 -0
- andrea-0.1.0/andrea/gui/compare_networks/__init__.py +1 -0
- andrea-0.1.0/andrea/gui/compare_networks/server.py +996 -0
- andrea-0.1.0/andrea/gui/compare_networks/static/app/main.js +2167 -0
- andrea-0.1.0/andrea/gui/compare_networks/static/app/shared.js +51 -0
- andrea-0.1.0/andrea/gui/compare_networks/static/index.html +160 -0
- andrea-0.1.0/andrea/gui/compare_networks/static/styles.css +1216 -0
- andrea-0.1.0/andrea/gui/evaluate_inference/__init__.py +1 -0
- andrea-0.1.0/andrea/gui/evaluate_inference/server.py +642 -0
- andrea-0.1.0/andrea/gui/evaluate_inference/static/app/main.js +264 -0
- andrea-0.1.0/andrea/gui/evaluate_inference/static/index.html +159 -0
- andrea-0.1.0/andrea/gui/evaluate_inference/static/styles.css +185 -0
- andrea-0.1.0/andrea/gui/generate_data/__init__.py +1 -0
- andrea-0.1.0/andrea/gui/generate_data/server.py +1528 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/execution_view.js +70 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/main.js +3017 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/plan_view.js +119 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/preflight_view.js +173 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/runs.js +58 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/scenario_templates.js +519 -0
- andrea-0.1.0/andrea/gui/generate_data/static/app/simulator_catalog.js +146 -0
- andrea-0.1.0/andrea/gui/generate_data/static/index.html +424 -0
- andrea-0.1.0/andrea/gui/generate_data/static/styles.css +2514 -0
- andrea-0.1.0/andrea/gui/infer_network/__init__.py +1 -0
- andrea-0.1.0/andrea/gui/infer_network/server.py +2688 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/catalog/external_tools.js +507 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/catalog/model.js +419 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/catalog/view.js +174 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/core/api.js +70 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/core/dom.js +1 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/core/state.js +31 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/dataset/expression.js +105 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/dataset/extras.js +435 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/dataset/validation.js +224 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/files/explorer.js +42 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/jobs/controller.js +353 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/main.js +802 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/plan/view.js +396 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/preflight/view.js +118 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/repro/view.js +46 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/runs/cards.js +506 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/runs/execution_modes.js +32 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/runs/params_modal.js +93 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/runtime/view.js +1346 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/ui/popovers.js +1 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/ui/steps.js +16 -0
- andrea-0.1.0/andrea/gui/infer_network/static/app/ui/toasts.js +1 -0
- andrea-0.1.0/andrea/gui/infer_network/static/index.html +638 -0
- andrea-0.1.0/andrea/gui/infer_network/static/styles.css +3152 -0
- andrea-0.1.0/pyproject.toml +134 -0
- andrea-0.1.0/setup.cfg +4 -0
- andrea-0.1.0/tests/test_cli_bootstrap.py +65 -0
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ANDREA
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Platform for aggregated network discovery, simulation, inference, and benchmarking workflows.
|
|
5
|
+
Author-email: Adrian Segura Ortiz <adrianseor.99@uma.es>, "George K. Georgakilas" <ggeorgakilas@athenarc.gr>, Theodore Dalamagas <dalamag@athenarc.gr>, "Jose F. Aldana-Montes" <jfaldana@uma.es>
|
|
6
|
+
Maintainer-email: Adrian Segura Ortiz <adrianseor.99@uma.es>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/AdrianSeguraOrtiz/ANDREA
|
|
9
|
+
Project-URL: Repository, https://github.com/AdrianSeguraOrtiz/ANDREA
|
|
10
|
+
Project-URL: Issues, https://github.com/AdrianSeguraOrtiz/ANDREA/issues
|
|
11
|
+
Project-URL: Documentation, https://github.com/AdrianSeguraOrtiz/ANDREA/tree/main/docs
|
|
12
|
+
Keywords: gene regulatory networks,GRN inference,benchmarking,single-cell,systems biology,bioinformatics
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Environment :: Web Environment
|
|
16
|
+
Classifier: Framework :: FastAPI
|
|
17
|
+
Classifier: Intended Audience :: Science/Research
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
24
|
+
Requires-Python: <3.14,>=3.11
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
License-File: LICENSE
|
|
27
|
+
Requires-Dist: numpy<2.5,>=2.0.2; python_version < "3.12"
|
|
28
|
+
Requires-Dist: typer<0.24.0,>=0.23.1
|
|
29
|
+
Requires-Dist: rich<16.0.0,>=15.0.0
|
|
30
|
+
Requires-Dist: docker<8.0.0,>=7.1.0
|
|
31
|
+
Requires-Dist: jsonschema<5.0.0,>=4.25.0
|
|
32
|
+
Requires-Dist: pandas<3.0.0,>=2.3.0
|
|
33
|
+
Requires-Dist: ortools<10.0,>=9.10
|
|
34
|
+
Requires-Dist: fastapi<0.116.0,>=0.115.0
|
|
35
|
+
Requires-Dist: uvicorn<0.35.0,>=0.34.0
|
|
36
|
+
Requires-Dist: python-multipart<0.0.21,>=0.0.20
|
|
37
|
+
Requires-Dist: aiofiles<25.0.0,>=24.1.0
|
|
38
|
+
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: pytest<9.0.0,>=8.4.0; extra == "dev"
|
|
40
|
+
Requires-Dist: httpx<0.29.0,>=0.28.0; extra == "dev"
|
|
41
|
+
Requires-Dist: black<25.0.0,>=24.0.0; extra == "dev"
|
|
42
|
+
Requires-Dist: isort<6.0.0,>=5.13.0; extra == "dev"
|
|
43
|
+
Provides-Extra: release
|
|
44
|
+
Requires-Dist: build<2.0.0,>=1.2.0; extra == "release"
|
|
45
|
+
Requires-Dist: twine<7.0.0,>=6.0.0; extra == "release"
|
|
46
|
+
Dynamic: license-file
|
|
47
|
+
|
|
48
|
+
# ANDREA
|
|
49
|
+
|
|
50
|
+
**Automated Network Discovery, Reproducible Evaluation and Analysis**
|
|
51
|
+
|
|
52
|
+
ANDREA is a catalog-driven platform for generating benchmark expression
|
|
53
|
+
datasets, running gene regulatory network (GRN) inference tools, evaluating
|
|
54
|
+
inferred networks against reference truth and comparing networks across tools,
|
|
55
|
+
contexts and runs. It exposes the same workflows through a command-line
|
|
56
|
+
interface and local browser GUIs, while keeping public artifacts as plain JSON,
|
|
57
|
+
CSV, SQLite and ZIP files.
|
|
58
|
+
|
|
59
|
+
<p align="center">
|
|
60
|
+
<img src="docs/assets/andrea_overview.png" alt="ANDREA workflow overview" width="92%">
|
|
61
|
+
</p>
|
|
62
|
+
|
|
63
|
+
## What ANDREA Provides
|
|
64
|
+
|
|
65
|
+
- A standardized catalog of simulator and inference-tool integrations, with
|
|
66
|
+
compatibility rules, parameter schemas, Docker wrappers and provenance
|
|
67
|
+
metadata.
|
|
68
|
+
- Four interoperable workflows:
|
|
69
|
+
`generate-data -> infer-network -> evaluate-inference -> compare-networks`.
|
|
70
|
+
- Strict handoff bundles so outputs from one command can be consumed directly
|
|
71
|
+
by the next one.
|
|
72
|
+
- Context-aware handling of global, group-level and column-level network
|
|
73
|
+
outputs, including emulated and aggregated execution strategies where
|
|
74
|
+
appropriate.
|
|
75
|
+
- Cost-aware planning and execution orchestration for Dockerized simulator and
|
|
76
|
+
inference wrappers.
|
|
77
|
+
- Evaluation reports and interactive comparison views for distance maps,
|
|
78
|
+
metric overlays and edge-level differences.
|
|
79
|
+
- Support for temporary external Docker inference tools that follow ANDREA's
|
|
80
|
+
standard container contract.
|
|
81
|
+
|
|
82
|
+
## Installation
|
|
83
|
+
|
|
84
|
+
Install the release package:
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
pip install ANDREA
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
For a development checkout:
|
|
91
|
+
|
|
92
|
+
```sh
|
|
93
|
+
git clone https://github.com/AdrianSeguraOrtiz/ANDREA.git
|
|
94
|
+
cd ANDREA
|
|
95
|
+
python -m pip install -e ".[dev]"
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Docker is required for workflows that execute simulator or inference wrappers.
|
|
99
|
+
See [docs/installation.md](docs/installation.md) for the full setup notes.
|
|
100
|
+
|
|
101
|
+
## Quick Start
|
|
102
|
+
|
|
103
|
+
Inspect the CLI:
|
|
104
|
+
|
|
105
|
+
```sh
|
|
106
|
+
andrea --help
|
|
107
|
+
andrea generate-data --help
|
|
108
|
+
andrea infer-network --help
|
|
109
|
+
andrea evaluate-inference --help
|
|
110
|
+
andrea compare-networks --help
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Open the local GUIs:
|
|
114
|
+
|
|
115
|
+
```sh
|
|
116
|
+
andrea gui generate-data
|
|
117
|
+
andrea gui infer-network
|
|
118
|
+
andrea gui evaluate-inference
|
|
119
|
+
andrea gui compare-networks
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
The GUIs are local browser applications. ZIP bundles are mainly intended for
|
|
123
|
+
GUI handoff; CLI and Python users can usually pass report JSON paths directly.
|
|
124
|
+
|
|
125
|
+
## Workflows
|
|
126
|
+
|
|
127
|
+
| Command | Purpose | Key outputs |
|
|
128
|
+
|---|---|---|
|
|
129
|
+
| `generate-data` | Build synthetic benchmark datasets from simulator catalogs. | `expression.tsv`, `truth/networks.csv`, manifests and analysis bundles. |
|
|
130
|
+
| `infer-network` | Run catalog or external Docker inference tools against standardized datasets. | Per-run networks, merged normalized networks, graph exports and run reports. |
|
|
131
|
+
| `evaluate-inference` | Score inferred networks against simulator or user-provided truth. | Metric tables, pairing tables, `evaluation_report.json` and visual summaries. |
|
|
132
|
+
| `compare-networks` | Compare networks across tools, sources, parameters and contexts. | Distance tables, coordinates, `comparison.sqlite`, edge differences and reports. |
|
|
133
|
+
|
|
134
|
+
See [docs/workflows.md](docs/workflows.md) for the workflow contracts and
|
|
135
|
+
[docs/gui.md](docs/gui.md), [docs/cli.md](docs/cli.md) and
|
|
136
|
+
[docs/core.md](docs/core.md) for GUI, command-line and Python usage.
|
|
137
|
+
|
|
138
|
+
## Documentation
|
|
139
|
+
|
|
140
|
+
- [Installation](docs/installation.md)
|
|
141
|
+
- [Workflow contracts](docs/workflows.md)
|
|
142
|
+
- [GUI guide](docs/gui.md)
|
|
143
|
+
- [CLI guide](docs/cli.md)
|
|
144
|
+
- [Core Python guide](docs/core.md)
|
|
145
|
+
- [Catalogs and coverage](docs/catalogs.md)
|
|
146
|
+
- [External Docker tools](docs/external-docker-tools.md)
|
|
147
|
+
- [Full documentation index](docs/README.md)
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
ANDREA.egg-info/PKG-INFO
|
|
5
|
+
ANDREA.egg-info/SOURCES.txt
|
|
6
|
+
ANDREA.egg-info/dependency_links.txt
|
|
7
|
+
ANDREA.egg-info/entry_points.txt
|
|
8
|
+
ANDREA.egg-info/requires.txt
|
|
9
|
+
ANDREA.egg-info/top_level.txt
|
|
10
|
+
andrea/__init__.py
|
|
11
|
+
andrea/__main__.py
|
|
12
|
+
andrea/config.py
|
|
13
|
+
andrea/catalog_inference_tools/__init__.py
|
|
14
|
+
andrea/catalog_inference_tools/input_specs/cell_cell_interactions.json
|
|
15
|
+
andrea/catalog_inference_tools/input_specs/chromatin_accessibility.json
|
|
16
|
+
andrea/catalog_inference_tools/input_specs/chromatin_regions.json
|
|
17
|
+
andrea/catalog_inference_tools/input_specs/cluster_identities.json
|
|
18
|
+
andrea/catalog_inference_tools/input_specs/cluster_markers.json
|
|
19
|
+
andrea/catalog_inference_tools/input_specs/column_descriptors.json
|
|
20
|
+
andrea/catalog_inference_tools/input_specs/column_phenotypes.json
|
|
21
|
+
andrea/catalog_inference_tools/input_specs/enrichment_background.json
|
|
22
|
+
andrea/catalog_inference_tools/input_specs/expression_matrix.json
|
|
23
|
+
andrea/catalog_inference_tools/input_specs/grnboost_network.json
|
|
24
|
+
andrea/catalog_inference_tools/input_specs/groups.json
|
|
25
|
+
andrea/catalog_inference_tools/input_specs/interventions.json
|
|
26
|
+
andrea/catalog_inference_tools/input_specs/lineage_tree.json
|
|
27
|
+
andrea/catalog_inference_tools/input_specs/perturbation_design.json
|
|
28
|
+
andrea/catalog_inference_tools/input_specs/prior_grn.json
|
|
29
|
+
andrea/catalog_inference_tools/input_specs/prior_grn_by_group.json
|
|
30
|
+
andrea/catalog_inference_tools/input_specs/pseudotime.json
|
|
31
|
+
andrea/catalog_inference_tools/input_specs/replicates.json
|
|
32
|
+
andrea/catalog_inference_tools/input_specs/spatial_coordinates.json
|
|
33
|
+
andrea/catalog_inference_tools/input_specs/terms_of_interest.json
|
|
34
|
+
andrea/catalog_inference_tools/input_specs/tf_list.json
|
|
35
|
+
andrea/catalog_inference_tools/input_specs/timepoints.json
|
|
36
|
+
andrea/catalog_inference_tools/schemas/dataset-manifest.schema.json
|
|
37
|
+
andrea/catalog_inference_tools/schemas/input-spec.schema.json
|
|
38
|
+
andrea/catalog_inference_tools/schemas/toolcost.schema.json
|
|
39
|
+
andrea/catalog_inference_tools/schemas/toolspec.schema.json
|
|
40
|
+
andrea/catalog_inference_tools/tools/aracne3/cost.json
|
|
41
|
+
andrea/catalog_inference_tools/tools/aracne3/toolspec.json
|
|
42
|
+
andrea/catalog_inference_tools/tools/cespgrn/cost.json
|
|
43
|
+
andrea/catalog_inference_tools/tools/cespgrn/toolspec.json
|
|
44
|
+
andrea/catalog_inference_tools/tools/clr/cost.json
|
|
45
|
+
andrea/catalog_inference_tools/tools/clr/toolspec.json
|
|
46
|
+
andrea/catalog_inference_tools/tools/dignet/cost.json
|
|
47
|
+
andrea/catalog_inference_tools/tools/dignet/toolspec.json
|
|
48
|
+
andrea/catalog_inference_tools/tools/genie3/cost.json
|
|
49
|
+
andrea/catalog_inference_tools/tools/genie3/toolspec.json
|
|
50
|
+
andrea/catalog_inference_tools/tools/grnboost2/cost.json
|
|
51
|
+
andrea/catalog_inference_tools/tools/grnboost2/toolspec.json
|
|
52
|
+
andrea/catalog_inference_tools/tools/infercsn/cost.json
|
|
53
|
+
andrea/catalog_inference_tools/tools/infercsn/toolspec.json
|
|
54
|
+
andrea/catalog_inference_tools/tools/inferelator3/cost.json
|
|
55
|
+
andrea/catalog_inference_tools/tools/inferelator3/toolspec.json
|
|
56
|
+
andrea/catalog_inference_tools/tools/kscreni/cost.json
|
|
57
|
+
andrea/catalog_inference_tools/tools/kscreni/toolspec.json
|
|
58
|
+
andrea/catalog_inference_tools/tools/lioness/cost.json
|
|
59
|
+
andrea/catalog_inference_tools/tools/lioness/toolspec.json
|
|
60
|
+
andrea/catalog_inference_tools/tools/metasem/cost.json
|
|
61
|
+
andrea/catalog_inference_tools/tools/metasem/toolspec.json
|
|
62
|
+
andrea/catalog_inference_tools/tools/miniex3/cost.json
|
|
63
|
+
andrea/catalog_inference_tools/tools/miniex3/toolspec.json
|
|
64
|
+
andrea/catalog_inference_tools/tools/pidc/cost.json
|
|
65
|
+
andrea/catalog_inference_tools/tools/pidc/toolspec.json
|
|
66
|
+
andrea/catalog_inference_tools/tools/planet/cost.json
|
|
67
|
+
andrea/catalog_inference_tools/tools/planet/toolspec.json
|
|
68
|
+
andrea/catalog_inference_tools/tools/ppcor/cost.json
|
|
69
|
+
andrea/catalog_inference_tools/tools/ppcor/toolspec.json
|
|
70
|
+
andrea/catalog_inference_tools/tools/pyscenic/cost.json
|
|
71
|
+
andrea/catalog_inference_tools/tools/pyscenic/toolspec.json
|
|
72
|
+
andrea/catalog_inference_tools/tools/scgenerai/cost.json
|
|
73
|
+
andrea/catalog_inference_tools/tools/scgenerai/toolspec.json
|
|
74
|
+
andrea/catalog_inference_tools/tools/scing/cost.json
|
|
75
|
+
andrea/catalog_inference_tools/tools/scing/toolspec.json
|
|
76
|
+
andrea/catalog_inference_tools/tools/scminer/cost.json
|
|
77
|
+
andrea/catalog_inference_tools/tools/scminer/toolspec.json
|
|
78
|
+
andrea/catalog_inference_tools/tools/scmtni/cost.json
|
|
79
|
+
andrea/catalog_inference_tools/tools/scmtni/toolspec.json
|
|
80
|
+
andrea/catalog_inference_tools/tools/scregulate/cost.json
|
|
81
|
+
andrea/catalog_inference_tools/tools/scregulate/toolspec.json
|
|
82
|
+
andrea/catalog_inference_tools/tools/scsgl/cost.json
|
|
83
|
+
andrea/catalog_inference_tools/tools/scsgl/toolspec.json
|
|
84
|
+
andrea/catalog_inference_tools/tools/simic/cost.json
|
|
85
|
+
andrea/catalog_inference_tools/tools/simic/toolspec.json
|
|
86
|
+
andrea/catalog_inference_tools/tools/tigress/cost.json
|
|
87
|
+
andrea/catalog_inference_tools/tools/tigress/toolspec.json
|
|
88
|
+
andrea/catalog_simulation_data_tools/__init__.py
|
|
89
|
+
andrea/catalog_simulation_data_tools/input_specs/boolode_boolean_model.json
|
|
90
|
+
andrea/catalog_simulation_data_tools/input_specs/boolode_initial_conditions.json
|
|
91
|
+
andrea/catalog_simulation_data_tools/input_specs/boolode_interaction_strengths.json
|
|
92
|
+
andrea/catalog_simulation_data_tools/input_specs/gnw_dynamical_network.json
|
|
93
|
+
andrea/catalog_simulation_data_tools/input_specs/groundgan_causal_controller_checkpoint.json
|
|
94
|
+
andrea/catalog_simulation_data_tools/input_specs/groundgan_causal_graph_pickle.json
|
|
95
|
+
andrea/catalog_simulation_data_tools/input_specs/groundgan_model_checkpoint.json
|
|
96
|
+
andrea/catalog_simulation_data_tools/input_specs/groundgan_reference_h5ad.json
|
|
97
|
+
andrea/catalog_simulation_data_tools/input_specs/regulatory_network.json
|
|
98
|
+
andrea/catalog_simulation_data_tools/input_specs/sergio_bifurcation_matrix.json
|
|
99
|
+
andrea/catalog_simulation_data_tools/input_specs/sergio_master_regulators.json
|
|
100
|
+
andrea/catalog_simulation_data_tools/input_specs/sergio_target_interactions.json
|
|
101
|
+
andrea/catalog_simulation_data_tools/input_specs/syntren_externals_table.json
|
|
102
|
+
andrea/catalog_simulation_data_tools/input_specs/syntren_source_network_sif.json
|
|
103
|
+
andrea/catalog_simulation_data_tools/input_specs/tree_newick.json
|
|
104
|
+
andrea/catalog_simulation_data_tools/schemas/benchmark-manifest.schema.json
|
|
105
|
+
andrea/catalog_simulation_data_tools/schemas/ground-truth-manifest.schema.json
|
|
106
|
+
andrea/catalog_simulation_data_tools/schemas/input-spec.schema.json
|
|
107
|
+
andrea/catalog_simulation_data_tools/schemas/preflight-report.schema.json
|
|
108
|
+
andrea/catalog_simulation_data_tools/schemas/scenario-request.schema.json
|
|
109
|
+
andrea/catalog_simulation_data_tools/schemas/simulation-plan.schema.json
|
|
110
|
+
andrea/catalog_simulation_data_tools/schemas/simulator-output-manifest.schema.json
|
|
111
|
+
andrea/catalog_simulation_data_tools/schemas/simulator-runs.schema.json
|
|
112
|
+
andrea/catalog_simulation_data_tools/schemas/simulatorcost.schema.json
|
|
113
|
+
andrea/catalog_simulation_data_tools/schemas/simulatorspec.schema.json
|
|
114
|
+
andrea/catalog_simulation_data_tools/simulators/boolode/cost.json
|
|
115
|
+
andrea/catalog_simulation_data_tools/simulators/boolode/simulatorspec.json
|
|
116
|
+
andrea/catalog_simulation_data_tools/simulators/dyngen/cost.json
|
|
117
|
+
andrea/catalog_simulation_data_tools/simulators/dyngen/simulatorspec.json
|
|
118
|
+
andrea/catalog_simulation_data_tools/simulators/genenetweaver/cost.json
|
|
119
|
+
andrea/catalog_simulation_data_tools/simulators/genenetweaver/simulatorspec.json
|
|
120
|
+
andrea/catalog_simulation_data_tools/simulators/genespider2/cost.json
|
|
121
|
+
andrea/catalog_simulation_data_tools/simulators/genespider2/simulatorspec.json
|
|
122
|
+
andrea/catalog_simulation_data_tools/simulators/groundgan/cost.json
|
|
123
|
+
andrea/catalog_simulation_data_tools/simulators/groundgan/simulatorspec.json
|
|
124
|
+
andrea/catalog_simulation_data_tools/simulators/scmultisim/cost.json
|
|
125
|
+
andrea/catalog_simulation_data_tools/simulators/scmultisim/simulatorspec.json
|
|
126
|
+
andrea/catalog_simulation_data_tools/simulators/sergio/cost.json
|
|
127
|
+
andrea/catalog_simulation_data_tools/simulators/sergio/simulatorspec.json
|
|
128
|
+
andrea/catalog_simulation_data_tools/simulators/syntren/cost.json
|
|
129
|
+
andrea/catalog_simulation_data_tools/simulators/syntren/simulatorspec.json
|
|
130
|
+
andrea/cli/__init__.py
|
|
131
|
+
andrea/cli/app.py
|
|
132
|
+
andrea/core/__init__.py
|
|
133
|
+
andrea/core/commands/__init__.py
|
|
134
|
+
andrea/core/commands/compare_networks/__init__.py
|
|
135
|
+
andrea/core/commands/compare_networks/bundles.py
|
|
136
|
+
andrea/core/commands/compare_networks/comparison.py
|
|
137
|
+
andrea/core/commands/compare_networks/distances.py
|
|
138
|
+
andrea/core/commands/compare_networks/loading.py
|
|
139
|
+
andrea/core/commands/compare_networks/models.py
|
|
140
|
+
andrea/core/commands/compare_networks/request.py
|
|
141
|
+
andrea/core/commands/compare_networks/store.py
|
|
142
|
+
andrea/core/commands/compare_networks/tables.py
|
|
143
|
+
andrea/core/commands/compare_networks/utils.py
|
|
144
|
+
andrea/core/commands/compare_networks/view.py
|
|
145
|
+
andrea/core/commands/compare_networks/view_assets/__init__.py
|
|
146
|
+
andrea/core/commands/compare_networks/view_assets/template.html
|
|
147
|
+
andrea/core/commands/compare_networks/view_assets/view.css
|
|
148
|
+
andrea/core/commands/compare_networks/view_assets/view.js
|
|
149
|
+
andrea/core/commands/evaluate_inference/__init__.py
|
|
150
|
+
andrea/core/commands/evaluate_inference/bundles.py
|
|
151
|
+
andrea/core/commands/evaluate_inference/evaluation.py
|
|
152
|
+
andrea/core/commands/evaluate_inference/view_assets/__init__.py
|
|
153
|
+
andrea/core/commands/evaluate_inference/view_assets/template.html
|
|
154
|
+
andrea/core/commands/evaluate_inference/view_assets/view.css
|
|
155
|
+
andrea/core/commands/evaluate_inference/view_assets/view.js
|
|
156
|
+
andrea/core/commands/generate_data/__init__.py
|
|
157
|
+
andrea/core/commands/generate_data/bootstrap.py
|
|
158
|
+
andrea/core/commands/generate_data/bundles.py
|
|
159
|
+
andrea/core/commands/generate_data/catalog.py
|
|
160
|
+
andrea/core/commands/generate_data/cost_planner.py
|
|
161
|
+
andrea/core/commands/generate_data/output_validation.py
|
|
162
|
+
andrea/core/commands/generate_data/pipeline.py
|
|
163
|
+
andrea/core/commands/generate_data/plan.py
|
|
164
|
+
andrea/core/commands/generate_data/request.py
|
|
165
|
+
andrea/core/commands/generate_data/scenario.py
|
|
166
|
+
andrea/core/commands/generate_data/selection.py
|
|
167
|
+
andrea/core/commands/generate_data/semantic.py
|
|
168
|
+
andrea/core/commands/generate_data/shared.py
|
|
169
|
+
andrea/core/commands/generate_data/backends/__init__.py
|
|
170
|
+
andrea/core/commands/generate_data/backends/docker_runner.py
|
|
171
|
+
andrea/core/commands/generate_data/backends/registry.py
|
|
172
|
+
andrea/core/commands/infer_network/__init__.py
|
|
173
|
+
andrea/core/commands/infer_network/bundles.py
|
|
174
|
+
andrea/core/commands/infer_network/pipeline.py
|
|
175
|
+
andrea/core/commands/infer_network/plan.py
|
|
176
|
+
andrea/core/commands/infer_network/preflight.py
|
|
177
|
+
andrea/core/commands/infer_network/run.py
|
|
178
|
+
andrea/core/commands/infer_network/commons/__init__.py
|
|
179
|
+
andrea/core/commands/infer_network/commons/artifacts.py
|
|
180
|
+
andrea/core/commands/infer_network/commons/catalog.py
|
|
181
|
+
andrea/core/commands/infer_network/commons/custom_tools.py
|
|
182
|
+
andrea/core/commands/infer_network/commons/dataset.py
|
|
183
|
+
andrea/core/commands/infer_network/commons/execution_state.py
|
|
184
|
+
andrea/core/commands/infer_network/commons/merge.py
|
|
185
|
+
andrea/core/commands/infer_network/commons/network_exports.py
|
|
186
|
+
andrea/core/commands/infer_network/commons/planner.py
|
|
187
|
+
andrea/core/commands/infer_network/commons/runtime_helpers.py
|
|
188
|
+
andrea/core/commands/infer_network/commons/shared.py
|
|
189
|
+
andrea/core/commands/infer_network/commons/threading.py
|
|
190
|
+
andrea/core/commands/infer_network/commons/tool_rule_eval.py
|
|
191
|
+
andrea/core/commands/infer_network/commons/tools.py
|
|
192
|
+
andrea/core/shared/__init__.py
|
|
193
|
+
andrea/core/shared/bundles.py
|
|
194
|
+
andrea/core/shared/catalog_contracts.py
|
|
195
|
+
andrea/core/shared/compatibility_rules.py
|
|
196
|
+
andrea/core/shared/container_runtime.py
|
|
197
|
+
andrea/core/shared/input_specs.py
|
|
198
|
+
andrea/core/shared/input_validation.py
|
|
199
|
+
andrea/core/shared/issues.py
|
|
200
|
+
andrea/core/shared/json_io.py
|
|
201
|
+
andrea/core/shared/network_context.py
|
|
202
|
+
andrea/core/shared/param_validation.py
|
|
203
|
+
andrea/core/shared/paths.py
|
|
204
|
+
andrea/core/shared/progress.py
|
|
205
|
+
andrea/core/shared/runtime_profile.py
|
|
206
|
+
andrea/gui/__init__.py
|
|
207
|
+
andrea/gui/common/__init__.py
|
|
208
|
+
andrea/gui/common/reproducibility.py
|
|
209
|
+
andrea/gui/common/server_files.py
|
|
210
|
+
andrea/gui/common/server_jobs.py
|
|
211
|
+
andrea/gui/common/static/app/network_context.js
|
|
212
|
+
andrea/gui/common/static/app/bundles/modal.js
|
|
213
|
+
andrea/gui/common/static/app/bundles/styles.css
|
|
214
|
+
andrea/gui/common/static/app/buttons/styles.css
|
|
215
|
+
andrea/gui/common/static/app/core/dom.js
|
|
216
|
+
andrea/gui/common/static/app/files/explorer.js
|
|
217
|
+
andrea/gui/common/static/app/params/schema_form.js
|
|
218
|
+
andrea/gui/common/static/app/params/styles.css
|
|
219
|
+
andrea/gui/common/static/app/repro/styles.css
|
|
220
|
+
andrea/gui/common/static/app/repro/view.js
|
|
221
|
+
andrea/gui/common/static/app/runtime/view.js
|
|
222
|
+
andrea/gui/common/static/app/ui/popovers.css
|
|
223
|
+
andrea/gui/common/static/app/ui/popovers.js
|
|
224
|
+
andrea/gui/common/static/app/ui/steps.js
|
|
225
|
+
andrea/gui/common/static/app/ui/toasts.css
|
|
226
|
+
andrea/gui/common/static/app/ui/toasts.js
|
|
227
|
+
andrea/gui/common/static/app/uploads/progress.js
|
|
228
|
+
andrea/gui/common/static/app/uploads/styles.css
|
|
229
|
+
andrea/gui/compare_networks/__init__.py
|
|
230
|
+
andrea/gui/compare_networks/server.py
|
|
231
|
+
andrea/gui/compare_networks/static/index.html
|
|
232
|
+
andrea/gui/compare_networks/static/styles.css
|
|
233
|
+
andrea/gui/compare_networks/static/app/main.js
|
|
234
|
+
andrea/gui/compare_networks/static/app/shared.js
|
|
235
|
+
andrea/gui/evaluate_inference/__init__.py
|
|
236
|
+
andrea/gui/evaluate_inference/server.py
|
|
237
|
+
andrea/gui/evaluate_inference/static/index.html
|
|
238
|
+
andrea/gui/evaluate_inference/static/styles.css
|
|
239
|
+
andrea/gui/evaluate_inference/static/app/main.js
|
|
240
|
+
andrea/gui/generate_data/__init__.py
|
|
241
|
+
andrea/gui/generate_data/server.py
|
|
242
|
+
andrea/gui/generate_data/static/index.html
|
|
243
|
+
andrea/gui/generate_data/static/styles.css
|
|
244
|
+
andrea/gui/generate_data/static/app/execution_view.js
|
|
245
|
+
andrea/gui/generate_data/static/app/main.js
|
|
246
|
+
andrea/gui/generate_data/static/app/plan_view.js
|
|
247
|
+
andrea/gui/generate_data/static/app/preflight_view.js
|
|
248
|
+
andrea/gui/generate_data/static/app/runs.js
|
|
249
|
+
andrea/gui/generate_data/static/app/scenario_templates.js
|
|
250
|
+
andrea/gui/generate_data/static/app/simulator_catalog.js
|
|
251
|
+
andrea/gui/infer_network/__init__.py
|
|
252
|
+
andrea/gui/infer_network/server.py
|
|
253
|
+
andrea/gui/infer_network/static/index.html
|
|
254
|
+
andrea/gui/infer_network/static/styles.css
|
|
255
|
+
andrea/gui/infer_network/static/app/main.js
|
|
256
|
+
andrea/gui/infer_network/static/app/catalog/external_tools.js
|
|
257
|
+
andrea/gui/infer_network/static/app/catalog/model.js
|
|
258
|
+
andrea/gui/infer_network/static/app/catalog/view.js
|
|
259
|
+
andrea/gui/infer_network/static/app/core/api.js
|
|
260
|
+
andrea/gui/infer_network/static/app/core/dom.js
|
|
261
|
+
andrea/gui/infer_network/static/app/core/state.js
|
|
262
|
+
andrea/gui/infer_network/static/app/dataset/expression.js
|
|
263
|
+
andrea/gui/infer_network/static/app/dataset/extras.js
|
|
264
|
+
andrea/gui/infer_network/static/app/dataset/validation.js
|
|
265
|
+
andrea/gui/infer_network/static/app/files/explorer.js
|
|
266
|
+
andrea/gui/infer_network/static/app/jobs/controller.js
|
|
267
|
+
andrea/gui/infer_network/static/app/plan/view.js
|
|
268
|
+
andrea/gui/infer_network/static/app/preflight/view.js
|
|
269
|
+
andrea/gui/infer_network/static/app/repro/view.js
|
|
270
|
+
andrea/gui/infer_network/static/app/runs/cards.js
|
|
271
|
+
andrea/gui/infer_network/static/app/runs/execution_modes.js
|
|
272
|
+
andrea/gui/infer_network/static/app/runs/params_modal.js
|
|
273
|
+
andrea/gui/infer_network/static/app/runtime/view.js
|
|
274
|
+
andrea/gui/infer_network/static/app/ui/popovers.js
|
|
275
|
+
andrea/gui/infer_network/static/app/ui/steps.js
|
|
276
|
+
andrea/gui/infer_network/static/app/ui/toasts.js
|
|
277
|
+
tests/test_cli_bootstrap.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
typer<0.24.0,>=0.23.1
|
|
2
|
+
rich<16.0.0,>=15.0.0
|
|
3
|
+
docker<8.0.0,>=7.1.0
|
|
4
|
+
jsonschema<5.0.0,>=4.25.0
|
|
5
|
+
pandas<3.0.0,>=2.3.0
|
|
6
|
+
ortools<10.0,>=9.10
|
|
7
|
+
fastapi<0.116.0,>=0.115.0
|
|
8
|
+
uvicorn<0.35.0,>=0.34.0
|
|
9
|
+
python-multipart<0.0.21,>=0.0.20
|
|
10
|
+
aiofiles<25.0.0,>=24.1.0
|
|
11
|
+
|
|
12
|
+
[:python_version < "3.12"]
|
|
13
|
+
numpy<2.5,>=2.0.2
|
|
14
|
+
|
|
15
|
+
[dev]
|
|
16
|
+
pytest<9.0.0,>=8.4.0
|
|
17
|
+
httpx<0.29.0,>=0.28.0
|
|
18
|
+
black<25.0.0,>=24.0.0
|
|
19
|
+
isort<6.0.0,>=5.13.0
|
|
20
|
+
|
|
21
|
+
[release]
|
|
22
|
+
build<2.0.0,>=1.2.0
|
|
23
|
+
twine<7.0.0,>=6.0.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
andrea
|
andrea-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Adrián Segura
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
andrea-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ANDREA
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Platform for aggregated network discovery, simulation, inference, and benchmarking workflows.
|
|
5
|
+
Author-email: Adrian Segura Ortiz <adrianseor.99@uma.es>, "George K. Georgakilas" <ggeorgakilas@athenarc.gr>, Theodore Dalamagas <dalamag@athenarc.gr>, "Jose F. Aldana-Montes" <jfaldana@uma.es>
|
|
6
|
+
Maintainer-email: Adrian Segura Ortiz <adrianseor.99@uma.es>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/AdrianSeguraOrtiz/ANDREA
|
|
9
|
+
Project-URL: Repository, https://github.com/AdrianSeguraOrtiz/ANDREA
|
|
10
|
+
Project-URL: Issues, https://github.com/AdrianSeguraOrtiz/ANDREA/issues
|
|
11
|
+
Project-URL: Documentation, https://github.com/AdrianSeguraOrtiz/ANDREA/tree/main/docs
|
|
12
|
+
Keywords: gene regulatory networks,GRN inference,benchmarking,single-cell,systems biology,bioinformatics
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Environment :: Web Environment
|
|
16
|
+
Classifier: Framework :: FastAPI
|
|
17
|
+
Classifier: Intended Audience :: Science/Research
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
24
|
+
Requires-Python: <3.14,>=3.11
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
License-File: LICENSE
|
|
27
|
+
Requires-Dist: numpy<2.5,>=2.0.2; python_version < "3.12"
|
|
28
|
+
Requires-Dist: typer<0.24.0,>=0.23.1
|
|
29
|
+
Requires-Dist: rich<16.0.0,>=15.0.0
|
|
30
|
+
Requires-Dist: docker<8.0.0,>=7.1.0
|
|
31
|
+
Requires-Dist: jsonschema<5.0.0,>=4.25.0
|
|
32
|
+
Requires-Dist: pandas<3.0.0,>=2.3.0
|
|
33
|
+
Requires-Dist: ortools<10.0,>=9.10
|
|
34
|
+
Requires-Dist: fastapi<0.116.0,>=0.115.0
|
|
35
|
+
Requires-Dist: uvicorn<0.35.0,>=0.34.0
|
|
36
|
+
Requires-Dist: python-multipart<0.0.21,>=0.0.20
|
|
37
|
+
Requires-Dist: aiofiles<25.0.0,>=24.1.0
|
|
38
|
+
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: pytest<9.0.0,>=8.4.0; extra == "dev"
|
|
40
|
+
Requires-Dist: httpx<0.29.0,>=0.28.0; extra == "dev"
|
|
41
|
+
Requires-Dist: black<25.0.0,>=24.0.0; extra == "dev"
|
|
42
|
+
Requires-Dist: isort<6.0.0,>=5.13.0; extra == "dev"
|
|
43
|
+
Provides-Extra: release
|
|
44
|
+
Requires-Dist: build<2.0.0,>=1.2.0; extra == "release"
|
|
45
|
+
Requires-Dist: twine<7.0.0,>=6.0.0; extra == "release"
|
|
46
|
+
Dynamic: license-file
|
|
47
|
+
|
|
48
|
+
# ANDREA
|
|
49
|
+
|
|
50
|
+
**Automated Network Discovery, Reproducible Evaluation and Analysis**
|
|
51
|
+
|
|
52
|
+
ANDREA is a catalog-driven platform for generating benchmark expression
|
|
53
|
+
datasets, running gene regulatory network (GRN) inference tools, evaluating
|
|
54
|
+
inferred networks against reference truth and comparing networks across tools,
|
|
55
|
+
contexts and runs. It exposes the same workflows through a command-line
|
|
56
|
+
interface and local browser GUIs, while keeping public artifacts as plain JSON,
|
|
57
|
+
CSV, SQLite and ZIP files.
|
|
58
|
+
|
|
59
|
+
<p align="center">
|
|
60
|
+
<img src="docs/assets/andrea_overview.png" alt="ANDREA workflow overview" width="92%">
|
|
61
|
+
</p>
|
|
62
|
+
|
|
63
|
+
## What ANDREA Provides
|
|
64
|
+
|
|
65
|
+
- A standardized catalog of simulator and inference-tool integrations, with
|
|
66
|
+
compatibility rules, parameter schemas, Docker wrappers and provenance
|
|
67
|
+
metadata.
|
|
68
|
+
- Four interoperable workflows:
|
|
69
|
+
`generate-data -> infer-network -> evaluate-inference -> compare-networks`.
|
|
70
|
+
- Strict handoff bundles so outputs from one command can be consumed directly
|
|
71
|
+
by the next one.
|
|
72
|
+
- Context-aware handling of global, group-level and column-level network
|
|
73
|
+
outputs, including emulated and aggregated execution strategies where
|
|
74
|
+
appropriate.
|
|
75
|
+
- Cost-aware planning and execution orchestration for Dockerized simulator and
|
|
76
|
+
inference wrappers.
|
|
77
|
+
- Evaluation reports and interactive comparison views for distance maps,
|
|
78
|
+
metric overlays and edge-level differences.
|
|
79
|
+
- Support for temporary external Docker inference tools that follow ANDREA's
|
|
80
|
+
standard container contract.
|
|
81
|
+
|
|
82
|
+
## Installation
|
|
83
|
+
|
|
84
|
+
Install the release package:
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
pip install ANDREA
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
For a development checkout:
|
|
91
|
+
|
|
92
|
+
```sh
|
|
93
|
+
git clone https://github.com/AdrianSeguraOrtiz/ANDREA.git
|
|
94
|
+
cd ANDREA
|
|
95
|
+
python -m pip install -e ".[dev]"
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Docker is required for workflows that execute simulator or inference wrappers.
|
|
99
|
+
See [docs/installation.md](docs/installation.md) for the full setup notes.
|
|
100
|
+
|
|
101
|
+
## Quick Start
|
|
102
|
+
|
|
103
|
+
Inspect the CLI:
|
|
104
|
+
|
|
105
|
+
```sh
|
|
106
|
+
andrea --help
|
|
107
|
+
andrea generate-data --help
|
|
108
|
+
andrea infer-network --help
|
|
109
|
+
andrea evaluate-inference --help
|
|
110
|
+
andrea compare-networks --help
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Open the local GUIs:
|
|
114
|
+
|
|
115
|
+
```sh
|
|
116
|
+
andrea gui generate-data
|
|
117
|
+
andrea gui infer-network
|
|
118
|
+
andrea gui evaluate-inference
|
|
119
|
+
andrea gui compare-networks
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
The GUIs are local browser applications. ZIP bundles are mainly intended for
|
|
123
|
+
GUI handoff; CLI and Python users can usually pass report JSON paths directly.
|
|
124
|
+
|
|
125
|
+
## Workflows
|
|
126
|
+
|
|
127
|
+
| Command | Purpose | Key outputs |
|
|
128
|
+
|---|---|---|
|
|
129
|
+
| `generate-data` | Build synthetic benchmark datasets from simulator catalogs. | `expression.tsv`, `truth/networks.csv`, manifests and analysis bundles. |
|
|
130
|
+
| `infer-network` | Run catalog or external Docker inference tools against standardized datasets. | Per-run networks, merged normalized networks, graph exports and run reports. |
|
|
131
|
+
| `evaluate-inference` | Score inferred networks against simulator or user-provided truth. | Metric tables, pairing tables, `evaluation_report.json` and visual summaries. |
|
|
132
|
+
| `compare-networks` | Compare networks across tools, sources, parameters and contexts. | Distance tables, coordinates, `comparison.sqlite`, edge differences and reports. |
|
|
133
|
+
|
|
134
|
+
See [docs/workflows.md](docs/workflows.md) for the workflow contracts and
|
|
135
|
+
[docs/gui.md](docs/gui.md), [docs/cli.md](docs/cli.md) and
|
|
136
|
+
[docs/core.md](docs/core.md) for GUI, command-line and Python usage.
|
|
137
|
+
|
|
138
|
+
## Documentation
|
|
139
|
+
|
|
140
|
+
- [Installation](docs/installation.md)
|
|
141
|
+
- [Workflow contracts](docs/workflows.md)
|
|
142
|
+
- [GUI guide](docs/gui.md)
|
|
143
|
+
- [CLI guide](docs/cli.md)
|
|
144
|
+
- [Core Python guide](docs/core.md)
|
|
145
|
+
- [Catalogs and coverage](docs/catalogs.md)
|
|
146
|
+
- [External Docker tools](docs/external-docker-tools.md)
|
|
147
|
+
- [Full documentation index](docs/README.md)
|