#!python
#
# See top-level LICENSE.rst file for Copyright information
#
# -*- coding: utf-8 -*-

"""
Re-group spectral data from cframe files into healpix indexed groups.
"""

import sys

if __name__ == '__main__':
    import desispec.scripts.group_spectra as group_spectra
    args = group_spectra.parse()
    sys.exit(group_spectra.main(args))

