def test_read_events_curry_are_same_as_bdf(fname): """Test events from curry annotations recovers the right events.""" EVENT_ID = {str(ii): ii for ii in range(5)} REF_EVENTS = find_events(read_raw_bdf(bdf_file, preload=True)) raw = read_raw_curry(fname) events, _ = events_from_annotations(raw, event_id=EVENT_ID) assert_allclose(events, REF_EVENTS)
def bdf_curry_ref(): """Return a view of the reference bdf used to create the curry files.""" raw = read_raw_bdf(bdf_file, preload=True).drop_channels(['Status']) return raw