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 1f18f9a commit c6bed8cCopy full SHA for c6bed8c
src/schema/rules/checks/func.yaml
@@ -40,7 +40,9 @@ RepetitionTimeMismatch:
40
- type(sidecar.RepetitionTime) != "null"
41
- type(nifti_header) != "null"
42
checks:
43
- - sidecar.RepetitionTime == nifti_header.pixdim[4]
+ # Implement millisecond rounding via AND
44
+ - sidecar.RepetitionTime - nifti_header.pixdim[4] < 0.001
45
+ - sidecar.RepetitionTime - nifti_header.pixdim[4] > -0.001
46
47
# 54
48
BoldNot4d:
0 commit comments