Skip to content
Open
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
3 changes: 2 additions & 1 deletion bluepyemodel/emodel_pipeline/emodel_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import warnings

from bluepyemodel.access_point import get_access_point
from bluepyemodel.access_point.forge_access_point import DEFAULT_NEXUS_ENDPOINT
from bluepyemodel.efeatures_extraction.efeatures_extraction import extract_save_features_protocols
from bluepyemodel.emodel_pipeline import plotting
from bluepyemodel.export_emodel.export_emodel import export_emodels_sonata
Expand All @@ -35,6 +34,8 @@

logger = logging.getLogger()

DEFAULT_NEXUS_ENDPOINT = "https://openbluebrain.com/api/nexus/v1"


class EModel_pipeline:
"""The EModel_pipeline class is there to allow the execution of the steps
Expand Down
2 changes: 1 addition & 1 deletion bluepyemodel/tasks/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import luigi

from bluepyemodel.access_point.forge_access_point import DEFAULT_NEXUS_ENDPOINT
DEFAULT_NEXUS_ENDPOINT = "https://openbluebrain.com/api/nexus/v1"


class EmodelAPIConfig(luigi.Config):
Expand Down
Loading