You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/run.py", line 274, in <module>
t1_spacing = layout.get_metadata(t1ws[0])["DwellTime"]
KeyError: 'DwellTime'
Exited with code exit status 1
Do you by any chance have an idea what this could be?
I also saw a couple of open pull requests. Would anyone of you be able to help us merge these pull requests and get this bidsapp updated and nicely working?
Thank you
Steffen
The text was updated successfully, but these errors were encountered:
Would changing run.py L274 to t1_spacing = layout.get_metadata(t1ws[0]).get("DwellTime", 0) get most users past the error appropriately? If I understand the comments from #65 correctly, setting 0 as the default here in the get call would skip distortion correction. t1_spacing = layout.get_metadata(t1ws[0]).get("DwellTime", None) might be the better change, if the following comment is the preferred way forward.
@rhancockn Add error handling around t1_spacing = layout.get_metadata(t1ws[0])["DwellTime"] (and maybe t2_spacing = layout.get_metadata(t2ws[0])["DwellTime"]). If distortion correction is to be done, throw a descriptive error message about why this field is required. Otherwise, set t1_spacing = 'NONE'.
so the approach for now was at least make sure that when people pull the latest image from docker hub that it "runs properly" and hence trying to just make sure that original tests pass which apparently is not the case.
I can edit the data on OSF but just want to be sure that this is the right thing to do: I would have assumed that the latest image should work on the dataset that was present when it was first built.
Dear @rhancockn, @neurosutton, @bpinsard
@Remi-Gau and I are trying to get the HCPPipelines bids-app updated and tested again :)
We are currently running into the problem that the test data is not working, that's what we tried:
Unfortunately this results in:
Do you by any chance have an idea what this could be?
I also saw a couple of open pull requests. Would anyone of you be able to help us merge these pull requests and get this bidsapp updated and nicely working?
Thank you
Steffen
The text was updated successfully, but these errors were encountered: