Skip to content

Commit

Permalink
remove SpikeGLXLFP
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Oct 3, 2023
1 parent 81b6f26 commit 79c88b9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyflask/manageNeuroconv/manage_neuroconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,11 @@ def get_all_interface_info() -> dict:
"""Format an information structure to be used for selecting interfaces based on modality and technique."""
from neuroconv.datainterfaces import interface_list

# Hard coded for now - eventual goal will be to import this from NeuroConv
interfaces_to_load = {
interface.__name__.replace("Interface", ""): interface for interface in interface_list
} # dict(SpikeGLX=SpikeGLXRecordingInterface, Phy=PhySortingInterface)
exclude_interfaces_from_selection = ["SpikeGLXLFP"] # Should have 'interface' stripped from name

interfaces_to_load = {interface.__name__.replace("Interface", ""): interface for interface in interface_list}
for excluded_interface in exclude_interfaces_from_selection:
interfaces_to_load.pop(excluded_interface)

return {
interface.__name__: {
Expand Down

0 comments on commit 79c88b9

Please sign in to comment.