Skip to content
Discussion options

You must be logged in to vote

@mahironoda There are two approaches:

  1. Ask the nice people over at NeuroConv if they can add this format to their Icephys suite ('New Issue' -> 'Request Format Support') - this will probably involve adding NEO support as well

  2. Put together a PyNWB/MatNWB conversion script and parse it yourself

Here is a small starter script I put together to extract the main file content (per segment)
import pathlib

import numpy

# Lab Chart 7 text (mixed TSV) format
file_path = pathlib.Path(".../03_31_2025.txt")
content = lab_chart_7_file_path.read_text()
lines = content.splitlines()

segment_counter = -1
segment_string = ""
parsed_lines_per_segment: dict[str, list[list[float, float]]] = dict()
for i…

Replies: 2 comments 6 replies

Comment options

You must be logged in to vote
2 replies
@bendichter
Comment options

@mahironoda
Comment options

Comment options

You must be logged in to vote
4 replies
@kabilar
Comment options

@CodyCBakerPhD
Comment options

Answer selected by mahironoda
@mahironoda
Comment options

@CodyCBakerPhD
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
5 participants