dmalt

Results 16 comments of dmalt

Related suggestion: it would be helpful to have `-y` option to `openneuro upload` which would suppress the "Upload the data?" question to at least make possible the automation of the...

Hi, @nellh. Unfortunately the issue persists. Please let me know if you need any further information.

Not on my side. This might have something to do with my internet provider. I'll try another network and get back to you.

I've tried uploading via mobile data on a small batch and it seems to be working fine. The batch was not big enough to be 100% sure. Any suggestions why...

Couldn't agree more. Debugging this was a pain. Fetching splits as if there was a single file would be really useful though

@agramfort this is what I mean ```python from pathlib import Path from mne_bids import BIDSPath root_path = Path("bids_root") subj_path = root_path / "sub-01" / "meg" subj_path.mkdir(exist_ok=True, parents=True) bp_template = BIDSPath(...

No, I understand that it's possible to pick up splits of course. It's just that I had a hard time figuring out how to write the code properly for that...

And I do care about setting both `extension` and `suffix` because I want to use the same `BIDSPath` for both reading and writing data. It feels logical and readable and...

You mean with `write_raw_bids`? Yes, looking at the docstring I think this might be an option. I need to test it out, thanks! I wrote my data with MNE Python....