BlueBrain / morph-tool

https://morph-tool.readthedocs.org/
GNU Lesser General Public License v3.0
8 stars 7 forks source link

Make MorphDB.df hashable #53

Closed wizmer closed 3 years ago

wizmer commented 3 years ago

Context

MorphDB.df is currently not hashable because of the column axon_input which is a list. And lists are not hashable.

Resolution

Change axon_input column to a tuple to make the dataframe hashable

Fixes #52