Skip to content

Commit

Permalink
sequence_name from PulseSequenceName on Siemens XA series, need tests…
Browse files Browse the repository at this point in the history
… data to write tests
  • Loading branch information
bpinsard committed Aug 8, 2024
1 parent 41b6d83 commit cbb9aea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions heudiconv/dicoms.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ def create_seqinfo(
elif dcminfo.get([0x19, 0x109C]):
# Siemens
sequence_name = dcminfo[0x19, 0x109C].value
elif dcminfo.get([0x18, 0x9005]):
# Siemens XA
sequence_name = dcminfo[0x18, 0x9005].value
else:
sequence_name = ""

Expand Down

0 comments on commit cbb9aea

Please sign in to comment.