Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions compose_api/api/routers/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
import zipfile
from pathlib import Path

from fastapi import APIRouter, BackgroundTasks, Depends, HTTPException, UploadFile
from starlette.responses import PlainTextResponse

from compose_api.btools.bsander.bsandr_utils.input_types import (
from bsedic.execution import execute_bsedic
from bsedic.utils.input_types import (
ContainerizationEngine,
ContainerizationTypes,
ProgramArguments,
)
from compose_api.btools.bsander.execution import execute_bsander
from fastapi import APIRouter, BackgroundTasks, Depends, HTTPException, UploadFile
from starlette.responses import PlainTextResponse

from compose_api.btools.sedml_compiler.sedml_representation_compiler import SimpleSedmlCompiler, ToolSuites
from compose_api.btools.sedml_processor import SimpleSedmlRepresentation
from compose_api.common.gateway.models import RouterConfig
Expand Down Expand Up @@ -101,7 +101,7 @@ async def analyze_simulation(uploaded_file: UploadFile) -> str:
uploaded_file_path = f"{tmp_dir}/{uploaded_file.filename}"
with open(uploaded_file_path, "wb") as fh:
fh.write(contents)
singularity_rep, experiment_dep = execute_bsander(
singularity_rep, experiment_dep = execute_bsedic(
ProgramArguments(
input_file_path=uploaded_file_path,
output_dir=tmp_dir,
Expand Down
Empty file.
Empty file.
34 changes: 0 additions & 34 deletions compose_api/btools/bsander/bsandr_utils/experiment_archive.py

This file was deleted.

70 changes: 0 additions & 70 deletions compose_api/btools/bsander/bsandr_utils/input_types.py

This file was deleted.

Empty file.
91 changes: 0 additions & 91 deletions compose_api/btools/bsander/execution.py

This file was deleted.

Empty file.
Empty file.

This file was deleted.

This file was deleted.

Empty file.

This file was deleted.

Loading