From 55252e7779ddbc1d1b4c49198c541d5058ce3279 Mon Sep 17 00:00:00 2001 From: Frithjof Gressmann Date: Mon, 25 Mar 2024 00:43:18 -0500 Subject: [PATCH] Add Config.clamp attribute --- src/miv_simulator/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/miv_simulator/config.py b/src/miv_simulator/config.py index b0be78b..d927bad 100644 --- a/src/miv_simulator/config.py +++ b/src/miv_simulator/config.py @@ -380,3 +380,7 @@ def projections(self) -> SynapticProjections: @property def cell_types(self) -> CellTypes: return self.get("Cell Types") + + @property + def clamp(self) -> Optional[Dict]: + return self.get("Network Clamp", None)