bngsim 0.11.32__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.
- bngsim-0.11.32/.clang-format +3 -0
- bngsim-0.11.32/.github/workflows/release.yml +84 -0
- bngsim-0.11.32/.github/workflows/wheels.yml +68 -0
- bngsim-0.11.32/.gitignore +2 -0
- bngsim-0.11.32/.pre-commit-config.yaml +128 -0
- bngsim-0.11.32/.readthedocs.yaml +31 -0
- bngsim-0.11.32/ACKNOWLEDGMENTS.md +207 -0
- bngsim-0.11.32/CHANGELOG.md +5543 -0
- bngsim-0.11.32/CMakeLists.txt +886 -0
- bngsim-0.11.32/CONTRIBUTING.md +36 -0
- bngsim-0.11.32/LICENSE +9 -0
- bngsim-0.11.32/NOTICE +803 -0
- bngsim-0.11.32/PKG-INFO +160 -0
- bngsim-0.11.32/README.md +107 -0
- bngsim-0.11.32/REPRODUCING.md +128 -0
- bngsim-0.11.32/SUPPORT_MATRIX.md +146 -0
- bngsim-0.11.32/ci/build_suitesparse.ps1 +96 -0
- bngsim-0.11.32/ci/build_suitesparse.sh +94 -0
- bngsim-0.11.32/docs/about/architecture.md +26 -0
- bngsim-0.11.32/docs/about/benchmarks.md +154 -0
- bngsim-0.11.32/docs/bngsim-coyote-logo/bngsim-favicon.svg +7 -0
- bngsim-0.11.32/docs/bngsim-coyote-logo/bngsim-logo.svg +7 -0
- bngsim-0.11.32/docs/bngsim-coyote-logo/bngsim-readme-card-sienna.svg +7 -0
- bngsim-0.11.32/docs/bngsim-coyote-logo/coyote.png +0 -0
- bngsim-0.11.32/docs/conf.py +71 -0
- bngsim-0.11.32/docs/development/building.md +67 -0
- bngsim-0.11.32/docs/development/extending.md +60 -0
- bngsim-0.11.32/docs/index.md +67 -0
- bngsim-0.11.32/docs/installation.md +214 -0
- bngsim-0.11.32/docs/quickstart.md +150 -0
- bngsim-0.11.32/docs/reference/api.md +212 -0
- bngsim-0.11.32/docs/reference/expressions.md +127 -0
- bngsim-0.11.32/docs/requirements.txt +6 -0
- bngsim-0.11.32/docs/user-guide/codegen.md +156 -0
- bngsim-0.11.32/docs/user-guide/conservation-laws.md +72 -0
- bngsim-0.11.32/docs/user-guide/events.md +111 -0
- bngsim-0.11.32/docs/user-guide/interchange.md +201 -0
- bngsim-0.11.32/docs/user-guide/loading-models.md +108 -0
- bngsim-0.11.32/docs/user-guide/network-free.md +109 -0
- bngsim-0.11.32/docs/user-guide/pybnf.md +83 -0
- bngsim-0.11.32/docs/user-guide/results.md +87 -0
- bngsim-0.11.32/docs/user-guide/sensitivities.md +297 -0
- bngsim-0.11.32/docs/user-guide/simulation.md +77 -0
- bngsim-0.11.32/docs/user-guide/solvers.md +87 -0
- bngsim-0.11.32/docs/user-guide/steady-state.md +190 -0
- bngsim-0.11.32/docs/user-guide/table-functions.md +165 -0
- bngsim-0.11.32/include/bngsim/bngsim.hpp +23 -0
- bngsim-0.11.32/include/bngsim/bngsim_api.h +96 -0
- bngsim-0.11.32/include/bngsim/cc_jit.hpp +120 -0
- bngsim-0.11.32/include/bngsim/dynamic_library.hpp +147 -0
- bngsim-0.11.32/include/bngsim/expr_compat.hpp +54 -0
- bngsim-0.11.32/include/bngsim/expression.hpp +132 -0
- bngsim-0.11.32/include/bngsim/function_columns.hpp +95 -0
- bngsim-0.11.32/include/bngsim/functional_jac_scatter.hpp +106 -0
- bngsim-0.11.32/include/bngsim/lapack_dense_linsol.hpp +114 -0
- bngsim-0.11.32/include/bngsim/mir_jit.hpp +361 -0
- bngsim-0.11.32/include/bngsim/mm_jacobian.hpp +49 -0
- bngsim-0.11.32/include/bngsim/model.hpp +366 -0
- bngsim-0.11.32/include/bngsim/model_builder.hpp +266 -0
- bngsim-0.11.32/include/bngsim/net_file_loader.hpp +27 -0
- bngsim-0.11.32/include/bngsim/nfsim_simulator.hpp +257 -0
- bngsim-0.11.32/include/bngsim/platform_compat.hpp +43 -0
- bngsim-0.11.32/include/bngsim/result.hpp +267 -0
- bngsim-0.11.32/include/bngsim/rulemonkey_simulator.hpp +98 -0
- bngsim-0.11.32/include/bngsim/simulator.hpp +98 -0
- bngsim-0.11.32/include/bngsim/steady_state.hpp +22 -0
- bngsim-0.11.32/include/bngsim/sundials_guards.hpp +226 -0
- bngsim-0.11.32/include/bngsim/table_function.hpp +140 -0
- bngsim-0.11.32/include/bngsim/types.hpp +837 -0
- bngsim-0.11.32/include/bngsim/wallclock.hpp +87 -0
- bngsim-0.11.32/parity_checks/README.md +126 -0
- bngsim-0.11.32/parity_checks/_core/README.md +33 -0
- bngsim-0.11.32/parity_checks/_core/__init__.py +51 -0
- bngsim-0.11.32/parity_checks/_core/differ.py +270 -0
- bngsim-0.11.32/parity_checks/_core/fingerprint.py +104 -0
- bngsim-0.11.32/parity_checks/_core/oracles.py +87 -0
- bngsim-0.11.32/parity_checks/_core/schema.py +253 -0
- bngsim-0.11.32/parity_checks/_core/taxonomy.py +74 -0
- bngsim-0.11.32/parity_checks/_core/versions.py +115 -0
- bngsim-0.11.32/parity_checks/amici_parity/.gitignore +6 -0
- bngsim-0.11.32/parity_checks/amici_parity/AMICI_KNOWN_ISSUES.md +69 -0
- bngsim-0.11.32/parity_checks/amici_parity/AMICI_PIN.json +20 -0
- bngsim-0.11.32/parity_checks/amici_parity/README.md +172 -0
- bngsim-0.11.32/parity_checks/amici_parity/_amici_common.py +522 -0
- bngsim-0.11.32/parity_checks/amici_parity/amici_ode_jobs.json +1192 -0
- bngsim-0.11.32/parity_checks/amici_parity/amici_run.py +578 -0
- bngsim-0.11.32/parity_checks/amici_parity/build_amici_jobs.py +209 -0
- bngsim-0.11.32/parity_checks/amici_parity/generate_amici_matrix.py +3588 -0
- bngsim-0.11.32/parity_checks/bng_parity/.gitignore +2 -0
- bngsim-0.11.32/parity_checks/bng_parity/README.md +353 -0
- bngsim-0.11.32/parity_checks/bng_parity/_bng_common.py +2864 -0
- bngsim-0.11.32/parity_checks/bng_parity/bng_ode_run.py +720 -0
- bngsim-0.11.32/parity_checks/bng_parity/bng_stoch_run.py +1198 -0
- bngsim-0.11.32/parity_checks/bng_parity/bngsim_backend.py +215 -0
- bngsim-0.11.32/parity_checks/bng_parity/bootstrap_parity_env.py +160 -0
- bngsim-0.11.32/parity_checks/bng_parity/build_jobs.py +191 -0
- bngsim-0.11.32/parity_checks/bng_parity/generate_bng_matrix.py +1557 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/README.md +134 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/golden.json +2621 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__aktsignaling__akt-signaling.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__brusselatoroscillator__brusselator-oscillator.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__e2frbcellcycleswitch__e2f-rb-cell-cycle-switch.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__sonichedgehoggradient__sonic-hedgehog-gradient.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__Hat2016__Hat_2016.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__Lang2024__Lang_2024.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__Pekalski2013__Pekalski_2013.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__PyBioNetGen__core__polynomialground__polynomial_ground.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Tutorials__nfkb__nfkb.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/glacial__rulehub__Published__Goldstein1980__blbr_heterogeneity_goldstein1980.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/original__bngl_models__my_models__ssa__gk_simple.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/original__bngl_models__my_models__ssa__oscillatory_system.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/slow__rulehub__Tutorials__NativeTutorials__ABCssa__ABC_ssa.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/slow__rulehub__Tutorials__NativeTutorials__CircadianOscillator__CircadianOscillator.json +1 -0
- bngsim-0.11.32/parity_checks/bng_parity/jobs.json +944 -0
- bngsim-0.11.32/parity_checks/bng_parity/manifest.csv +896 -0
- bngsim-0.11.32/parity_checks/bng_parity/manifest.json +22529 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/aktsignaling/akt-signaling.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/allostericactivation/allosteric-activation.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ampksignaling/ampk-signaling.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/apoptosiscascade/apoptosis-cascade.bngl +111 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/autoactivationloop/auto-activation-loop.bngl +103 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/autophagyregulation/autophagy-regulation.bngl +102 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bcrsignaling/bcr-signaling.bngl +112 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/betaadrenergicresponse/beta-adrenergic-response.bngl +109 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bistabletoggleswitch/bistable-toggle-switch.bngl +110 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bloodcoagulationthrombin/blood-coagulation-thrombin.bngl +102 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bmpsignaling/bmp-signaling.bngl +106 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/brusselatoroscillator/brusselator-oscillator.bngl +95 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/calcineurinnfatpathway/calcineurin-nfat-pathway.bngl +107 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/caspaseactivationloop/caspase-activation-loop.bngl +92 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/cd40signaling/cd40-signaling.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/cellcyclecheckpoint/cell-cycle-checkpoint.bngl +118 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/checkpointkinasesignaling/checkpoint-kinase-signaling.bngl +109 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/chemotaxissignaltransduction/chemotaxis-signal-transduction.bngl +105 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/circadianoscillator/circadian-oscillator.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/clockbmal1genecircuit/clock-bmal1-gene-circuit.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/competitiveenzymeinhibition/competitive-enzyme-inhibition.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/complementactivationcascade/complement-activation-cascade.bngl +103 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/contactinhibitionhippoyap/contact-inhibition-hippo-yap.bngl +102 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/cooperativebinding/cooperative-binding.bngl +67 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dnadamagerepair/dna-damage-repair.bngl +91 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dnamethylationdynamics/dna-methylation-dynamics.bngl +102 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dr5apoptosissignaling/dr5-apoptosis-signaling.bngl +96 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dualsitephosphorylation/dual-site-phosphorylation.bngl +74 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/e2frbcellcycleswitch/e2f-rb-cell-cycle-switch.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/egfrsignalingpathway/egfr-signaling-pathway.bngl +94 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/eif2astressresponse/eif2a-stress-response.bngl +98 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/endosomalsortingrab/endosomal-sorting-rab.bngl +88 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/erknucleartranslocation/erk-nuclear-translocation.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/erstressresponse/er-stress-response.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/geneexpressiontoggle/gene-expression-toggle.bngl +49 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/glioblastomaegfrviiisignaling/glioblastoma-egfrviii-signaling.bngl +94 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/glycolysisbranchpoint/glycolysis-branch-point.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/gpcrdesensitizationarrestin/gpcr-desensitization-arrestin.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hedgehogsignalingpathway/hedgehog-signaling-pathway.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hematopoieticgrowthfactor/hematopoietic-growth-factor.bngl +63 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hif1adegradationloop/hif1a_degradation_loop.bngl +92 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hypoxiaresponsesignaling/hypoxia-response-signaling.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/il1bsignaling/il1b-signaling.bngl +95 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/il6jakstatpathway/il6-jak-stat-pathway.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/immunesynapseformation/immune-synapse-formation.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/inflammasomeactivation/inflammasome-activation.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/inositolphosphatemetabolism/inositol-phosphate-metabolism.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/insulinglucosehomeostasis/insulin-glucose-homeostasis.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/interferonsignaling/interferon-signaling.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ire1axbp1erstress/ire1a-xbp1-er-stress.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/jakstatcytokinesignaling/jak-stat-cytokine-signaling.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/jnkmapksignaling/jnk-mapk-signaling.bngl +88 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/kirchannelregulation/kir-channel-regulation.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/lacoperonregulation/lac-operon-regulation.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/lipidmediatedpip3signaling/lipid-mediated-pip3-signaling.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ltypecalciumchanneldynamics/l-type-calcium-channel-dynamics.bngl +114 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/mapksignalingcascade/mapk-signaling-cascade.bngl +67 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/michaelismentenkinetics/michaelis-menten-kinetics.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/mtorc2signaling/mtorc2-signaling.bngl +98 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/mtorsignaling/mtor-signaling.bngl +65 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/myogenicdifferentiation/myogenic-differentiation.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/negativefeedbackloop/negative-feedback-loop.bngl +52 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/neurotransmitterrelease/neurotransmitter-release.bngl +61 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/nfkbfeedback/nfkb-feedback.bngl +114 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/nocgmpsignaling/no-cgmp-signaling.bngl +98 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/notchdeltalateralinhibition/notch-delta-lateral-inhibition.bngl +49 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/p38mapksignaling/p38-mapk-signaling.bngl +78 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/p53mdm2oscillator/p53-mdm2-oscillator.bngl +37 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/parp1mediateddnarepair/parp1-mediated-dna-repair.bngl +86 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/phosphorelaychain/phosphorelay-chain.bngl +38 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/plateletactivation/platelet-activation.bngl +51 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/predatorpreydynamics/predator-prey-dynamics.bngl +35 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/quorumsensingcircuit/quorum-sensing-circuit.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/rabgtpasecycle/rab-gtpase-cycle.bngl +46 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ranklranksignaling/rankl-rank-signaling.bngl +81 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/rasgefgapcycle/ras-gef-gap-cycle.bngl +79 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/repressilatoroscillator/repressilator-oscillator.bngl +61 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/retinoicacidsignaling/retinoic-acid-signaling.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/rhogtpaseactincytoskeleton/rho-gtpase-actin-cytoskeleton.bngl +92 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/shp2phosphataseregulation/shp2-phosphatase-regulation.bngl +74 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/signalamplificationcascade/signal-amplification-cascade.bngl +43 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/simpledimerization/simple-dimerization.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/sirepidemicmodel/sir-epidemic-model.bngl +33 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/smadtgfbetasignaling/smad-tgf-beta-signaling.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/sonichedgehoggradient/sonic-hedgehog-gradient.bngl +79 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/stat3mediatedtranscription/stat3-mediated-transcription.bngl +92 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/stressresponseadaptation/stress-response-adaptation.bngl +37 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/tnfinducedapoptosis/tnf-induced-apoptosis.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/twocomponentsystem/two-component-system.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/vegfangiogenesis/vegf-angiogenesis.bngl +97 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/viralsensinginnateimmunity/viral-sensing-innate-immunity.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/wntbetacateninsignaling/wnt-beta-catenin-signaling.bngl +90 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/woundhealingpdgfsignaling/wound-healing-pdgf-signaling.bngl +46 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentendocytosis/compartment_endocytosis.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentmembranebound/compartment_membrane_bound.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentnestedtransport/compartment_nested_transport.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentnucleartransport/compartment_nuclear_transport.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentorganelleexchange/compartment_organelle_exchange.bngl +65 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/csdiffiehellman/cs_diffie_hellman.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cshashfunction/cs_hash_function.bngl +138 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cshuffman/cs_huffman.bngl +56 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/csmontecarlopi/cs_monte_carlo_pi.bngl +51 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cspagerank/cs_pagerank.bngl +74 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cspidcontroller/cs_pid_controller.bngl +118 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ecology/ecocoevolutionhostparasite/eco_coevolution_host_parasite.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ecology/ecolotkavolterragrid/eco_lotka_volterra_grid.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ecology/ecorockpaperscissorsspatial/eco_rock_paper_scissors_spatial.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energyallosterymwc/energy_allostery_mwc.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energycatalysismm/energy_catalysis_mm.bngl +76 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energycooperativityadh/energy_cooperativity_adh.bngl +71 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energylinearchain/energy_linear_chain.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energytransportpump/energy_transport_pump.bngl +85 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featurefunctionalratesvolume/feature_functional_rates_volume.bngl +53 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featureglobalfunctionsscan/feature_global_functions_scan.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featuresymmetryfactorscyclic/feature_symmetry_factors_cyclic.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featuresynthesisdegradationss/feature_synthesis_degradation_ss.bngl +38 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/generative/gmraymarcher/gm_ray_marcher.bngl +136 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticbistabilityenergy/genetic_bistability_energy.bngl +91 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticdnareplicationstochastic/genetic_dna_replication_stochastic.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticgoodwinoscillator/genetic_goodwin_oscillator.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/genetictranslationkinetics/genetic_translation_kinetics.bngl +66 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticturingpattern1d/genetic_turing_pattern_1d.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/metaformalgametheory/meta_formal_game_theory.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/metaformalmolecularclock/meta_formal_molecular_clock.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/metaformalpetrinet/meta_formal_petri_net.bngl +53 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtarithmeticcompiler/mt_arithmetic_compiler.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtbnglinterpreter/mt_bngl_interpreter.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtmusicsequencer/mt_music_sequencer.bngl +131 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtpascaltriangle/mt_pascal_triangle.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtquine/mt_quine.bngl +56 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlgradientdescent/ml_gradient_descent.bngl +103 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlhopfield/ml_hopfield.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlkmeans/ml_kmeans.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlqlearning/ml_q_learning.bngl +119 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlsvm/ml_svm.bngl +79 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/nnxor/nn_xor.bngl +189 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phlorenzattractor/ph_lorenz_attractor.bngl +90 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phnbodygravity/ph_nbody_gravity.bngl +83 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phschrodinger/ph_schrodinger.bngl +127 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phwaveequation/ph_wave_equation__PATCHED.bngl +96 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processautophagyflux/process_autophagy_flux.bngl +65 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processcelladhesionstrength/process_cell_adhesion_strength.bngl +60 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processkineticproofreadingtcr/process_kinetic_proofreading_tcr.bngl +67 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processquorumsensingswitch/process_quorum_sensing_switch.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/signal-processing/spfouriersynthesizer/sp_fourier_synthesizer.bngl +135 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/signal-processing/spimageconvolution/sp_image_convolution.bngl +151 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/signal-processing/spkalmanfilter/sp_kalman_filter.bngl +126 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiobandpassfilter/synbio_band_pass_filter.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiocountermolecular/synbio_counter_molecular.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbioedgedetector/synbio_edge_detector.bngl +74 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiologicgatesenzymatic/synbio_logic_gates_enzymatic.bngl +64 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiooscillatorsynchronization/synbio_oscillator_synchronization.bngl +59 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackyalchemystone/wacky_alchemy_stone.bngl +53 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackyblackhole/wacky_black_hole.bngl +61 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackybouncingball/wacky_bouncing_ball.bngl +68 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackytrafficjamasep/wacky_traffic_jam_asep.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackyzombieinfection/wacky_zombie_infection.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/An2009/An_2009.bngl +248 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Barua2009/Barua_2009__PATCHED.bngl +52 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/CheemalavaguJAKSTAT/Cheemalavagu_JAK_STAT.bngl +229 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hat2016/Hat_2016.bngl +744 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek1999/steric_effects_hlavacek1999.bngl +231 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2001/kinetic_proofreading_hlavacek2001.bngl +246 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Egg/egg.bngl +64 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Elephant/elephant_EFA.bngl +153 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Elephant/elephant_fit.bngl +234 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Restructuration/after_scaling.bngl +52 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Lang2024/Lang_2024.bngl +354 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/LinERK2019/Lin_ERK_2019.bngl +496 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/05-threestep/m1_ground.bngl +52 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/07-egg/fit_de/egg_gen99ind7.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/07-egg/fit_pso/egg_iter94p25.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_ade/RAFi_gen1ind9.bngl +123 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_de/RAFi_gen3ind25.bngl +123 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_pso/RAFi_iter1p15.bngl +123 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_ss/RAFi_iter2p5h1.bngl +123 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/20-raf-constraint4/fit_ade/RAFi_gen7ind22.bngl +125 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/20-raf-constraint4/fit_pso/RAFi_iter4p27.bngl +125 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/20-raf-constraint4/fit_ss/RAFi_iter2p0h1.bngl +125 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/24-jnk/fit_ss/JNKmodel_180724_bnf_iter29p0h4.bngl +263 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_ade/elephant_simplex_iter29_pt43-2.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_de/elephant_simplex_iter2_pt53-2.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_pso/elephant_simplex_init0.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_ss/elephant_simplex_init0.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019Likelihood/model_ground.bngl +363 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019Rab/rab_rab7_ox.bngl +496 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Pekalski2013/Pekalski_2013.bngl +281 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/PyBioNetGen/core/parabolaground/parabola_ground.bngl +49 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/PyBioNetGen/core/polynomialground/polynomial_ground.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/General/quasiequilibrium/quasi_equilibrium.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/AB/AB.bngl +26 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/ABC/ABC.bngl +14 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/ABp/ABp.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/ABpapprox/ABp_approx.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/BAB/BAB.bngl +30 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/BABcoop/BAB_coop.bngl +34 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/GK/GK.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LR/LR.bngl +43 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LRR/LRR.bngl +53 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LRRcomp/LRR_comp.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LRcomp/LR_comp.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LV/LV.bngl +35 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LVcomp/LV_comp.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/Lisman/Lisman.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/SIR/SIR.bngl +30 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/birthdeath/birth-death.bngl +25 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/egfrsimple/egfr_simple.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/organelletransport/organelle_transport.bngl +90 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/organelletransportstruct/organelle_transport_struct.bngl +86 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/egfrnetred/egfr_net_red.bngl +180 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/energyexample1/energy_example1.bngl +168 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/example1/example1.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/localfunc/localfunc.bngl +65 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/mwc/mwc.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/nfkb/nfkb.bngl +238 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/simplesystem/simple_system.bngl +133 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testANGsynthesissimple/test_ANG_synthesis_simple.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testmratio/test_mratio.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testsat/test_sat.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testsynthesiscBNGLsimple/test_synthesis_cBNGL_simple.bngl +37 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testsynthesiscomplexsourcecBNGL/test_synthesis_complex_source_cBNGL.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/univsynth/univ_synth.bngl +48 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/curated/Creamer_2012.bngl +1931 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Goldstein1980/blbr_heterogeneity_goldstein1980.bngl +303 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/ERK_model.bngl +496 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/ERK_model.net +177 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/prion_model.bngl +160 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/prion_model.net +2945 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/14-receptor-nf/fit_pso/receptor_nf_iter91p28.bngl +183 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/30-jobs/fit_ade/jobs_tofit_gen48ind13.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/30-jobs/fit_de/jobs_tofit_gen34ind26.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/30-jobs/fit_pso/jobs_tofit_iter44p17.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Rulebasedegfrtutorial/Rule_based_egfr_tutorial.bngl +55 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Thomas2016/example6_ground_truth.bngl +170 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Yang2008/tlbr_yang2008.bngl +144 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Yang2008/tlbr_yang2008_nfr.species +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Tutorials/NativeTutorials/BLBR/BLBR.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/example3_fit__PATCHED.bngl +107 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/tcr_gen20ind9.bngl +668 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/tcr_iter28p4h2.bngl +668 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/tcr_iter9p44.bngl +668 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BA_MMA_v1.bngl +226 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BLBR_immobilization_simple.bngl +142 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BSA_v10.bngl +907 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BSA_v9.bngl +785 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/EGFR_oligo_v2.bngl +149 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/IL7_Carmen.bngl +188 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/Rab_01.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/Rag_Ragulator_assembly.bngl +407 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/actin_branch_forFitToData.bngl +301 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/bug_states_break_RB_plotting.bngl +61 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/checkring.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/cleavage_mechanism_v1.bngl +190 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/demo.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e1_1.bngl +57 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e2_1.bngl +66 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e3_1.bngl +74 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e4_1.bngl +81 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e5_1.bngl +92 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e6_1.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/fcr.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/gene_expr_func_2.bngl +97 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/immob_equiv_lig_sites.bngl +298 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/local_func_bug.bngl +109 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/mm_approx.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/nLbR_v2.bngl +116 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/oscillator.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/prion2_YTLedits.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/probsp.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/rings.bngl +102 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/rings_v2_bnf_min.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/simple_model_1.bngl +185 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/testTLBR_v2.bngl +132 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/test_8.bngl +29 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/test_tfun_2.bngl +49 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/tlbr_8.bngl +49 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/xlink_v4_1.bngl +86 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/zeroOrderRxn.bngl +22 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/4var_model.bngl +95 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/4var_model_with_FDC.bngl +105 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AD 3 State FREE Expanding nfs.bngl +272 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AMPK_MTORC1_ULK1_v2.bngl +4892 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AMPK_assembly_v1.bngl +491 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_Model_v7.bngl +293 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_activation_v1.bngl +644 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_activation_v2.bngl +754 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_model_v12.bngl +897 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_model_v14.bngl +928 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_model_v16.bngl +867 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_update_mTORC1_assembly_more_complete_scheme.bngl +112 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_update_mTORC1_assembly_v1.bngl +79 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn2_ok.bngl +113 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn4.bngl +94 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn6.bngl +170 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AZD8055.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/A_plus_B_2.bngl +81 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BNGL_book_testing.bngl +28 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BP.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BP_DCT.bngl +86 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BP_theory_DCT.bngl +122 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BSA_v4.bngl +395 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BSA_v6.bngl +540 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BergPurcell_v2.bngl +108 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BergPurcell_v3.bngl +108 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BergPurcell_v4.bngl +117 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Boris_Model2_CHECK_v1.bngl +56 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Boris_Model3_CHECK_v1.bngl +81 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CD3_CD28_bispecificAb_v1.bngl +71 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaM_Ca_interaction_v1_1.bngl +71 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaM_KRas4B_PI3K_v1.bngl +104 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaM_KRas4B_PI3K_v5.bngl +248 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaOscillate_Sat_2.bngl +77 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Compressed_model_Hela.bngl +560 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/DF3 assembly surface.bngl +141 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/DF3_dissociation.bngl +78 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/EID_v2_current_code_params.bngl +308 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/EID_vs_RBM_18Feb2022.bngl +587 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ErrNoFrees.bngl +166 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ExampleModel3.bngl +180 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ExampleModel4_v6.bngl +106 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/FDC_aCD21_v1.bngl +256 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/GW80_2.bngl +92 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HIV_v1.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HIV_v1_1.bngl +121 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HIV_v2.bngl +51 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HarmonicOscillator_redo_v1__PATCHED.bngl +302 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Haugh2b.bngl +78 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Haugh2b_1.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Homodimerization.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IGF1R_model_v1.bngl +401 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE_v3_it_works.bngl +188 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE_v3_naturalOnly.bngl +126 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE_v3_restructOnly.bngl +157 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ItalyModel_v7.bngl +315 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Kholodenko_2000.bngl +106 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Kholodenko_2000_wsh.bngl +95 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/LR_binding.bngl +159 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/LV_1.bngl +30 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/L_plus_R_v2.bngl +135 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/L_plus_R_v3b.bngl +219 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MAPK_v1.bngl +270 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MAPK_v3.bngl +396 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MI_2nd_demo_v1.bngl +131 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MI_2nd_demo_v2b.bngl +189 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MI_demo_v2.bngl +91 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v1.bngl +442 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v2.bngl +608 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v3.bngl +935 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v3b.bngl +970 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MWC_v1.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MacdonaldPike_29Sep2010.bngl +176 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/McMillen_2002.bngl +91 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Meyer.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Model_V600E_BRAF_v4.bngl +871 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Model_V600E_BRAF_v5.bngl +1023 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_b.bngl +267 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_c.bngl +224 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_c_smallest.bngl +199 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_f.bngl +242 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_n.bngl +225 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_n_smallest.bngl +201 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Motivating_example_2.bngl +262 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Motivating_example_cBNGL_2.bngl +226 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/NsrR_NO.bngl +48 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ODE_model.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/PBPK_v1.bngl +125 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/PBPK_v2.bngl +170 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Post.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAF_dimerization_only_v1.bngl +224 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAF_v1.bngl +124 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAF_v2.bngl +230 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAFi_ground_1.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAS_effectors_v1b.bngl +293 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAS_effectors_v2.bngl +754 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAS_module.bngl +204 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RBM_covid_v2.bngl +110 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RBM_covid_v3.bngl +178 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_endosome_dynamics.bngl +251 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_v15.mlrules.bngl +459 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_v3.bngl +271 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_v5_4.bngl +564 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rag_Ragulator_assembly_v2.bngl +551 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rag_Ragulator_assembly_v4.bngl +703 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasRaf_cBNGL_eBNGL_v3.bngl +118 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasRaf_stdBNGL_v3.bngl +79 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasSosGDP_v2.bngl +449 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasSosGDP_v3_copy_fit11.bngl +449 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Ras_WT_in_vitro.bngl +253 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Ras_bistability_v2.bngl +424 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Reduced_IGF1R_hela_cell_specific_model.bngl +673 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Repressilator_3.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SAVE_human_IgE_FceRI_binding.bngl +182 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SEIAR_model_22Jun2022.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SEIR_ex_v21Jun2022.bngl +35 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SHP2_base_model_2.bngl +156 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SIR_3.bngl +63 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SIR_v4.bngl +139 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SIR_v5.bngl +145 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SOS_with_4_PRS_sites.bngl +135 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Sayak.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Scaff_22_ground_1.bngl +80 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Simple_muliLigand_Model_SS_1.bngl +150 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Steric_v1.bngl +162 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Susan.bngl +262 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/TACE_module.bngl +170 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/TC.bngl +36 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/THEM.bngl +140 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/THEM_and_NM.bngl +442 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/THEM_v1.bngl +272 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/TRIAD_with_drugs.bngl +101 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/V600E_BRAF_v1.bngl +325 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Vdyn.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/actCells_v11b.bngl +438 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/after_bunching.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/after_decoupling.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/after_scaling_test.bngl +52 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/air_travel_model.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/all_data_v3_scatter_search.bngl +338 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/asymp.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/atg_model_v2.bngl +299 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/basal_EGFR_signaling_HeLa_S3.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/basal_receptor_signaling.bngl +202 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/before_bunching.bngl +46 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/before_decoupling.bngl +29 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/before_scaling.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/bertalanffy.bngl +34 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/binding_DNP_BSA.bngl +36 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/blbr_with_immobilization_2ndtest.bngl +175 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/bogdan_1.bngl +58 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/calcium2.bngl +133 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/catalysis.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/check_scaling.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/compartments.bngl +177 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/compression_v1.bngl +76 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/continue.bngl +46 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/corrected_MAPK.bngl +495 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/db_3rd_order_EnergyBNGL_v1.bngl +88 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/debug.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/debug_v3.bngl +67 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/decay.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/degradation_test_2.bngl +90 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/detailed_balance.bngl +112 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/dimer_phos2.bngl +130 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/diversity.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/double_exp.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/eff_val.bngl +91 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/eff_val_v4.bngl +171 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_net_6.bngl +170 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_net_red_1.bngl +180 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_path.bngl +152 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_path_1.bngl +153 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/elephant_9.bngl +236 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/erlang.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/error.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/error_with_too-much-nesting_5.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/example.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/exclude_test.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fceri_ji.bngl +117 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fceri_ji_4.bngl +117 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fceri_ji_red_3.bngl +116 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/filamentation_blue_v1.bngl +273 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/file.bngl +37 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fixedabundance.bngl +108 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/flu_dynamics_v1.bngl +123 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/forward_sens_anal.bngl +43 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fqual_v1.bngl +83 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/full_model_v1.bngl +158 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/gardner2000_toggle_swtich.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/geneModel.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/harmonicOscillator.bngl +248 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/heise.bngl +46 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_compart_v1.bngl +348 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_unavailR_v2.bngl +334 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_unavailR_v4.bngl +367 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_unavailR_v6.bngl +420 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/inhibitors.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/inhibitors_1.bngl +591 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/inhibitors_v2.bngl +577 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/issue_198_short.bngl +21 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/junk.bngl +576 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/junk_2.bngl +354 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/kinetics_mb1n.bngl +202 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/kp.bngl +124 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/length.bngl +35 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/lengthDist.bngl +134 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/lifetime.bngl +63 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/line_continuation.bngl +53 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/linear.bngl +22 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/localfunc_2.bngl +52 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/localfunc_3.bngl +63 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/m15.bngl +260 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/m_vs_p_v1.bngl +131 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/michment.bngl +64 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model.bngl +400 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model1.bngl +112 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_1.bngl +367 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_NAC_phase1_v6.bngl +501 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_for_phase2_v12.bngl +324 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_for_phase2_v2.bngl +319 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_phase1_SVD_v1.bngl +505 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_step1_v1.bngl +292 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_step2_v1.bngl +504 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_with_ActivatedCells_PyBNF_v8.bngl +286 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/modified_THEM_v1_1.bngl +935 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/monoBE_plusInh.bngl +112 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/motor_1.bngl +91 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/multi_bonds.bngl +44 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/multiple_bonds_per_site.bngl +67 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/mwc.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/normal.bngl +41 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ode_vs_nf_discrepancy.bngl +34 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/oscillator_1.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/overlap_rules2.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/overlapping_rules.bngl +110 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pattern_counting.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pattern_test.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/person_v1.bngl +225 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/poly.bngl +85 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/poly_net_truncated.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/population_scaling.bngl +117 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/primary_infection_v4.bngl +167 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/primary_infection_withFDCs.bngl +130 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/proliferation.bngl +27 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pt20485.bngl +194 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pulses_demo_fixed.bngl +89 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/race.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/random_synthesis.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/rapamycin_v1.bngl +280 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/residence_time.bngl +115 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/scaffold.bngl +51 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/scaling_example.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/secant.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/secant2.bngl +41 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sensitivity.bngl +299 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sensitivity_1.bngl +135 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sensitivity_2ndtry_v0.bngl +108 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple1.bngl +160 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple_1.bngl +129 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple_Syk_tuning_phos.bngl +274 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple_cBNGL.bngl +176 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simplifications_v1.bngl +276 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sir_2.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/specialconstants.bngl +60 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/state_change.bngl +21 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/study.bngl +95 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/synthesis.bngl +65 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/synthesis_v3.bngl +146 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/temp.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test.bngl +88 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test2.bngl +244 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_07Feb2018.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_2.bngl +103 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_5.bngl +108 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_6.bngl +138 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_7.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_ANG_synthesis_simple.bngl +30 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_BW_reset.bngl +40 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_MM.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_Mratio_1.bngl +44 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_continue_1.bngl +97 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_fixed.bngl +24 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_fixed_1.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_func.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_network_gen.bngl +118 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_paramname.bngl +17 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_synthesis_complex.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_synthesis_complex_0_cBNGL.bngl +56 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_whitespace.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/testrings_wsh.bngl +83 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/time_var_demo.bngl +38 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/tlmr.bngl +25 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/toy-jim.bngl +117 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/toy-jim_1.bngl +108 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/toy-jim_2.bngl +111 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/trafficking_v2.bngl +158 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/transport_v2.bngl +47 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/transport_v3.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/v18.bngl +42 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/v19.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/vaccine_v01.bngl +187 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/voodoo.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/waiting_time.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/wofsy_goldstein.bngl +145 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/x3_2.bngl +165 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/ExampleModel5_v2.bngl +163 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/Hawse_full.bngl +331 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/Hawse_reduced.bngl +87 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/PushPull.bngl +45 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/PushPull_1.bngl +50 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/agentCellSystem.bngl +194 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/cover.bngl +25 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/gk_simple.bngl +72 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/isomerization.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/model2_1.bngl +124 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/oscillatory_system.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/simple_system_5.bngl +55 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/special_constants.bngl +33 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/tcr_signaling.bngl +201 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v01.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v02.bngl +34 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v03.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v04.bngl +26 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v05.bngl +24 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v06.bngl +31 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v07.bngl +35 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v08.bngl +37 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v09.bngl +26 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v10.bngl +28 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v11.bngl +25 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v12.bngl +30 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v13.bngl +27 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v14.bngl +23 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v15.bngl +24 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v16.bngl +28 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/volterra.bngl +53 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Bergman1989.bngl +83 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/DN2015b_michaelis_menten.bngl +55 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Dreisigmeyer2008.bngl +122 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Gardner2000.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Goldbeter1996.bngl +105 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/HBF1998_semiconductor_exciton.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/I1988_metabolic_pathway.bngl +159 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Kholodenko2000.bngl +172 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Krishna2006.bngl +90 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Lander2009.bngl +94 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/MS2007_MM_to_GMA.bngl +65 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/MS2007_tryptophan_operon.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Mangan2003_CoherentFFL_AND.bngl +86 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Mueller2006_RepLeaky_n3.bngl +117 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Ozbudak2004_LacOperon_Simplified.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/P2011_branched_SC.bngl +126 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/P2011_linear_pathway_MM.bngl +72 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Rosenfeld2002_NegativeAutoregulation_2D.bngl +76 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_A1_exponential.bngl +49 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_A4_logistic.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_B1_lotka_volterra.bngl +68 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_B2_linear_chain.bngl +66 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_B3_nonlinear_chain.bngl +72 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_C1_decay_chain.bngl +100 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_C2_decay_chain2.bngl +107 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_C3_parabolic_pde.bngl +115 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1988_Monod_chemostat.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Selkov1968_GlycolyticOscillator.bngl +73 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/V1988b_gma_to_ssystem.bngl +68 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/V2005_bistable_gene.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Xiong2018_ContactKilling_Inhibitor.bngl +105 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m01_exp_decay.bngl +51 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m02_logistic.bngl +61 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m03_Lotka_Volterra.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m04_mass_action_branch.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m06_feedback.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m07_SIR.bngl +79 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m08_Bertalanffy.bngl +66 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m09_A_plus_B_to_C.bngl +70 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m11_Monod_chemostat.bngl +77 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m12_toy_mass_action.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m14_Michaelis_Menten_prod_deg.bngl +66 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m15_tryptophan_operon.bngl +116 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m18_Goodwin.bngl +89 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m19_RM_predator_prey.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m20_Briggs_Haldane.bngl +69 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m21_Haldane_chemostat.bngl +85 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m22_Brusselator.bngl +80 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m23_MWC.bngl +232 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/fgfsignalingpathway/fgf-signaling-pathway.bngl +99 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/gas6axlsignaling/gas6-axl-signaling.bngl +107 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/oxidativestressresponse/oxidative-stress-response.bngl +64 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/synapticplasticityltp/synaptic-plasticity-ltp.bngl +82 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/tcellactivation/t-cell-activation.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/tlr3dsrnasensing/tlr3-dsrna-sensing.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/cs/csregexnfa/cs_regex_nfa.bngl +64 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/ecology/ecofoodwebchaos3sp/eco_food_web_chaos_3sp.bngl +77 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/ecology/ecomutualismobligate/eco_mutualism_obligate.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/feature-demos/featurelocalfunctionsexplicit/feature_local_functions_explicit.bngl +68 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/generative/gmgameoflife/gm_game_of_life.bngl +127 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/processes/processactintreadmilling/process_actin_treadmilling.bngl +84 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Barua2007/Barua_2007.bngl +155 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Barua2013/Barua_2013__PATCHED.bngl +130 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/BaruaBCR2012/BaruaBCR_2012.bngl +379 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Blinov2006/Blinov_2006.bngl +171 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Chattaraj2021/Chattaraj_2021.bngl +74 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/ChylekFceRI2014/ChylekFceRI_2014.bngl +746 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/ChylekTCR2014/ChylekTCR_2014.bngl +607 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Dreisigmeyer2008/lac_operon_dreisigmeyer2008.bngl +226 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Gardner2000/genetic_switch_gardner2000.bngl +152 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Harmon2017/antigen_pulses_harmon2017.bngl +331 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/JaruszewiczBlonska2023/Jaruszewicz-Blonska_2023.bngl +478 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Kocieniewski2012/Kocieniewski_2012.bngl +60 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Korwek2023/Korwek_2023.bngl +726 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Lin2019/TCR_model.bngl +250 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Lin2019/TCR_model.net +179 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/LinTCR2019/Lin_TCR_2019.bngl +250 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Macken1982/tlbr_solution_macken1982.bngl +190 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Macken1982/tlbr_solution_macken1982_nfr.species +72 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Massole2023/Massole_2023.bngl +27 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/02-egfr/egfr_ground.bngl +162 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_ade/m1_gen95ind15.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_de/m1_gen97ind4.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_pso/m1_iter95p18.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_ss/m1_iter74p0h2.bngl +39 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/fit_ade/model_tofit_gen157ind72.bngl +400 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/fit_de/model_tofit_gen212ind104.bngl +400 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/fit_ss/model_tofit_iter137p1h5.bngl +400 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/output_mcmc/model_tofit_iter120596run2.bngl +400 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/output_pt/model_tofit_iter176262run23.bngl +400 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/07-egg/fit_ade/egg_gen99ind23.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/07-egg/fit_ss/egg_iter99p7h0.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/13-receptor/example5_starting_point.bngl +189 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_ade/IGF1R_fit_all_gen20ind12.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_de/IGF1R_fit_all_gen19ind47.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_pso/IGF1R_fit_all_iter16p0.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_ss/IGF1R_fit_all_iter6p1h4.bngl +265 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/Scaff-22_ground.bngl +80 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_ade/Scaff-22_tofit_gen25ind40.bngl +96 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_de/Scaff-22_tofit_gen11ind20.bngl +96 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_pso/Scaff-22_tofit_iter17p14.bngl +96 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_ss/Scaff-22_tofit_iter28p2h5.bngl +96 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/20-raf-constraint4/fit_de/RAFi_gen0ind36.bngl +125 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/24-jnk/fit_ade/JNKmodel_180724_bnf_gen22ind34.bngl +263 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/24-jnk/fit_de/JNKmodel_180724_bnf_gen43ind6.bngl +263 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/24-jnk/fit_pso/JNKmodel_180724_bnf_iter127p71.bngl +263 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/26-tcr-sens/fit_ss/fit_edited.bngl +178 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/30-jobs/jobs_ground.bngl +63 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019Rab/rab_mon1ccz1_ox.bngl +497 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019Rab/rab_rab5_ox.bngl +496 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019Rab/rab_wt.bngl +499 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/ModelZAP/Model_ZAP.bngl +300 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mukhopadhyay2013/Mukhopadhyay_2013.bngl +107 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Ordyan2020/mCaMKIICaSpike/mCaMKII_Ca_Spike.bngl +215 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Posner1995/blbr_rings_posner1995.bngl +178 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Posner1995/blbr_rings_posner1995_nfr.species +103 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Posner2004/blbr_cooperativity_posner2004.bngl +196 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/PyBioNetGen/core/RAFiground/RAFi_ground.bngl +120 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/PyBioNetGen/core/model/model.bngl +405 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_EGFR_Epigen.bngl +336 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_EGFR_best-fit.bngl +358 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_EGFR_sensitivity.bngl +478 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_HA_EGFR_L858R.bngl +334 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_HMEC.bngl +313 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_HeLa.bngl +313 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_MCF10A.bngl +313 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Zhang2021/Zhang_2021.bngl +760 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/fcerifyn/fceri_fyn.bngl +125 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/vilar2002b/vilar_2002b.bngl +75 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/vilar2002c/vilar_2002c.bngl +85 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/CaOscillateFunc/CaOscillate_Func.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/CaOscillateSat/CaOscillate_Sat.bngl +62 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/Motivatingexample/Motivating_example.bngl +262 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/MotivatingexamplecBNGL/Motivating_example_cBNGL.bngl +226 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/ABCscan/ABC_scan.bngl +24 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/ABCssa/ABC_ssa.bngl +14 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/BABscan/BAB_scan.bngl +32 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/Chyleklibrary/Chylek_library.bngl +369 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/CircadianOscillator/CircadianOscillator.bngl +93 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/ComplexDegradation/ComplexDegradation.bngl +36 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/FceRIji/FceRI_ji.bngl +134 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/FceRIviz/FceRI_viz.bngl +107 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/Lismanbifurcate/Lisman_bifurcate.bngl +37 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/Suderman2013/Suderman_2013.bngl +387 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/toggle/toggle.bngl +81 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/visualize/visualize.bngl +54 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/egfrnet/egfr_net.bngl +174 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/nfkbillustratingprotocols/nfkb_illustrating_protocols.bngl +247 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulemonkey/Testing/issue_05_timing_horizon/models/HBF1998_brusselator.bngl +76 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulemonkey/Testing/issue_05_timing_horizon/models/Lipniacki2006.bngl +77 -0
- bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulemonkey/Testing/issue_05_timing_horizon/models/Samoilov2005_FutileCycle.bngl +85 -0
- bngsim-0.11.32/parity_checks/bng_parity/overrides.py +253 -0
- bngsim-0.11.32/parity_checks/bng_parity/parity_diff.py +118 -0
- bngsim-0.11.32/parity_checks/bng_parity/parity_golden.py +623 -0
- bngsim-0.11.32/parity_checks/bng_parity/parity_sweep.py +1138 -0
- bngsim-0.11.32/parity_checks/bng_parity/vendor_corpus.py +546 -0
- bngsim-0.11.32/parity_checks/manifest.schema.json +144 -0
- bngsim-0.11.32/parity_checks/manifest_schema.md +229 -0
- bngsim-0.11.32/parity_checks/requirements-pybionetgen.txt +27 -0
- bngsim-0.11.32/parity_checks/rr_parity/.gitignore +3 -0
- bngsim-0.11.32/parity_checks/rr_parity/INSTRUMENTED_ROADRUNNER.md +217 -0
- bngsim-0.11.32/parity_checks/rr_parity/README.md +398 -0
- bngsim-0.11.32/parity_checks/rr_parity/_rr_common.py +981 -0
- bngsim-0.11.32/parity_checks/rr_parity/_sbml_features.py +199 -0
- bngsim-0.11.32/parity_checks/rr_parity/build_instrumented_roadrunner.sh +111 -0
- bngsim-0.11.32/parity_checks/rr_parity/build_ode_jobs.py +225 -0
- bngsim-0.11.32/parity_checks/rr_parity/build_ssa_candidates.py +561 -0
- bngsim-0.11.32/parity_checks/rr_parity/build_ssa_jobs.py +158 -0
- bngsim-0.11.32/parity_checks/rr_parity/cbngl_bng2_validate.py +147 -0
- bngsim-0.11.32/parity_checks/rr_parity/convert_sweep.py +151 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/.gitignore +7 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/README.md +18 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/BIOMD0000000883/Giani2019.xml +7446 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/BIOMD0000001102/BIOMD0000001102.xml +1574 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/BIOMD0000001103/BIOMD0000001103.xml +992 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003030002/MODEL2003030002.xml +583 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003030003/MODEL2003030003.xml +559 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003050001/MODEL2003050001.xml +1587 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003050002/MODEL2003050002.xml +1086 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2009230001/MODEL2009230001.xml +1818 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2306210001/MODEL2306210001.xml +1697 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2306220001/MODEL2306220001.xml +1333 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2502210001/MODEL2502210001.xml +504 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2503310002/MODEL2503310002.xml +345 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2506160001/MODEL2506160001.xml +1594 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2506160002/MODEL2506160002.xml +1594 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL8236441887/MODEL8236441887.xml +1724 -0
- bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/README.md +26 -0
- bngsim-0.11.32/parity_checks/rr_parity/diff_ssa_baseline.py +150 -0
- bngsim-0.11.32/parity_checks/rr_parity/fetch_sedml.py +196 -0
- bngsim-0.11.32/parity_checks/rr_parity/generate_matrix.py +3441 -0
- bngsim-0.11.32/parity_checks/rr_parity/generate_sedml_manifest.py +232 -0
- bngsim-0.11.32/parity_checks/rr_parity/make_ssa_baseline.py +61 -0
- bngsim-0.11.32/parity_checks/rr_parity/materialize.py +147 -0
- bngsim-0.11.32/parity_checks/rr_parity/models/.gitignore +8 -0
- bngsim-0.11.32/parity_checks/rr_parity/ode_jobs.json +1346 -0
- bngsim-0.11.32/parity_checks/rr_parity/overrides.py +565 -0
- bngsim-0.11.32/parity_checks/rr_parity/rr_golden.py +383 -0
- bngsim-0.11.32/parity_checks/rr_parity/rr_run.py +912 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/README.md +32 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000001/BIOMD0000000001_url.sedml +634 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000001/BIOMD0000000001_url.xml +1314 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000003/BIOMD0000000003_url.sedml +184 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000003/BIOMD0000000003_url.xml +469 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000004/BIOMD0000000004_url.sedml +204 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000004/BIOMD0000000004_url.xml +451 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000005/BIOMD0000000005.sedml +208 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000005/BIOMD0000000005_url.xml +588 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000006/BIOMD0000000006_url.sedml +158 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000006/BIOMD0000000006_url.xml +334 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000010/BIOMD0000000010_url.sedml +304 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000010/BIOMD0000000010_url.xml +704 -0
- bngsim-0.11.32/parity_checks/rr_parity/smoke/ode_jobs_smoke.json +158 -0
- bngsim-0.11.32/parity_checks/rr_parity/snapshots/README.md +33 -0
- bngsim-0.11.32/parity_checks/rr_parity/ssa_attribution.py +416 -0
- bngsim-0.11.32/parity_checks/rr_parity/ssa_baseline.json +372 -0
- bngsim-0.11.32/parity_checks/rr_parity/ssa_candidates.json +1853 -0
- bngsim-0.11.32/parity_checks/rr_parity/ssa_jobs.json +387 -0
- bngsim-0.11.32/parity_checks/rr_parity/ssa_screen.py +1772 -0
- bngsim-0.11.32/parity_checks/rr_parity/ssa_spec.json +18 -0
- bngsim-0.11.32/parity_checks/rr_parity/temp_biomodels_manifest.json +1992 -0
- bngsim-0.11.32/parity_checks/rr_parity/test_sbml_features.py +24 -0
- bngsim-0.11.32/pyproject.toml +240 -0
- bngsim-0.11.32/python/bngsim/__init__.py +374 -0
- bngsim-0.11.32/python/bngsim/_bngsim_core.pyi +893 -0
- bngsim-0.11.32/python/bngsim/_build_provenance.py +390 -0
- bngsim-0.11.32/python/bngsim/_codegen.py +5565 -0
- bngsim-0.11.32/python/bngsim/_diffrax_solver.py +154 -0
- bngsim-0.11.32/python/bngsim/_eval_spec.py +284 -0
- bngsim-0.11.32/python/bngsim/_exceptions.py +245 -0
- bngsim-0.11.32/python/bngsim/_jacobian.py +1412 -0
- bngsim-0.11.32/python/bngsim/_jax_bridge.py +429 -0
- bngsim-0.11.32/python/bngsim/_jax_rhs.py +455 -0
- bngsim-0.11.32/python/bngsim/_model.py +842 -0
- bngsim-0.11.32/python/bngsim/_named_array.py +106 -0
- bngsim-0.11.32/python/bngsim/_net_reader.py +399 -0
- bngsim-0.11.32/python/bngsim/_nfsim_session.py +751 -0
- bngsim-0.11.32/python/bngsim/_result.py +2893 -0
- bngsim-0.11.32/python/bngsim/_rounding.py +74 -0
- bngsim-0.11.32/python/bngsim/_rulemonkey_session.py +527 -0
- bngsim-0.11.32/python/bngsim/_sample_times.py +45 -0
- bngsim-0.11.32/python/bngsim/_saturable_jacobian.py +640 -0
- bngsim-0.11.32/python/bngsim/_sbml_loader.py +6120 -0
- bngsim-0.11.32/python/bngsim/_sbml_unsupported.py +173 -0
- bngsim-0.11.32/python/bngsim/_seed.py +40 -0
- bngsim-0.11.32/python/bngsim/_simulator.py +3680 -0
- bngsim-0.11.32/python/bngsim/_ssa_validation.py +96 -0
- bngsim-0.11.32/python/bngsim/_version.py +33 -0
- bngsim-0.11.32/python/bngsim/convert/__init__.py +1170 -0
- bngsim-0.11.32/python/bngsim/convert/__main__.py +8 -0
- bngsim-0.11.32/python/bngsim/convert/_bng2.py +166 -0
- bngsim-0.11.32/python/bngsim/convert/_bngl_writer.py +740 -0
- bngsim-0.11.32/python/bngsim/convert/_cli.py +758 -0
- bngsim-0.11.32/python/bngsim/convert/_events.py +388 -0
- bngsim-0.11.32/python/bngsim/convert/_net_writer.py +542 -0
- bngsim-0.11.32/python/bngsim/convert/_omex.py +564 -0
- bngsim-0.11.32/python/bngsim/convert/_protocol.py +900 -0
- bngsim-0.11.32/python/bngsim/convert/_sbml_writer.py +1068 -0
- bngsim-0.11.32/python/bngsim/convert/_sedml.py +797 -0
- bngsim-0.11.32/python/bngsim/convert/_validate.py +1320 -0
- bngsim-0.11.32/python/bngsim/coupling.py +1048 -0
- bngsim-0.11.32/python/bngsim/jax/__init__.py +43 -0
- bngsim-0.11.32/python/bngsim/kernel.py +336 -0
- bngsim-0.11.32/python/bngsim/vivarium.py +221 -0
- bngsim-0.11.32/src/_bngsim_core.cpp +1902 -0
- bngsim-0.11.32/src/bngsim_api.cpp +207 -0
- bngsim-0.11.32/src/cvode_simulator.cpp +3342 -0
- bngsim-0.11.32/src/expression.cpp +895 -0
- bngsim-0.11.32/src/lapack_dense_linsol.cpp +319 -0
- bngsim-0.11.32/src/model.cpp +1986 -0
- bngsim-0.11.32/src/model_builder.cpp +1539 -0
- bngsim-0.11.32/src/model_impl.hpp +268 -0
- bngsim-0.11.32/src/net_file_loader.cpp +996 -0
- bngsim-0.11.32/src/nfsim_simulator.cpp +1681 -0
- bngsim-0.11.32/src/result.cpp +367 -0
- bngsim-0.11.32/src/rulemonkey_simulator.cpp +315 -0
- bngsim-0.11.32/src/seed_count_rounding.hpp +269 -0
- bngsim-0.11.32/src/ssa_simulator.cpp +1698 -0
- bngsim-0.11.32/src/steady_state.cpp +691 -0
- bngsim-0.11.32/src/table_function.cpp +190 -0
- bngsim-0.11.32/third_party/exprtk/LICENSE +21 -0
- bngsim-0.11.32/third_party/exprtk/README.md +32 -0
- bngsim-0.11.32/third_party/exprtk/VENDOR.json +179 -0
- bngsim-0.11.32/third_party/exprtk/exprtk.hpp +46637 -0
- bngsim-0.11.32/third_party/mir/LICENSE +21 -0
- bngsim-0.11.32/third_party/mir/README.md +441 -0
- bngsim-0.11.32/third_party/mir/README.md.bngsim +51 -0
- bngsim-0.11.32/third_party/mir/VENDOR.json +68 -0
- bngsim-0.11.32/third_party/mir/c2mir/README.md +158 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/caarch64-ABI-code.c +100 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/caarch64-code.c +29 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/caarch64.h +55 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_float.h +60 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_limits.h +38 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_linux.h +143 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_stdarg.h +31 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_stddef.h +19 -0
- bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_stdint.h +141 -0
- bngsim-0.11.32/third_party/mir/c2mir/c2mir.c +14258 -0
- bngsim-0.11.32/third_party/mir/c2mir/c2mir.h +36 -0
- bngsim-0.11.32/third_party/mir/c2mir/mirc.h +39 -0
- bngsim-0.11.32/third_party/mir/c2mir/mirc_iso646.h +21 -0
- bngsim-0.11.32/third_party/mir/c2mir/mirc_stdalign.h +14 -0
- bngsim-0.11.32/third_party/mir/c2mir/mirc_stdbool.h +14 -0
- bngsim-0.11.32/third_party/mir/c2mir/mirc_stdnoreturn.h +11 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/cppc64-ABI-code.c +311 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/cppc64-code.c +28 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/cppc64.h +55 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_float.h +60 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_limits.h +38 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_linux.h +123 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_stdarg.h +23 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_stddef.h +19 -0
- bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_stdint.h +133 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/criscv64-ABI-code.c +462 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/criscv64-code.c +29 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/criscv64.h +55 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_float.h +60 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_limits.h +38 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_linux.h +120 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_stdarg.h +25 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_stddef.h +19 -0
- bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_stdint.h +133 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/cs390x-ABI-code.c +102 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/cs390x-code.c +28 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/cs390x.h +57 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_float.h +60 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_limits.h +38 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_linux.h +122 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_stdarg.h +27 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_stddef.h +19 -0
- bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_stdint.h +133 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/cx86_64-ABI-code.c +415 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/cx86_64-code.c +34 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/cx86_64.h +78 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_float.h +60 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_limits.h +48 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_linux.h +131 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_stdarg.h +41 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_stddef.h +30 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_stdint.h +178 -0
- bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_win.h +116 -0
- bngsim-0.11.32/third_party/mir/mir-aarch64.c +839 -0
- bngsim-0.11.32/third_party/mir/mir-aarch64.h +61 -0
- bngsim-0.11.32/third_party/mir/mir-alloc-default.c +36 -0
- bngsim-0.11.32/third_party/mir/mir-alloc.h +47 -0
- bngsim-0.11.32/third_party/mir/mir-bitmap.h +372 -0
- bngsim-0.11.32/third_party/mir/mir-code-alloc-default.c +90 -0
- bngsim-0.11.32/third_party/mir/mir-code-alloc.h +44 -0
- bngsim-0.11.32/third_party/mir/mir-dlist.h +182 -0
- bngsim-0.11.32/third_party/mir/mir-gen-aarch64.c +2678 -0
- bngsim-0.11.32/third_party/mir/mir-gen-ppc64.c +2648 -0
- bngsim-0.11.32/third_party/mir/mir-gen-riscv64.c +3001 -0
- bngsim-0.11.32/third_party/mir/mir-gen-s390x.c +2436 -0
- bngsim-0.11.32/third_party/mir/mir-gen-x86_64.c +3203 -0
- bngsim-0.11.32/third_party/mir/mir-gen.c +10018 -0
- bngsim-0.11.32/third_party/mir/mir-gen.h +33 -0
- bngsim-0.11.32/third_party/mir/mir-hash.h +98 -0
- bngsim-0.11.32/third_party/mir/mir-htab.h +256 -0
- bngsim-0.11.32/third_party/mir/mir-interp.c +2054 -0
- bngsim-0.11.32/third_party/mir/mir-ppc64.c +674 -0
- bngsim-0.11.32/third_party/mir/mir-ppc64.h +114 -0
- bngsim-0.11.32/third_party/mir/mir-reduce.h +466 -0
- bngsim-0.11.32/third_party/mir/mir-riscv64.c +1177 -0
- bngsim-0.11.32/third_party/mir/mir-riscv64.h +78 -0
- bngsim-0.11.32/third_party/mir/mir-s390x.c +600 -0
- bngsim-0.11.32/third_party/mir/mir-s390x.h +57 -0
- bngsim-0.11.32/third_party/mir/mir-varr.h +196 -0
- bngsim-0.11.32/third_party/mir/mir-x86_64.c +972 -0
- bngsim-0.11.32/third_party/mir/mir-x86_64.h +59 -0
- bngsim-0.11.32/third_party/mir/mir.c +6993 -0
- bngsim-0.11.32/third_party/mir/mir.h +739 -0
- bngsim-0.11.32/third_party/mir/real-time.h +41 -0
- bngsim-0.11.32/third_party/nfsim/CMakeLists.txt +159 -0
- bngsim-0.11.32/third_party/nfsim/LICENSE.txt +21 -0
- bngsim-0.11.32/third_party/nfsim/README.md +364 -0
- bngsim-0.11.32/third_party/nfsim/VENDOR.json +185 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/NFcore.hh +1613 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/compartment.cpp +62 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/compartment.hh +79 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/complex.cpp +457 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/complexList.cpp +209 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/energyPattern.cpp +561 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/energyPattern.hh +220 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/molecule.cpp +770 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/moleculeLists/moleculeList.cpp +177 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/moleculeLists/moleculeList.hh +107 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/moleculeType.cpp +835 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/observable.cpp +535 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/observable.hh +212 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionClass.cpp +693 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionSelector/directSelector.cpp +87 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionSelector/logClassSelector.cpp +368 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionSelector/reactionSelector.hh +149 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/system.cpp +2246 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/systemSnapshot.cpp +124 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/systemSnapshot.hh +49 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/templateMolecule.cpp +2157 -0
- bngsim-0.11.32/third_party/nfsim/src/NFcore/templateMolecule.hh +267 -0
- bngsim-0.11.32/third_party/nfsim/src/NFfunction/NFfunction.hh +505 -0
- bngsim-0.11.32/third_party/nfsim/src/NFfunction/compositeFunction.cpp +663 -0
- bngsim-0.11.32/third_party/nfsim/src/NFfunction/funcParser.cpp +250 -0
- bngsim-0.11.32/third_party/nfsim/src/NFfunction/function.cpp +408 -0
- bngsim-0.11.32/third_party/nfsim/src/NFfunction/localFunction.cpp +580 -0
- bngsim-0.11.32/third_party/nfsim/src/NFfunction/nfsim_funcparser.h +342 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput.cpp +4609 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput.hh +344 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput_energy.cpp +223 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput_energy.hh +50 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/readme.txt +530 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinystr.cpp +116 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinystr.h +319 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxml.cpp +1861 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxml.h +1792 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxmlerror.cpp +53 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxmlparser.cpp +1637 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/commandLineParser.cpp +270 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/parseFuncXML.cpp +842 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/parseSymRxns.cpp +895 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/rnfRunner.cpp +379 -0
- bngsim-0.11.32/third_party/nfsim/src/NFinput/walk.cpp +291 -0
- bngsim-0.11.32/third_party/nfsim/src/NFoutput/NFoutput.cpp +223 -0
- bngsim-0.11.32/third_party/nfsim/src/NFoutput/NFoutput.hh +119 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/NFreactions.cpp +10 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/NFreactions.hh +33 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mapping.cpp +73 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mapping.hh +133 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingGenerator.cpp +18 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingGenerator.hh +71 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingSet.cpp +239 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingSet.hh +163 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantContainer.hh +84 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantList.cpp +248 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantList.hh +154 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantTree.cpp +593 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantTree.hh +206 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactions/DORreaction.cpp +1531 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactions/reaction.cpp +630 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactions/reaction.hh +242 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/moleculeCreator.cpp +191 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/moleculeCreator.hh +79 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/speciesCreator.cpp +188 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/speciesCreator.hh +80 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformation.cpp +646 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformation.hh +463 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformationSet.cpp +1154 -0
- bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformationSet.hh +439 -0
- bngsim-0.11.32/third_party/nfsim/src/NFscheduler/NFstream.cpp +168 -0
- bngsim-0.11.32/third_party/nfsim/src/NFscheduler/NFstream.h +71 -0
- bngsim-0.11.32/third_party/nfsim/src/NFscheduler/Scheduler.cpp +847 -0
- bngsim-0.11.32/third_party/nfsim/src/NFscheduler/Scheduler.h +118 -0
- bngsim-0.11.32/third_party/nfsim/src/NFsim.cpp +1034 -0
- bngsim-0.11.32/third_party/nfsim/src/NFsim.hh +30 -0
- bngsim-0.11.32/third_party/nfsim/src/NFsim_main.cpp +6 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/MTrand/mtrand.cpp +54 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/MTrand/mtrand.h +153 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/MTrand/mtreadme.txt +118 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/NFutil.hh +148 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/conversion.cpp +122 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/nfsim_rng.h +138 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/random.cpp +114 -0
- bngsim-0.11.32/third_party/nfsim/src/NFutil/stringOperations.cpp +24 -0
- bngsim-0.11.32/third_party/nfsim/src/nauty24/nausparse.c +1519 -0
- bngsim-0.11.32/third_party/nfsim/src/nauty24/nausparse.h +77 -0
- bngsim-0.11.32/third_party/nfsim/src/nauty24/nautil.c +730 -0
- bngsim-0.11.32/third_party/nfsim/src/nauty24/nauty.c +1178 -0
- bngsim-0.11.32/third_party/nfsim/src/nauty24/nauty.h +1076 -0
- bngsim-0.11.32/third_party/nfsim/src/nauty24/readme.txt +11 -0
- bngsim-0.11.32/third_party/rulemonkey/CHANGELOG.md +854 -0
- bngsim-0.11.32/third_party/rulemonkey/CMakeLists.txt +307 -0
- bngsim-0.11.32/third_party/rulemonkey/LICENSE +21 -0
- bngsim-0.11.32/third_party/rulemonkey/README.md +228 -0
- bngsim-0.11.32/third_party/rulemonkey/VENDOR.json +51 -0
- bngsim-0.11.32/third_party/rulemonkey/cmake/RuleMonkeyConfig.cmake.in +12 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/canonical.cpp +624 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/canonical.hpp +110 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/engine.cpp +8220 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/engine.hpp +126 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/engine_profile.hpp +1315 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/expr_eval.cpp +54 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/expr_eval.hpp +37 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/model.hpp +385 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/pattern_parser.cpp +339 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/pattern_parser.hpp +42 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/simulator.cpp +2561 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/table_function.cpp +96 -0
- bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/table_function.hpp +35 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/gdat_format.md +144 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/internals.md +172 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/model_semantics.md +264 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/quickstart.md +150 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/macaque.png +0 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/rulemonkey-favicon.svg +11 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/rulemonkey-logo.svg +11 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/rulemonkey-readme-card.svg +11 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/scan_format.md +157 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/species_format.md +187 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/test_corpora.md +187 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/timing_comparison.md +206 -0
- bngsim-0.11.32/third_party/rulemonkey/docs/troubleshooting.md +226 -0
- bngsim-0.11.32/third_party/rulemonkey/include/rulemonkey/simulator.hpp +374 -0
- bngsim-0.11.32/third_party/rulemonkey/include/rulemonkey/types.hpp +178 -0
- bngsim-0.11.32/third_party/sundials/README.md +9 -0
- bngsim-0.11.32/third_party/sundials/VENDOR.json +99 -0
- bngsim-0.11.32/uv.lock +3086 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
name: release
|
|
2
|
+
|
|
3
|
+
# Build release artifacts (wheels + sdist) and publish via PyPI Trusted
|
|
4
|
+
# Publishing (OIDC — no API tokens).
|
|
5
|
+
#
|
|
6
|
+
# - Manual run (workflow_dispatch): choose `testpypi` (rehearsal) or `pypi`.
|
|
7
|
+
# - Tag push (v*): publishes to PyPI.
|
|
8
|
+
#
|
|
9
|
+
# Scope: Linux (manylinux x86_64) + macOS arm64 + sdist. Intel-macOS / Windows
|
|
10
|
+
# wheels can be added later; platforms without a wheel fall back to the sdist.
|
|
11
|
+
#
|
|
12
|
+
# The publish job runs in the `pypi` / `testpypi` GitHub Environment so it matches
|
|
13
|
+
# the trusted-publisher configuration on (Test)PyPI.
|
|
14
|
+
|
|
15
|
+
on:
|
|
16
|
+
workflow_dispatch:
|
|
17
|
+
inputs:
|
|
18
|
+
target:
|
|
19
|
+
description: "Publish target"
|
|
20
|
+
type: choice
|
|
21
|
+
options: [testpypi, pypi]
|
|
22
|
+
default: testpypi
|
|
23
|
+
push:
|
|
24
|
+
tags: ["v*"]
|
|
25
|
+
|
|
26
|
+
concurrency:
|
|
27
|
+
group: release-${{ github.ref }}
|
|
28
|
+
cancel-in-progress: false
|
|
29
|
+
|
|
30
|
+
jobs:
|
|
31
|
+
wheels:
|
|
32
|
+
name: wheels · ${{ matrix.os }}
|
|
33
|
+
runs-on: ${{ matrix.os }}
|
|
34
|
+
strategy:
|
|
35
|
+
fail-fast: false
|
|
36
|
+
matrix:
|
|
37
|
+
include:
|
|
38
|
+
- os: ubuntu-latest # manylinux x86_64
|
|
39
|
+
- os: macos-14 # macOS arm64 (Apple Silicon)
|
|
40
|
+
macos_target: "11.0"
|
|
41
|
+
steps:
|
|
42
|
+
- uses: actions/checkout@v4
|
|
43
|
+
- name: Build wheels
|
|
44
|
+
uses: pypa/cibuildwheel@v4.1.0
|
|
45
|
+
env:
|
|
46
|
+
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_target }}
|
|
47
|
+
- uses: actions/upload-artifact@v4
|
|
48
|
+
with:
|
|
49
|
+
name: dist-${{ matrix.os }}
|
|
50
|
+
path: ./wheelhouse/*.whl
|
|
51
|
+
if-no-files-found: error
|
|
52
|
+
|
|
53
|
+
sdist:
|
|
54
|
+
runs-on: ubuntu-latest
|
|
55
|
+
steps:
|
|
56
|
+
- uses: actions/checkout@v4
|
|
57
|
+
- name: Build sdist
|
|
58
|
+
run: pipx run build --sdist
|
|
59
|
+
- uses: actions/upload-artifact@v4
|
|
60
|
+
with:
|
|
61
|
+
name: dist-sdist
|
|
62
|
+
path: ./dist/*.tar.gz
|
|
63
|
+
if-no-files-found: error
|
|
64
|
+
|
|
65
|
+
publish:
|
|
66
|
+
needs: [wheels, sdist]
|
|
67
|
+
runs-on: ubuntu-latest
|
|
68
|
+
# `pypi` for a tag push or an explicit dispatch target of pypi; else `testpypi`.
|
|
69
|
+
environment: ${{ (github.event_name == 'push' || inputs.target == 'pypi') && 'pypi' || 'testpypi' }}
|
|
70
|
+
permissions:
|
|
71
|
+
id-token: write # OIDC token for Trusted Publishing
|
|
72
|
+
steps:
|
|
73
|
+
- uses: actions/download-artifact@v4
|
|
74
|
+
with:
|
|
75
|
+
path: dist
|
|
76
|
+
pattern: dist-*
|
|
77
|
+
merge-multiple: true
|
|
78
|
+
- name: List collected distributions
|
|
79
|
+
run: ls -la dist
|
|
80
|
+
- name: Publish
|
|
81
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
82
|
+
with:
|
|
83
|
+
packages-dir: dist
|
|
84
|
+
repository-url: ${{ (github.event_name == 'push' || inputs.target == 'pypi') && 'https://upload.pypi.org/legacy/' || 'https://test.pypi.org/legacy/' }}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
name: wheels
|
|
2
|
+
|
|
3
|
+
# Build binary wheels (Linux / macOS / Windows) + an sdist with cibuildwheel,
|
|
4
|
+
# and upload them as CI artifacts. No PyPI publishing — that's a separate step.
|
|
5
|
+
# Wheels bundle SuiteSparse/KLU (see [tool.cibuildwheel] in pyproject.toml).
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
workflow_dispatch: {}
|
|
9
|
+
push:
|
|
10
|
+
branches: [main]
|
|
11
|
+
paths:
|
|
12
|
+
- "pyproject.toml"
|
|
13
|
+
- "CMakeLists.txt"
|
|
14
|
+
- "src/**"
|
|
15
|
+
- "include/**"
|
|
16
|
+
- "third_party/**"
|
|
17
|
+
- "python/bngsim/**"
|
|
18
|
+
- "ci/**"
|
|
19
|
+
- ".github/workflows/wheels.yml"
|
|
20
|
+
|
|
21
|
+
concurrency:
|
|
22
|
+
group: wheels-${{ github.ref }}
|
|
23
|
+
cancel-in-progress: true
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
wheels:
|
|
27
|
+
name: wheels · ${{ matrix.os }}
|
|
28
|
+
runs-on: ${{ matrix.os }}
|
|
29
|
+
# Windows KLU (vcpkg AMD/COLAMD/BTF + dlsym) still WIP → non-blocking.
|
|
30
|
+
continue-on-error: ${{ matrix.os == 'windows-latest' }}
|
|
31
|
+
strategy:
|
|
32
|
+
fail-fast: false
|
|
33
|
+
matrix:
|
|
34
|
+
include:
|
|
35
|
+
- os: ubuntu-latest # manylinux x86_64
|
|
36
|
+
- os: macos-13 # macOS x86_64 (Intel)
|
|
37
|
+
macos_target: "10.15" # from-source SuiteSparse -> broad target
|
|
38
|
+
- os: macos-14 # macOS arm64 (Apple Silicon)
|
|
39
|
+
macos_target: "11.0" # arm64 floor; from-source SuiteSparse
|
|
40
|
+
- os: windows-latest # Windows x86_64
|
|
41
|
+
steps:
|
|
42
|
+
- uses: actions/checkout@v4
|
|
43
|
+
|
|
44
|
+
- name: Build wheels
|
|
45
|
+
uses: pypa/cibuildwheel@v4.1.0
|
|
46
|
+
env:
|
|
47
|
+
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_target }}
|
|
48
|
+
|
|
49
|
+
- name: Upload wheels
|
|
50
|
+
uses: actions/upload-artifact@v4
|
|
51
|
+
with:
|
|
52
|
+
name: wheels-${{ matrix.os }}
|
|
53
|
+
path: ./wheelhouse/*.whl
|
|
54
|
+
if-no-files-found: error
|
|
55
|
+
|
|
56
|
+
sdist:
|
|
57
|
+
name: sdist
|
|
58
|
+
runs-on: ubuntu-latest
|
|
59
|
+
steps:
|
|
60
|
+
- uses: actions/checkout@v4
|
|
61
|
+
- name: Build sdist
|
|
62
|
+
run: pipx run build --sdist
|
|
63
|
+
- name: Upload sdist
|
|
64
|
+
uses: actions/upload-artifact@v4
|
|
65
|
+
with:
|
|
66
|
+
name: sdist
|
|
67
|
+
path: ./dist/*.tar.gz
|
|
68
|
+
if-no-files-found: error
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
default_install_hook_types: [pre-commit, pre-push]
|
|
2
|
+
default_stages: [pre-commit]
|
|
3
|
+
fail_fast: false
|
|
4
|
+
|
|
5
|
+
# Standalone bngsim/ config. In the upstream development monorepo the active
|
|
6
|
+
# config lives at that repo's root (with every path bngsim/-prefixed); this file
|
|
7
|
+
# is the de-prefixed sibling that travels with `git subtree split -P bngsim` so
|
|
8
|
+
# the extracted repo lints/tests itself with no path fixups.
|
|
9
|
+
|
|
10
|
+
# Globally excluded paths (apply to every hook below):
|
|
11
|
+
# - third_party/ vendored NFsim/SUNDIALS/exprtk/mir/rulemonkey source;
|
|
12
|
+
# upstream-byte-faithful, do not reformat / EOL-fix
|
|
13
|
+
# - dev/ scratch notes, plans, ADRs — informal markdown
|
|
14
|
+
exclude: ^(third_party|dev)/
|
|
15
|
+
|
|
16
|
+
repos:
|
|
17
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
18
|
+
rev: v5.0.0
|
|
19
|
+
hooks:
|
|
20
|
+
# Hygiene hooks are scoped to *source* file types only.
|
|
21
|
+
# Test data (.bngl, .net, .ant, .xml, .gdat, .cdat, .csv, .json,
|
|
22
|
+
# …) must NOT be touched: many are byte-mirrored from upstream
|
|
23
|
+
# sources (BioModels SBML, BNG2.pl-generated .net) and are
|
|
24
|
+
# consumed by parsers that may be sensitive to whitespace/EOL.
|
|
25
|
+
- id: check-yaml
|
|
26
|
+
files: \.(yaml|yml)$
|
|
27
|
+
- id: end-of-file-fixer
|
|
28
|
+
files: ^.*\.(py|cpp|hpp|cc|cxx|hh|hxx|c|h|md|toml|cfg|ini|yaml|yml)$
|
|
29
|
+
- id: trailing-whitespace
|
|
30
|
+
files: ^.*\.(py|cpp|hpp|cc|cxx|hh|hxx|c|h|md|toml|cfg|ini|yaml|yml)$
|
|
31
|
+
- id: check-merge-conflict
|
|
32
|
+
- id: check-added-large-files
|
|
33
|
+
# Committed spec manifests (parity_checks/*/ *_jobs.json) run ~0.6 MB;
|
|
34
|
+
# the multi-MB SBML/SED-ML corpora are gitignored, so 1 MB still
|
|
35
|
+
# catches accidental binary commits.
|
|
36
|
+
args: ['--maxkb=1024']
|
|
37
|
+
# bng_parity golden.json is committed reference data (per-job seed=1
|
|
38
|
+
# checksums + fingerprints over the full 895-job corpus, ~1.7 MB at full
|
|
39
|
+
# coverage) — the same category as jobs.json above, just denser. The
|
|
40
|
+
# fingerprints are not thinnable without weakening the consumer check,
|
|
41
|
+
# so this one file is exempted from the 1 MB cap.
|
|
42
|
+
exclude: ^parity_checks/bng_parity/golden/golden\.json$
|
|
43
|
+
- id: mixed-line-ending
|
|
44
|
+
files: ^.*\.(py|cpp|hpp|cc|cxx|hh|hxx|c|h|md|toml|cfg|ini|yaml|yml)$
|
|
45
|
+
- id: debug-statements
|
|
46
|
+
files: ^.*\.py$
|
|
47
|
+
- id: detect-private-key
|
|
48
|
+
|
|
49
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
50
|
+
rev: v0.14.0
|
|
51
|
+
hooks:
|
|
52
|
+
# Lint + format gate the entire tree. Per-file ignores for E501
|
|
53
|
+
# (long lines) in benchmarks/harness/scripts live in
|
|
54
|
+
# pyproject.toml [tool.ruff.lint.per-file-ignores]; the dev/ tree
|
|
55
|
+
# (scratch notes) is gitignored.
|
|
56
|
+
- id: ruff
|
|
57
|
+
args: [--fix]
|
|
58
|
+
files: ^.*\.py$
|
|
59
|
+
- id: ruff-format
|
|
60
|
+
files: ^.*\.py$
|
|
61
|
+
|
|
62
|
+
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
63
|
+
rev: v17.0.6
|
|
64
|
+
hooks:
|
|
65
|
+
- id: clang-format
|
|
66
|
+
files: ^(src|include)/.*\.(c|cc|cpp|cxx|h|hh|hpp|hxx)$
|
|
67
|
+
|
|
68
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
69
|
+
rev: v1.13.0
|
|
70
|
+
hooks:
|
|
71
|
+
- id: mypy
|
|
72
|
+
files: ^python/bngsim/.*\.py$
|
|
73
|
+
args: [--ignore-missing-imports, --follow-imports=silent]
|
|
74
|
+
additional_dependencies: [numpy]
|
|
75
|
+
|
|
76
|
+
- repo: local
|
|
77
|
+
hooks:
|
|
78
|
+
- id: pytest
|
|
79
|
+
name: pytest (bngsim)
|
|
80
|
+
entry: bash -c '.venv/bin/pytest -q python/tests'
|
|
81
|
+
language: system
|
|
82
|
+
pass_filenames: false
|
|
83
|
+
files: ^.
|
|
84
|
+
stages: [pre-push]
|
|
85
|
+
|
|
86
|
+
# ─── Manual-stage local-CI hooks ─────────────────────────────────
|
|
87
|
+
# The wheel matrix is validated locally on each target platform.
|
|
88
|
+
# See scripts/LOCAL_CI.md. These hooks do NOT run on commit or
|
|
89
|
+
# push — invoke explicitly:
|
|
90
|
+
#
|
|
91
|
+
# pre-commit run --hook-stage manual local-ci-wheel --all-files
|
|
92
|
+
# pre-commit run --hook-stage manual local-ci-matrix --all-files
|
|
93
|
+
# pre-commit run --hook-stage manual local-ci-linux --all-files
|
|
94
|
+
- id: local-ci-wheel
|
|
95
|
+
name: local CI — wheel build + smoke (uv, current Python)
|
|
96
|
+
entry: uv run python scripts/local_ci.py wheel
|
|
97
|
+
language: system
|
|
98
|
+
pass_filenames: false
|
|
99
|
+
stages: [manual]
|
|
100
|
+
- id: local-ci-matrix
|
|
101
|
+
name: local CI — wheel matrix cp310-cp313 (uv, native arch)
|
|
102
|
+
entry: uv run python scripts/local_ci.py matrix
|
|
103
|
+
language: system
|
|
104
|
+
pass_filenames: false
|
|
105
|
+
stages: [manual]
|
|
106
|
+
- id: local-ci-linux
|
|
107
|
+
name: local CI — manylinux2014 wheel + smoke (Docker)
|
|
108
|
+
entry: bash scripts/local_ci_linux_docker.sh
|
|
109
|
+
language: system
|
|
110
|
+
pass_filenames: false
|
|
111
|
+
stages: [manual]
|
|
112
|
+
# Tripwire: verifies that third_party/nfsim/ matches what
|
|
113
|
+
# vendor + the patch series under scripts/nfsim_vendor_patches/
|
|
114
|
+
# would produce. Catches the silent-direct-edit class of regression.
|
|
115
|
+
# Requires /tmp/nfsim-vendor-candidate to exist at the vendor tip;
|
|
116
|
+
# build it via the recipe in scripts/NFSIM_VENDORING.md.
|
|
117
|
+
- id: local-ci-vendor-verify
|
|
118
|
+
name: local CI — verify vendored NFsim matches carry queue
|
|
119
|
+
entry: python3 scripts/vendor_nfsim.py --verify-clean
|
|
120
|
+
language: system
|
|
121
|
+
pass_filenames: false
|
|
122
|
+
stages: [manual]
|
|
123
|
+
- id: local-ci-vendor-verify-strict
|
|
124
|
+
name: local CI — vendor verify + patch-series reproducibility
|
|
125
|
+
entry: python3 scripts/vendor_nfsim.py --verify-clean --strict
|
|
126
|
+
language: system
|
|
127
|
+
pass_filenames: false
|
|
128
|
+
stages: [manual]
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Read the Docs build configuration.
|
|
2
|
+
# https://docs.readthedocs.io/en/stable/config-file/v2.html
|
|
3
|
+
#
|
|
4
|
+
# This file assumes `bngsim/` is the repository root (the public-release
|
|
5
|
+
# layout). If instead the docs are built from a repo where bngsim lives in a
|
|
6
|
+
# subdirectory, move this file to that repo's root and prefix the paths below
|
|
7
|
+
# with `bngsim/` (e.g. `sphinx.configuration: bngsim/docs/conf.py`).
|
|
8
|
+
version: 2
|
|
9
|
+
|
|
10
|
+
build:
|
|
11
|
+
os: ubuntu-24.04
|
|
12
|
+
tools:
|
|
13
|
+
python: "3.12"
|
|
14
|
+
# bngsim is a compiled C++/pybind11 extension. autodoc imports the package,
|
|
15
|
+
# so the extension is built here. SUNDIALS is fetched+compiled by CMake.
|
|
16
|
+
apt_packages:
|
|
17
|
+
- cmake
|
|
18
|
+
- ninja-build
|
|
19
|
+
|
|
20
|
+
sphinx:
|
|
21
|
+
configuration: docs/conf.py
|
|
22
|
+
|
|
23
|
+
python:
|
|
24
|
+
install:
|
|
25
|
+
- requirements: docs/requirements.txt
|
|
26
|
+
# Build+install bngsim so autodoc reads real signatures/docstrings.
|
|
27
|
+
# If the compile ever exceeds the RTD build limit, drop this entry: conf.py
|
|
28
|
+
# falls back to mocking `bngsim._bngsim_core`, and Sphinx documents the
|
|
29
|
+
# pure-Python wrappers without compiling the kernel.
|
|
30
|
+
- method: pip
|
|
31
|
+
path: .
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
# Acknowledgments
|
|
2
|
+
|
|
3
|
+
BNGsim was developed and validated using a large body of excellent
|
|
4
|
+
open-source software from the systems-biology and scientific-Python
|
|
5
|
+
communities. Most of these tools are **not** redistributed with BNGsim. They
|
|
6
|
+
were used as reference implementations, parity oracles, library dependencies,
|
|
7
|
+
data corpora, or standards. We
|
|
8
|
+
gratefully acknowledge their authors and cite their work below.
|
|
9
|
+
|
|
10
|
+
> Third-party software and data that BNGsim redistributes (vendored code
|
|
11
|
+
> and model/test-data corpora, with their license terms) are listed separately in
|
|
12
|
+
> [`NOTICE`](NOTICE).
|
|
13
|
+
|
|
14
|
+
## Reference simulators and cross-validation oracles
|
|
15
|
+
|
|
16
|
+
BNGsim's numerical results were cross-validated against these simulation engines:
|
|
17
|
+
|
|
18
|
+
- **libRoadRunner** — the primary ODE and SSA parity oracle.
|
|
19
|
+
- Somogyi ET, Bouteiller J-M, Glazier JA, König M, Medley JK, Swat MH,
|
|
20
|
+
Sauro HM. libRoadRunner: a high performance SBML simulation and analysis
|
|
21
|
+
library. *Bioinformatics.* 2015;31(20):3315–3321.
|
|
22
|
+
doi:10.1093/bioinformatics/btv363
|
|
23
|
+
- Welsh C, Xu J, Smith L, König M, Choi K, Sauro HM. libRoadRunner 2.0: a
|
|
24
|
+
high-performance SBML simulation and analysis library. *Bioinformatics.*
|
|
25
|
+
2023;39(1):btac770. doi:10.1093/bioinformatics/btac770
|
|
26
|
+
- **AMICI** — the reference for BNGsim's forward-sensitivity and gradient work.
|
|
27
|
+
- Fröhlich F, Weindl D, Schälte Y, Pathirana D, Paszkowski Ł, Lines GT,
|
|
28
|
+
Stapor P, Hasenauer J. AMICI: high-performance sensitivity analysis for
|
|
29
|
+
large ordinary differential equation models. *Bioinformatics.*
|
|
30
|
+
2021;37(20):3676–3677. doi:10.1093/bioinformatics/btab227
|
|
31
|
+
- **COPASI** — an independent third oracle (variable-volume, rate-rule, and
|
|
32
|
+
stochastic cross-checks).
|
|
33
|
+
- Hoops S, Sahle S, Gauges R, Lee C, Pahle J, Simus N, Singhal M, Xu L,
|
|
34
|
+
Mendes P, Kummer U. COPASI—a COmplex PAthway SImulator. *Bioinformatics.*
|
|
35
|
+
2006;22(24):3067–3074. doi:10.1093/bioinformatics/btl485
|
|
36
|
+
- **BioNetGen** (`BNG2.pl`, `run_network`, Network3) — used to generate reaction
|
|
37
|
+
networks and reference trajectories, and as a rule-based ODE/SSA oracle.
|
|
38
|
+
- Harris LA, Hogg JS, Tapia J-J, Sekar JAP, Gupta S, Korsunsky I, Arora A,
|
|
39
|
+
Barua D, Sheehan RP, Faeder JR. BioNetGen 2.2: advances in rule-based
|
|
40
|
+
modeling. *Bioinformatics.* 2016;32(21):3366–3368.
|
|
41
|
+
doi:10.1093/bioinformatics/btw469
|
|
42
|
+
- Blinov ML, Faeder JR, Goldstein B, Hlavacek WS. BioNetGen: software for
|
|
43
|
+
rule-based modeling of signal transduction based on the interactions of
|
|
44
|
+
molecular domains. *Bioinformatics.* 2004;20(17):3289–3291.
|
|
45
|
+
doi:10.1093/bioinformatics/bth378
|
|
46
|
+
- **NFsim** — the network-free stochastic oracle (also vendored into BNGsim; see
|
|
47
|
+
[`NOTICE`](NOTICE)).
|
|
48
|
+
- Sneddon MW, Faeder JR, Emonet T. Efficient modeling, simulation and
|
|
49
|
+
coarse-graining of biological complexity with NFsim. *Nat Methods.*
|
|
50
|
+
2011;8(2):177–183. doi:10.1038/nmeth.1546
|
|
51
|
+
|
|
52
|
+
## Vendored simulation engines
|
|
53
|
+
|
|
54
|
+
BNGsim embeds these rule-based engines (license terms in [`NOTICE`](NOTICE)):
|
|
55
|
+
|
|
56
|
+
- **NFsim** — network-free simulation (cited above).
|
|
57
|
+
- **RuleMonkey** — the canonical rule/species-graph library and stochastic
|
|
58
|
+
simulator. BNGsim vendors the current C++ version; the original simulator is
|
|
59
|
+
described in:
|
|
60
|
+
- Colvin J, Monine MI, Gutenkunst RN, Hlavacek WS, Von Hoff DD, Posner RG.
|
|
61
|
+
RuleMonkey: software for stochastic simulation of rule-based models.
|
|
62
|
+
*BMC Bioinformatics.* 2010;11:404. doi:10.1186/1471-2105-11-404
|
|
63
|
+
|
|
64
|
+
## Model-description standards and formats
|
|
65
|
+
|
|
66
|
+
BNGsim reads and/or writes these community standards:
|
|
67
|
+
|
|
68
|
+
- **SBML** (Systems Biology Markup Language) — core model interchange format.
|
|
69
|
+
- Hucka M, Finney A, Sauro HM, Bolouri H, Doyle JC, Kitano H, et al. The
|
|
70
|
+
systems biology markup language (SBML): a medium for representation and
|
|
71
|
+
exchange of biochemical network models. *Bioinformatics.*
|
|
72
|
+
2003;19(4):524–531. doi:10.1093/bioinformatics/btg015
|
|
73
|
+
- Keating SM, Waltemath D, König M, et al. SBML Level 3: an extensible format
|
|
74
|
+
for the exchange and reuse of biological models. *Mol Syst Biol.*
|
|
75
|
+
2020;16(8):e9110. doi:10.15252/msb.20199110
|
|
76
|
+
- **SED-ML** (Simulation Experiment Description Markup Language) — read/write of
|
|
77
|
+
simulation descriptions; also the format of the SED-ML protocol files BNGsim
|
|
78
|
+
consumes from BioModels (via the `sys-bio/temp-biomodels` mirror).
|
|
79
|
+
- Waltemath D, Adams R, Bergmann FT, Hucka M, Kolpakov F, Miller AK,
|
|
80
|
+
Moraru II, Nickerson D, Sahle S, Snoep JL, Le Novère N. Reproducible
|
|
81
|
+
computational biology experiments with SED-ML — the Simulation Experiment
|
|
82
|
+
Description Markup Language. *BMC Syst Biol.* 2011;5:198.
|
|
83
|
+
doi:10.1186/1752-0509-5-198
|
|
84
|
+
- **COMBINE archive / OMEX** — pack/unpack of SBML + SED-ML + manifest.
|
|
85
|
+
- Bergmann FT, Adams R, Moodie S, Cooper J, Glont M, Golebiewski M, Hucka M,
|
|
86
|
+
Laibe C, Miller AK, Nickerson DP, Olivier BG, Rodriguez N, Sauro HM,
|
|
87
|
+
Scharm M, Soiland-Reyes S, Waltemath D, Yvon F, Le Novère N. COMBINE
|
|
88
|
+
archive and OMEX format: one file to share all information to reproduce a
|
|
89
|
+
modeling project. *BMC Bioinformatics.* 2014;15:369.
|
|
90
|
+
doi:10.1186/s12859-014-0369-z
|
|
91
|
+
- **Antimony** — read/write via the Antimony library.
|
|
92
|
+
- Smith LP, Bergmann FT, Chandran D, Sauro HM. Antimony: a modular model
|
|
93
|
+
definition language. *Bioinformatics.* 2009;25(18):2452–2454.
|
|
94
|
+
doi:10.1093/bioinformatics/btp401
|
|
95
|
+
- **BNGL** and the BNG `.net` format (BioNetGen, cited above), **Content
|
|
96
|
+
MathML**, and **KiSAO** (the Kinetic Simulation Algorithm Ontology, used to
|
|
97
|
+
tag SED-ML algorithms) are also handled.
|
|
98
|
+
|
|
99
|
+
## Numerical and infrastructure libraries
|
|
100
|
+
|
|
101
|
+
- **SUNDIALS** — the CVODES and KINSOL solvers underpin BNGsim's ODE
|
|
102
|
+
integration, forward sensitivities, and steady-state solves (bundled in
|
|
103
|
+
binary wheels).
|
|
104
|
+
- Hindmarsh AC, Brown PN, Grant KE, Lee SL, Serban R, Shumaker DE,
|
|
105
|
+
Woodward CS. SUNDIALS: Suite of nonlinear and differential/algebraic
|
|
106
|
+
equation solvers. *ACM Trans Math Softw.* 2005;31(3):363–396.
|
|
107
|
+
doi:10.1145/1089014.1089020
|
|
108
|
+
- **SuiteSparse / KLU** — sparse direct solver for the sparse-Jacobian path.
|
|
109
|
+
- Davis TA, Palamadai Natarajan E. Algorithm 907: KLU, a direct sparse solver
|
|
110
|
+
for circuit simulation problems. *ACM Trans Math Softw.*
|
|
111
|
+
2010;37(3):Article 36. doi:10.1145/1824801.1824814
|
|
112
|
+
- **LAPACK** — dense linear algebra used by the numerical backends.
|
|
113
|
+
- Anderson E, Bai Z, Bischof C, et al. LAPACK Users' Guide. 3rd ed.
|
|
114
|
+
Philadelphia: SIAM; 1999. doi:10.1137/1.9780898719604
|
|
115
|
+
- **libSBML** — the SBML read/write API.
|
|
116
|
+
- Bornstein BJ, Keating SM, Jouraku A, Hucka M. LibSBML: an API library for
|
|
117
|
+
SBML. *Bioinformatics.* 2008;24(6):880–881.
|
|
118
|
+
doi:10.1093/bioinformatics/btn051
|
|
119
|
+
- **NumPy** — array programming throughout BNGsim.
|
|
120
|
+
- Harris CR, Millman KJ, van der Walt SJ, et al. Array programming with NumPy.
|
|
121
|
+
*Nature.* 2020;585(7825):357–362. doi:10.1038/s41586-020-2649-2
|
|
122
|
+
- **SciPy** — scientific-computing routines (used in the test, benchmark, and
|
|
123
|
+
parity suites).
|
|
124
|
+
- Virtanen P, Gommers R, Oliphant TE, et al. SciPy 1.0: fundamental algorithms
|
|
125
|
+
for scientific computing in Python. *Nat Methods.* 2020;17(3):261–272.
|
|
126
|
+
doi:10.1038/s41592-019-0686-2
|
|
127
|
+
- **SymPy** — symbolic differentiation for code-generated sensitivities and
|
|
128
|
+
Jacobians.
|
|
129
|
+
- Meurer A, Smith CP, Paprocki M, et al. SymPy: symbolic computing in Python.
|
|
130
|
+
*PeerJ Comput Sci.* 2017;3:e103. doi:10.7717/peerj-cs.103
|
|
131
|
+
- **pandas** — the `Result.to_dataframe()` export.
|
|
132
|
+
- McKinney W. Data structures for statistical computing in Python. In:
|
|
133
|
+
*Proceedings of the 9th Python in Science Conference (SciPy).* 2010:56–61.
|
|
134
|
+
doi:10.25080/Majora-92bf1922-00a
|
|
135
|
+
- **ExprTk** (Arash Partow; https://github.com/ArashPartow/exprtk) — the
|
|
136
|
+
vendored C++ math-expression evaluator; **MIR** (Vladimir Makarov;
|
|
137
|
+
https://github.com/vnmakarov/mir) — the optional micro-JIT backend; and
|
|
138
|
+
**pybind11** (Wenzel Jakob, Jason Rhinelander, Dean Moldovan;
|
|
139
|
+
https://github.com/pybind/pybind11) — the C++/Python binding layer. These are
|
|
140
|
+
software projects without an associated paper.
|
|
141
|
+
|
|
142
|
+
## Optional feature backends and interoperability
|
|
143
|
+
|
|
144
|
+
- **JAX** — the differentiable RHS/Jacobian bridge.
|
|
145
|
+
- Bradbury J, Frostig R, Hawkins P, Johnson MJ, Katariya Y, Leary C,
|
|
146
|
+
Maclaurin D, Necula G, Paszke A, VanderPlas J, Wanderman-Milne S, Zhang Q.
|
|
147
|
+
JAX: composable transformations of Python+NumPy programs. 2018.
|
|
148
|
+
http://github.com/jax-ml/jax
|
|
149
|
+
- **Diffrax** — the JAX-based differentiable ODE solver backend.
|
|
150
|
+
- Kidger P. On Neural Differential Equations. PhD thesis, University of
|
|
151
|
+
Oxford; 2021. arXiv:2202.02435
|
|
152
|
+
- **xarray** — labeled N-D arrays for the `Result.to_xarray()` / netCDF export.
|
|
153
|
+
- Hoyer S, Hamman J. xarray: N-D labeled Arrays and Datasets in Python.
|
|
154
|
+
*J Open Res Softw.* 2017;5(1):10. doi:10.5334/jors.148
|
|
155
|
+
- **h5py** — HDF5 archival of results (Andrew Collette and contributors;
|
|
156
|
+
https://www.h5py.org).
|
|
157
|
+
- **Vivarium** — the `bngsim.vivarium` process wrapper for multiscale modeling.
|
|
158
|
+
- Agmon E, Spangler RK, Skalnik CJ, Poole W, Peirce SM, Morrison JH,
|
|
159
|
+
Covert MW. Vivarium: an interface and engine for integrative multiscale
|
|
160
|
+
modeling in computational biology. *Bioinformatics.* 2022;38(7):1972–1979.
|
|
161
|
+
doi:10.1093/bioinformatics/btac049
|
|
162
|
+
- **PyBNF (PyBioNetFit)** — the parameter-fitting front end that drives BNGsim,
|
|
163
|
+
and the source of several example models.
|
|
164
|
+
- Mitra ED, Suderman R, Colvin J, Ionkov A, Hu A, Sauro HM, Posner RG,
|
|
165
|
+
Hlavacek WS. PyBioNetFit and the Biological Property Specification Language.
|
|
166
|
+
*iScience.* 2019;19:1012–1036. doi:10.1016/j.isci.2019.08.045
|
|
167
|
+
|
|
168
|
+
## Test suites and model corpora
|
|
169
|
+
|
|
170
|
+
BNGsim's correctness is checked against, and its benchmarks draw from, these
|
|
171
|
+
community corpora (vendored corpora and their licenses are in [`NOTICE`](NOTICE)):
|
|
172
|
+
|
|
173
|
+
- **SBML Semantic Test Suite** — the SBML Team's conformance suite
|
|
174
|
+
(https://github.com/sbmlteam/sbml-test-suite).
|
|
175
|
+
- **DSMTS (Discrete Stochastic Models Test Suite)** — vendored for hermetic
|
|
176
|
+
stochastic testing.
|
|
177
|
+
- Evans TW, Gillespie CS, Wilkinson DJ. The SBML discrete stochastic models
|
|
178
|
+
test suite. *Bioinformatics.* 2008;24(2):285–286.
|
|
179
|
+
doi:10.1093/bioinformatics/btm566
|
|
180
|
+
- **BioModels Database** — the curated ODE model corpus (with its SED-ML
|
|
181
|
+
protocols) used for ODE benchmarking.
|
|
182
|
+
- Malik-Sheriff RS, Glont M, Nguyen TVN, et al. BioModels—15 years of sharing
|
|
183
|
+
computational models in life science. *Nucleic Acids Res.*
|
|
184
|
+
2020;48(D1):D407–D415. doi:10.1093/nar/gkz1055
|
|
185
|
+
- **RuleHub** (RuleWorld; https://github.com/RuleWorld/RuleHub), **BNGL-Models**
|
|
186
|
+
(https://github.com/wshlavacek/BNGL-Models), and the **BioNetGen model
|
|
187
|
+
distribution** (Models2) — vendored BNGL model corpora (see [`NOTICE`](NOTICE)).
|
|
188
|
+
|
|
189
|
+
## Algorithms
|
|
190
|
+
|
|
191
|
+
- **Gillespie's Stochastic Simulation Algorithm (direct method)** — the basis of
|
|
192
|
+
BNGsim's exact SSA.
|
|
193
|
+
- Gillespie DT. Exact stochastic simulation of coupled chemical reactions.
|
|
194
|
+
*J Phys Chem.* 1977;81(25):2340–2361. doi:10.1021/j100540a008
|
|
195
|
+
- **Extrande** — a thinning sampler used as an independent test oracle for the
|
|
196
|
+
rate-rule-under-SSA hybrid path.
|
|
197
|
+
- Voliotis M, Thomas P, Grima R, Bowsher CG. Stochastic simulation of
|
|
198
|
+
biomolecular networks in dynamic environments. *PLoS Comput Biol.*
|
|
199
|
+
2016;12(6):e1004923. doi:10.1371/journal.pcbi.1004923
|
|
200
|
+
|
|
201
|
+
## Build, test, and documentation tooling
|
|
202
|
+
|
|
203
|
+
BNGsim is built with **scikit-build-core**, **CMake**, **Ninja**, and
|
|
204
|
+
**pybind11** (stubs via **pybind11-stubgen**); tested with **pytest** and linted
|
|
205
|
+
with **ruff**, **mypy**, and **clang-format**; documented with **Sphinx**,
|
|
206
|
+
**MyST-Parser**, and **Furo**. Benchmark and parity tooling additionally uses
|
|
207
|
+
**matplotlib** and **bioservices**. We thank the maintainers of these projects.
|