Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: adding Philips XML/REC support #683

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open

Commits on Oct 18, 2018

  1. add Philips XML/REC reader.

    Philips now encourages the XML-style headers over the older PAR
    format. This initial implementation reads the XML file, converting
    each field to its PAR file equivalent and then inherits from the
    PARRECHeader and PARRECImage to avoid excessive code duplication.
    grlee77 committed Oct 18, 2018
    Configuration menu
    Copy the full SHA
    64ed188 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ff1826 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2018

  1. Assign an enumerated value of -1 in the PAR image_defs header for unr…

    …ecognized enum strings.
    
    add an error message with a hint regarding truncated XML files
    grlee77 committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    df2751e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c405c1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4636b2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    570a7ed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bbeb710 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a7a9edc View commit details
    Browse the repository at this point in the history
  7. Add XML/REC support to parrec2nii.py

    Add an xmlrec2nii command line script. This currently is identical to parrec2nii because the underlying
    function now supports both formats.
    grlee77 committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    ed43e97 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5fa6810 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    10bf7cc View commit details
    Browse the repository at this point in the history
  10. minor cleanup

    grlee77 committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    8d62119 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2018

  1. Configuration menu
    Copy the full SHA
    d7bf693 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fd88ccd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7048640 View commit details
    Browse the repository at this point in the history
  4. fix bug in conversion of Boolean entries from string such as 'N' and 'Y'

    prior to this commit, both would get stored as true because bool('N') == True
    grlee77 committed Oct 22, 2018
    Configuration menu
    Copy the full SHA
    4068548 View commit details
    Browse the repository at this point in the history