1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!python
# emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the NiBabel package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
"""
Quick diff summary for a set of neuroimaging files
"""
from nibabel.cmdline.diff import main
if __name__ == '__main__':
main()
|