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 08bb7e3 commit ddebf3aCopy full SHA for ddebf3a
heudiconv/convert.py
@@ -875,7 +875,12 @@ def filter_partial_volumes(
875
filtered BIDS metadata
876
877
"""
878
- partial_volumes = [not metadata.get("RawImage", True) for metadata in bids_metas]
+ partial_volumes = [
879
+ not metadata.get("RawImage", True)
880
+ and metadata.get("SeriesNumber", 0) > 1000
881
+ and "syngo MR XA" in metadata.get("SoftwareVersions")
882
+ for metadata in bids_metas
883
+ ]
884
no_partial_volumes = not any(partial_volumes) or all(partial_volumes)
885
886
if no_partial_volumes:
0 commit comments