Skip to content

Commit

Permalink
Merge pull request #143 from BlueBrain/emodel-filtering
Browse files Browse the repository at this point in the history
do not take into account allen_notation when filtering the emodels
  • Loading branch information
AurelienJaquier authored May 31, 2024
2 parents bc31f50 + ed4470b commit ff8768b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluepyemodel/access_point/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ def get_emodels(self, emodels=None):
for m in models:
model_metadata = m.emodel_metadata.as_dict()
for f, v in api_metadata.items():
if f in model_metadata and v != model_metadata[f]:
if f in model_metadata and v != model_metadata[f] and f != "allen_notation":
break
else:
filtered_models.append(m)
Expand Down

0 comments on commit ff8768b

Please sign in to comment.