Chris Markiewicz
Chris Markiewicz
I actually think the detailed download and installation page is useful as it goes into alternatives to pip, such as NeuroDebian, and mentions how to get pip and that we...
This would need to be done from the schema. @astewartau has started on building a configuration from the schema in https://github.com/bids-standard/pybids/pull/1163. Building the path patterns from the file rules would...
> One general question: does the validator currently look into the content of data files to validate that their content is sensible? It validates tsv contents and NIfTI headers. Validating...
Yes, checking NIfTI shapes is doable: https://github.com/bids-standard/bids-specification/blob/b9a66732e67de7bc51402b7ed0a73a1e58ce85d6/src/schema/rules/checks/func.yaml#L57-L67 You'll want to use `make_sidecar_table` if it corresponds to a sidecar schema rule, but for describing deeper models, you'll probably want `make_metadata_table`, e.g.,...
Could you provide a [minimal reproducible example](https://en.wikipedia.org/wiki/Minimal_reproducible_example)?
`AssertionError: Type is not a CiftiBrainModel` `Cifti2BrainModel` is a faithful rendering of the XML node, while the `BrainModelAxis` is the Pythonic interface. Use one or the other, not both. https://nipy.org/nibabel/reference/nibabel.cifti2.html#module-nibabel.cifti2.cifti2_axes
I believe the question is whether we want to prospectively declare that no future entity may come after desc. Personally, I think it should remain the last, but I'm not...
I would guess that the error is when looking at `sub-MPN0000018_ses-MPN1Scan1_acq-multib38_dir-AP_part-phase_dwi.nii.gz`, and there are then two `.bval` files that each match a subset of entities. Please confirm that this is...
Global variables that change the behavior of the library are very dangerous. The package that sets them is not necessarily the only package that uses the API. Perhaps we can...