- changed
yaml.load(input, Loader=yaml.FullLoader)
toyaml.safe_load(input)
throughout. This was done to keep up with Yaml's ever changing recommendations for avoiding security issues withload
(https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation)
- removed obsolete
receivedImg.nii.gz
frompyneal_scanner/simulations/
- all instances of 'scannerBaseDir' have been changed to 'scannerSessionDir', and users must specify the path to this directory in the scannerConfig.yaml file. This makes the paths on pyneal scanner simpler and more consistent across all 3 scanner manufacturers, whereas before GE had been automatically trying to assign the session dir by finding the most recently updated the p###/e### directories.
- updated deprecated
yaml.load(input)
toyaml.load(input, Loader=yaml.FullLoader)
throughout