Skip to content
Merged
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
4 changes: 3 additions & 1 deletion bluepyemodel/emodel_pipeline/emodel_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def __init__(
forge_ontology_path=None,
nexus_organisation=None,
nexus_project=None,
access_token=None,
):
"""Initializes the EModel_pipeline.

Expand Down Expand Up @@ -122,7 +123,7 @@ def __init__(
of the e-model building pipeline be based on multiprocessing.
data_access_point (str): name of the access_point used to access the data,
can be "nexus" or "local".

access_token (str): access token used to connect to Nexus.
"""

# pylint: disable=too-many-arguments
Expand Down Expand Up @@ -165,6 +166,7 @@ def __init__(
access_point=data_access_point,
forge_path=forge_path,
forge_ontology_path=forge_ontology_path,
access_token=access_token,
)

def configure_model(
Expand Down