Skip to content

Commit

Permalink
Merge branch 'main' into gray-requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Oct 17, 2023
2 parents 80a3960 + 30419d9 commit af702b2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion pyflask/manageNeuroconv/manage_neuroconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,23 @@ 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

exclude_interfaces_from_selection = ["SpikeGLXLFP"] # Should have 'interface' stripped from name
exclude_interfaces_from_selection = [
# Deprecated
"SpikeGLXLFP",
# Aliased
"CEDRecording",
"OpenEphysBinaryRecording",
"OpenEphysLegacyRecording",
# Ignored
"AxonaPositionData",
"AxonaUnitRecording",
"CsvTimeIntervals",
"ExcelTimeIntervals",
"Hdf5Imaging",
"MaxOneRecording",
"OpenEphysSorting",
"SimaSegmentation",
] # 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:
Expand Down

0 comments on commit af702b2

Please sign in to comment.