Skip to content

Commit 060dcec

Browse files
author
Ben Cipollini
committed
cifti=>cifti2, Cifti=>Cifti2
1 parent 86f44f8 commit 060dcec

14 files changed

+200
-202
lines changed

nibabel/cifti/__init__.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

nibabel/cifti2/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*-
2+
# vi: set ft=python sts=4 ts=4 sw=4 et:
3+
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
4+
#
5+
# See COPYING file distributed along with the NiBabel package for the
6+
# copyright and license terms.
7+
#
8+
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
9+
"""CIfTI format IO
10+
11+
.. currentmodule:: nibabel.cifti2
12+
13+
.. autosummary::
14+
:toctree: ../generated
15+
16+
cifti2
17+
"""
18+
19+
from .parse_cifti2_fast import Cifti2Extension
20+
from .cifti2 import (Cifti2MetaData, Cifti2Header, Cifti2Image, Cifti2Label,
21+
Cifti2LabelTable, Cifti2VertexIndices,
22+
Cifti2VoxelIndicesIJK, Cifti2BrainModel, Cifti2Matrix,
23+
Cifti2MatrixIndicesMap, Cifti2NamedMap, Cifti2Parcel,
24+
Cifti2Surface, Cifti2TransformationMatrixVoxelIndicesIJKtoXYZ,
25+
Cifti2Vertices, Cifti2Volume, CIFTI_BrainStructures,
26+
Cifti2DenseDataSeries, CIFTI_MODEL_TYPES, load, save)

0 commit comments

Comments
 (0)