Skip to content

Commit

Permalink
Add keyword for deep insertions
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhardcastle committed Sep 28, 2024
1 parent b6e24f9 commit af2f19a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/npc_sessions/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ def keywords(self) -> list[str]:
self.keywords.append("video")
if self.is_ephys:
self.keywords.append("ephys")
if self.is_surface_channels:
self.keywords.append("deep_insertions")
if self.is_sorted:
self.keywords.append("units")
if self.is_annotated:
Expand Down Expand Up @@ -659,8 +661,6 @@ def keywords(self) -> list[str]:
self.keywords.append(f"experiment_day_{self.info.experiment_day}")
if self.info and self.info.behavior_day is not None:
self.keywords.append(f"behavior_day_{self.info.behavior_day}")
# TODO
# muscimol, perturbation, context_naive
return self._keywords

@keywords.setter
Expand Down

0 comments on commit af2f19a

Please sign in to comment.