Skip to content

Commit

Permalink
Use fewer models from web for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bgyori committed Apr 26, 2024
1 parent ef0898b commit d2fcbd9
Showing 1 changed file with 4 additions and 25 deletions.
29 changes: 4 additions & 25 deletions tests/test_sbml_qual.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,7 @@
from mira.sources.sbml.qual_api import template_model_from_sbml_qual_string
from mira.sources.biomodels import get_sbml_model

models = [
"Apoptosis",
"Coagulation-pathway",
"ER_Stress",
"ETC",
"E_protein",
"HMOX1_Pathway",
"IFN-lambda",
"Interferon1",
"JNK_pathway",
"Kynurenine_pathway",
"NLRP3_Activation",
"Nsp14",
"Nsp4_Nsp6",
"Nsp9_protein",
"Orf10_Cul2_pathway",
"Orf3a",
"PAMP_signaling",
"Pyrimidine_deprivation",
"RTC-and-transcription",
"Renin_angiotensin",
"TGFB_pathway",
"Virus_replication_cycle",
]
models = ["Apoptosis"]
BASE_URL = "https://git-r3lab.uni.lu/covid/models/-/raw/master/Executable%20Modules/SBML_qual_build/sbml"


Expand All @@ -42,7 +19,9 @@ def test_qual_models_from_example_repo():


def test_qual_models_from_biomodels():
model_ids = ["BIOMD0000000562", "BIOMD0000000592", "BIOMD0000000593"]
model_ids = ["BIOMD0000000562"]
# Full model list for reference
#model_ids = ["BIOMD0000000562", "BIOMD0000000592", "BIOMD0000000593"]
for model_id in model_ids:
model_text = get_sbml_model(model_id)
tm = template_model_from_sbml_qual_string(model_text)

0 comments on commit d2fcbd9

Please sign in to comment.