diff --git a/fsl/scripts/extract_noise.py b/fsl/scripts/extract_noise.py new file mode 100644 index 0000000000000000000000000000000000000000..68c10c605c2531f3630c6554c2e876e46ef15fd9 --- /dev/null +++ b/fsl/scripts/extract_noise.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python +# +# extract_noise.py - Deprecated - replaced by fsl_ents.py +# +# Author: Paul McCarthy <pauldmccarthy@gmail.com> +# +"""This module is deprecated - it has been replaced by :mod:`.fsl_ents`. """ + + +import sys + + +if __name__ == '__main__': + print('extract_noise is deprecated and will be removed in fslpy 2.0. ' + 'Use fsl_ents instead.') + from fsl.scripts.fsl_ents import main + sys.exit(main())