Skip to content

Commit

Permalink
FIX: Thanks, error
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Feb 23, 2024
1 parent f09b68b commit 9a0c04c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mne_bids_pipeline/steps/preprocessing/_08a_apply_ica.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def apply_ica_raw(
raw_fname = in_files.pop(in_key)
assert len(in_files) == 0, in_files
out_files = dict()
out_files[in_key] = raw_fname.copy().update(processing="clean")
out_files[in_key] = raw_fname.copy().update(processing="clean", split=None)
msg = f"Writing {out_files[in_key].basename} …"
logger.info(**gen_log_kwargs(message=msg))
raw = mne.io.read_raw_fif(raw_fname, preload=True)
Expand Down
2 changes: 1 addition & 1 deletion mne_bids_pipeline/steps/preprocessing/_08b_apply_ssp.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def apply_ssp_raw(
raw = mne.io.read_raw_fif(raw_fname)
raw.add_proj(projs)
out_files = dict()
out_files[in_key] = raw_fname.copy().update(processing="clean")
out_files[in_key] = raw_fname.copy().update(processing="clean", split=None)
msg = f"Writing {out_files[in_key].basename} …"
logger.info(**gen_log_kwargs(message=msg))
raw.save(out_files[in_key], overwrite=True, split_size=cfg._raw_split_size)
Expand Down

0 comments on commit 9a0c04c

Please sign in to comment.