We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7deb120 commit 559cfe1Copy full SHA for 559cfe1
ibllib/dsp/voltage.py
@@ -481,8 +481,8 @@ def my_function(i_chunk, n_chunk):
481
rms_data = np.frombuffer(rms_data, dtype=np.float32)
482
assert(rms_data.shape[0] == time_data.shape[0] * ncv)
483
rms_data = rms_data.reshape(time_data.shape[0], ncv)
484
- np.save(Path(sr_file).parent.joinpath('_iblqc_ephysTimeRmsAP.rms.npy'), rms_data)
485
- np.save(Path(sr_file).parent.joinpath('_iblqc_ephysTimeRmsAP.timestamps.npy'), time_data)
+ np.save(output_file.parent.joinpath('_iblqc_ephysTimeRmsAP.rms.npy'), rms_data)
+ np.save(output_file.parent.joinpath('_iblqc_ephysTimeRmsAP.timestamps.npy'), time_data)
486
487
488
def rcoeff(x, y):
0 commit comments