Skip to content

Commit 3d59146

Browse files
Merge pull request #486 from MarcCote/streamlines_tck
MRG: Support TCK streamlines file format This PR adds support for MRtrix streamlines file to the Streamlines API (#391). Eventually, in a future PR, I will add some functions that allows easy conversion between all different formats. For now, going from TRK to TCK is easy. See https://gist.github.com/MarcCote/ea6842cc4c3950f7596fc3c8a0be0154 Converting from TCK to TRK requires additional information from a reference anatomy. See https://gist.github.com/MarcCote/ebf0ae83a9202eb96d1dfbb949cd98af
2 parents b077a63 + d2e08da commit 3d59146

17 files changed

+814
-64
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ matrix:
3333
# Absolute minimum dependencies
3434
- python: 2.7
3535
env:
36-
- DEPENDS="numpy==1.6.0" PYDICOM=0
36+
- DEPENDS="numpy==1.7.1" PYDICOM=0
3737
# Absolute minimum dependencies plus oldest MPL
3838
# Check these against:
3939
# nibabel/info.py
4040
# doc/source/installation.rst
4141
# requirements.txt
4242
- python: 2.7
4343
env:
44-
- DEPENDS="numpy==1.6.0 matplotlib==1.3.1" PYDICOM=0
44+
- DEPENDS="numpy==1.7.1 matplotlib==1.3.1" PYDICOM=0
4545
# Minimum pydicom dependency
4646
- python: 2.7
4747
env:
48-
- DEPENDS="numpy==1.6.0 pydicom==0.9.7 pillow==2.6"
48+
- DEPENDS="numpy==1.7.1 pydicom==0.9.7 pillow==2.6"
4949
# test against numpy 1.7
5050
- python: 2.7
5151
env:

doc/source/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Requirements
8787
.travis.yml
8888
8989
* Python_ 2.7, or >= 3.4
90-
* NumPy_ 1.6 or greater
90+
* NumPy_ 1.7 or greater
9191
* Six_ 1.3 or greater
9292
* SciPy_ (optional, for full SPM-ANALYZE support)
9393
* PyDICOM_ 0.9.7 or greater (optional, for DICOM support)

nibabel/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def cmp_pkg_version(version_str, pkg_version_str=__version__):
186186
# doc/source/installation.rst
187187
# requirements.txt
188188
# .travis.yml
189-
NUMPY_MIN_VERSION = '1.6.0'
189+
NUMPY_MIN_VERSION = '1.7.1'
190190
PYDICOM_MIN_VERSION = '0.9.7'
191191
SIX_MIN_VERSION = '1.3'
192192

nibabel/streamlines/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@
1010
from .tractogram_file import ExtensionWarning
1111

1212
from .trk import TrkFile
13+
from .tck import TckFile
1314

1415
# List of all supported formats
15-
FORMATS = {".trk": TrkFile}
16+
FORMATS = {".trk": TrkFile,
17+
".tck": TckFile
18+
}
1619

1720

1821
def is_supported(fileobj):

0 commit comments

Comments
 (0)