Skip to content

Commit

Permalink
Merge pull request #786 from MetaCell/feature/Netpyne-172
Browse files Browse the repository at this point in the history
netpyne-172 Add complex stimulation for population
  • Loading branch information
ddelpiano authored Jan 9, 2024
2 parents aca1517 + 502f6f6 commit d3f933c
Show file tree
Hide file tree
Showing 7 changed files with 737 additions and 14 deletions.
14 changes: 9 additions & 5 deletions netpyne_ui/netpyne_geppetto.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,11 +912,15 @@ def getAvailableCellModels(self):
cell_models.add(cm)
return list(cell_models)

def getAvailableCellTypes(self):
cell_types = set([])
for p in self.netParams.cellParams:
cell_types.add(p)
return list(cell_types)
def getAvailableCellModels(self):
return ["", "VecStim", "NetStim", "IntFire1"]

def getAvailableStimulationDistribution(self):
return ["normal", "uniform"]

def getAvailableStimulationPattern(self):
# self.netParams.popParams[name]['spikePattern'] = {}
return ["", "rhythmic", "evoked", "poisson", "gauss"]

def getAvailableSections(self):
sections = {}
Expand Down
Loading

0 comments on commit d3f933c

Please sign in to comment.