Skip to content

Commit 18ed51b

Browse files
committed
oups - remove prints
1 parent c40cfdd commit 18ed51b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/probeinterface/neuropixels_tools.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,6 @@ def read_spikeglx(file: str | Path) -> Probe:
813813
# This creates the complete probe geometry (e.g., 960 contacts for NP1.0)
814814
# based on manufacturer specifications
815815
full_probe = build_neuropixels_probe(probe_part_number=imDatPrb_pn)
816-
print(f"{full_probe.get_contact_count()=}")
817816

818817
# ===== 3. Parse IMRO table to extract recorded electrodes and acquisition settings =====
819818
# IMRO = Imec ReadOut (the configuration table format from IMEC manufacturer)
@@ -826,7 +825,6 @@ def read_spikeglx(file: str | Path) -> Probe:
826825
active_contact_ids = _get_imro_active_contact_ids(imro_per_channel)
827826
contact_id_to_index = {contact_id: idx for idx, contact_id in enumerate(full_probe.contact_ids)}
828827
selected_contact_indices = np.array([contact_id_to_index[contact_id] for contact_id in active_contact_ids])
829-
print(f"{selected_contact_indices=}")
830828
probe = full_probe.get_slice(selected_contact_indices)
831829

832830
# ===== 5. Store IMRO properties (acquisition settings) as annotations =====

0 commit comments

Comments
 (0)