Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 28, 2020 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/fe983b5c0b199c8c518885add039415b to your computer and use it in GitHub Desktop.
Save r-ryantm/fe983b5c0b199c8c518885add039415b to your computer and use it in GitHub Desktop.
/nix/store/sw5glg2n3xbag5334ih960ijly8qaap3-python3.7-nibabel-3.2.0
├── bin
│   ├── nib-conform
│   ├── nib-dicomfs
│   ├── nib-diff
│   ├── nib-ls
│   ├── nib-nifti-dx
│   ├── nib-roi
│   ├── nib-stats
│   ├── nib-tck2trk
│   ├── nib-trk2tck
│   └── parrec2nii
├── lib
│   └── python3.7
│   └── site-packages
│   ├── nibabel
│   │   ├── affines.py
│   │   ├── analyze.py
│   │   ├── arrayproxy.py
│   │   ├── arraywriters.py
│   │   ├── batteryrunners.py
│   │   ├── benchmarks
│   │   │   ├── bench_arrayproxy_slicing.py
│   │   │   ├── bench_array_to_file.py
│   │   │   ├── bench_fileslice.py
│   │   │   ├── bench_finite_range.py
│   │   │   ├── bench_load_save.py
│   │   │   ├── bench_streamlines.py
│   │   │   ├── butils.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bench_arrayproxy_slicing.cpython-37.pyc
│   │   │   │   ├── bench_array_to_file.cpython-37.pyc
│   │   │   │   ├── bench_fileslice.cpython-37.pyc
│   │   │   │   ├── bench_finite_range.cpython-37.pyc
│   │   │   │   ├── bench_load_save.cpython-37.pyc
│   │   │   │   ├── bench_streamlines.cpython-37.pyc
│   │   │   │   ├── butils.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── pytest.benchmark.ini
│   │   ├── brikhead.py
│   │   ├── casting.py
│   │   ├── cifti2
│   │   │   ├── cifti2_axes.py
│   │   │   ├── cifti2.py
│   │   │   ├── __init__.py
│   │   │   ├── parse_cifti2.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cifti2_axes.cpython-37.pyc
│   │   │   │   ├── cifti2.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── parse_cifti2.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_axes.cpython-37.pyc
│   │   │   │   ├── test_cifti2.cpython-37.pyc
│   │   │   │   ├── test_cifti2io_axes.cpython-37.pyc
│   │   │   │   ├── test_cifti2io_header.cpython-37.pyc
│   │   │   │   ├── test_name.cpython-37.pyc
│   │   │   │   └── test_new_cifti2.cpython-37.pyc
│   │   │   ├── test_axes.py
│   │   │   ├── test_cifti2io_axes.py
│   │   │   ├── test_cifti2io_header.py
│   │   │   ├── test_cifti2.py
│   │   │   ├── test_name.py
│   │   │   └── test_new_cifti2.py
│   │   ├── cmdline
│   │   │   ├── conform.py
│   │   │   ├── dicomfs.py
│   │   │   ├── diff.py
│   │   │   ├── __init__.py
│   │   │   ├── ls.py
│   │   │   ├── nifti_dx.py
│   │   │   ├── parrec2nii.py
│   │   │   ├── __pycache__
│   │   │   │   ├── conform.cpython-37.pyc
│   │   │   │   ├── dicomfs.cpython-37.pyc
│   │   │   │   ├── diff.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ls.cpython-37.pyc
│   │   │   │   ├── nifti_dx.cpython-37.pyc
│   │   │   │   ├── parrec2nii.cpython-37.pyc
│   │   │   │   ├── roi.cpython-37.pyc
│   │   │   │   ├── stats.cpython-37.pyc
│   │   │   │   ├── tck2trk.cpython-37.pyc
│   │   │   │   ├── trk2tck.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── roi.py
│   │   │   ├── stats.py
│   │   │   ├── tck2trk.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_conform.cpython-37.pyc
│   │   │   │   │   ├── test_parrec2nii.cpython-37.pyc
│   │   │   │   │   ├── test_roi.cpython-37.pyc
│   │   │   │   │   ├── test_stats.cpython-37.pyc
│   │   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   │   ├── test_conform.py
│   │   │   │   ├── test_parrec2nii.py
│   │   │   │   ├── test_roi.py
│   │   │   │   ├── test_stats.py
│   │   │   │   └── test_utils.py
│   │   │   ├── trk2tck.py
│   │   │   └── utils.py
│   │   ├── conftest.py
│   │   ├── dataobj_images.py
│   │   ├── data.py
│   │   ├── deprecated.py
│   │   ├── deprecator.py
│   │   ├── dft.py
│   │   ├── ecat.py
│   │   ├── environment.py
│   │   ├── eulerangles.py
│   │   ├── externals
│   │   │   ├── __init__.py
│   │   │   ├── netcdf.py
│   │   │   ├── oset.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── netcdf.cpython-37.pyc
│   │   │   │   └── oset.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── data
│   │   │   │   └── example_1.nc
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── test_netcdf.cpython-37.pyc
│   │   │   └── test_netcdf.py
│   │   ├── filebasedimages.py
│   │   ├── fileholders.py
│   │   ├── filename_parser.py
│   │   ├── fileslice.py
│   │   ├── fileutils.py
│   │   ├── freesurfer
│   │   │   ├── __init__.py
│   │   │   ├── io.py
│   │   │   ├── mghformat.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── io.cpython-37.pyc
│   │   │   │   └── mghformat.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_io.cpython-37.pyc
│   │   │   │   └── test_mghformat.cpython-37.pyc
│   │   │   ├── test_io.py
│   │   │   └── test_mghformat.py
│   │   ├── funcs.py
│   │   ├── gifti
│   │   │   ├── giftiio.py
│   │   │   ├── gifti.py
│   │   │   ├── __init__.py
│   │   │   ├── parse_gifti_fast.py
│   │   │   ├── __pycache__
│   │   │   │   ├── gifti.cpython-37.pyc
│   │   │   │   ├── giftiio.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── parse_gifti_fast.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── data
│   │   │   │   │   ├── ascii.gii
│   │   │   │   │   ├── base64bin.gii
│   │   │   │   │   ├── gzipbase64.gii
│   │   │   │   │   ├── label.gii
│   │   │   │   │   ├── rh.aparc.annot.gii
│   │   │   │   │   ├── rh.shape.curv.gii
│   │   │   │   │   └── task.func.gii
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_1.cpython-37.pyc
│   │   │   │   │   ├── test_gifti.cpython-37.pyc
│   │   │   │   │   ├── test_giftiio.cpython-37.pyc
│   │   │   │   │   └── test_parse_gifti_fast.cpython-37.pyc
│   │   │   │   ├── test_1.py
│   │   │   │   ├── test_giftiio.py
│   │   │   │   ├── test_gifti.py
│   │   │   │   └── test_parse_gifti_fast.py
│   │   │   └── util.py
│   │   ├── _h5py_compat.py
│   │   ├── imageclasses.py
│   │   ├── imageglobals.py
│   │   ├── imagestats.py
│   │   ├── info.py
│   │   ├── __init__.py
│   │   ├── keywordonly.py
│   │   ├── loadsave.py
│   │   ├── minc1.py
│   │   ├── minc2.py
│   │   ├── mriutils.py
│   │   ├── nicom
│   │   │   ├── ascconv.py
│   │   │   ├── csareader.py
│   │   │   ├── dicomreaders.py
│   │   │   ├── dicomwrappers.py
│   │   │   ├── dwiparams.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── ascconv.cpython-37.pyc
│   │   │   │   ├── csareader.cpython-37.pyc
│   │   │   │   ├── dicomreaders.cpython-37.pyc
│   │   │   │   ├── dicomwrappers.cpython-37.pyc
│   │   │   │   ├── dwiparams.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── structreader.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── structreader.py
│   │   │   ├── tests
│   │   │   │   ├── data
│   │   │   │   │   ├── 0.dcm
│   │   │   │   │   ├── 1.dcm
│   │   │   │   │   ├── 4d_multiframe_test.dcm
│   │   │   │   │   ├── ascconv_sample.txt
│   │   │   │   │   ├── csa2_b0.bin
│   │   │   │   │   ├── csa2_b1000.bin
│   │   │   │   │   ├── csa2_zero_len.bin.gz
│   │   │   │   │   ├── csa_slice_norm.dcm
│   │   │   │   │   ├── csa_str_1001n_items.bin
│   │   │   │   │   ├── csa_str_valid.bin
│   │   │   │   │   ├── decimal_rescale.dcm
│   │   │   │   │   ├── philips_mprage.dcm.gz
│   │   │   │   │   ├── siemens_dwi_0.dcm.gz
│   │   │   │   │   ├── siemens_dwi_1000.dcm.gz
│   │   │   │   │   └── slicethickness_empty_string.dcm
│   │   │   │   ├── data_pkgs.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── data_pkgs.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_ascconv.cpython-37.pyc
│   │   │   │   │   ├── test_csareader.cpython-37.pyc
│   │   │   │   │   ├── test_dicomreaders.cpython-37.pyc
│   │   │   │   │   ├── test_dicomwrappers.cpython-37.pyc
│   │   │   │   │   ├── test_dwiparams.cpython-37.pyc
│   │   │   │   │   ├── test_structreader.cpython-37.pyc
│   │   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   │   ├── test_ascconv.py
│   │   │   │   ├── test_csareader.py
│   │   │   │   ├── test_dicomreaders.py
│   │   │   │   ├── test_dicomwrappers.py
│   │   │   │   ├── test_dwiparams.py
│   │   │   │   ├── test_structreader.py
│   │   │   │   └── test_utils.py
│   │   │   └── utils.py
│   │   ├── nifti1.py
│   │   ├── nifti2.py
│   │   ├── onetime.py
│   │   ├── openers.py
│   │   ├── optpkg.py
│   │   ├── orientations.py
│   │   ├── parrec.py
│   │   ├── pkg_info.py
│   │   ├── processing.py
│   │   ├── py3k.py
│   │   ├── __pycache__
│   │   │   ├── affines.cpython-37.pyc
│   │   │   ├── analyze.cpython-37.pyc
│   │   │   ├── arrayproxy.cpython-37.pyc
│   │   │   ├── arraywriters.cpython-37.pyc
│   │   │   ├── batteryrunners.cpython-37.pyc
│   │   │   ├── brikhead.cpython-37.pyc
│   │   │   ├── casting.cpython-37.pyc
│   │   │   ├── conftest.cpython-37.pyc
│   │   │   ├── data.cpython-37.pyc
│   │   │   ├── dataobj_images.cpython-37.pyc
│   │   │   ├── deprecated.cpython-37.pyc
│   │   │   ├── deprecator.cpython-37.pyc
│   │   │   ├── dft.cpython-37.pyc
│   │   │   ├── ecat.cpython-37.pyc
│   │   │   ├── environment.cpython-37.pyc
│   │   │   ├── eulerangles.cpython-37.pyc
│   │   │   ├── filebasedimages.cpython-37.pyc
│   │   │   ├── fileholders.cpython-37.pyc
│   │   │   ├── filename_parser.cpython-37.pyc
│   │   │   ├── fileslice.cpython-37.pyc
│   │   │   ├── fileutils.cpython-37.pyc
│   │   │   ├── funcs.cpython-37.pyc
│   │   │   ├── _h5py_compat.cpython-37.pyc
│   │   │   ├── imageclasses.cpython-37.pyc
│   │   │   ├── imageglobals.cpython-37.pyc
│   │   │   ├── imagestats.cpython-37.pyc
│   │   │   ├── info.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── keywordonly.cpython-37.pyc
│   │   │   ├── loadsave.cpython-37.pyc
│   │   │   ├── minc1.cpython-37.pyc
│   │   │   ├── minc2.cpython-37.pyc
│   │   │   ├── mriutils.cpython-37.pyc
│   │   │   ├── nifti1.cpython-37.pyc
│   │   │   ├── nifti2.cpython-37.pyc
│   │   │   ├── onetime.cpython-37.pyc
│   │   │   ├── openers.cpython-37.pyc
│   │   │   ├── optpkg.cpython-37.pyc
│   │   │   ├── orientations.cpython-37.pyc
│   │   │   ├── parrec.cpython-37.pyc
│   │   │   ├── pkg_info.cpython-37.pyc
│   │   │   ├── processing.cpython-37.pyc
│   │   │   ├── py3k.cpython-37.pyc
│   │   │   ├── pydicom_compat.cpython-37.pyc
│   │   │   ├── quaternions.cpython-37.pyc
│   │   │   ├── rstutils.cpython-37.pyc
│   │   │   ├── spaces.cpython-37.pyc
│   │   │   ├── spatialimages.cpython-37.pyc
│   │   │   ├── spm2analyze.cpython-37.pyc
│   │   │   ├── spm99analyze.cpython-37.pyc
│   │   │   ├── tmpdirs.cpython-37.pyc
│   │   │   ├── trackvis.cpython-37.pyc
│   │   │   ├── tripwire.cpython-37.pyc
│   │   │   ├── _version.cpython-37.pyc
│   │   │   ├── viewers.cpython-37.pyc
│   │   │   ├── volumeutils.cpython-37.pyc
│   │   │   ├── wrapstruct.cpython-37.pyc
│   │   │   └── xmlutils.cpython-37.pyc
│   │   ├── pydicom_compat.py
│   │   ├── quaternions.py
│   │   ├── rstutils.py
│   │   ├── spaces.py
│   │   ├── spatialimages.py
│   │   ├── spm2analyze.py
│   │   ├── spm99analyze.py
│   │   ├── streamlines
│   │   │   ├── array_sequence.py
│   │   │   ├── header.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── array_sequence.cpython-37.pyc
│   │   │   │   ├── header.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── tck.cpython-37.pyc
│   │   │   │   ├── tractogram.cpython-37.pyc
│   │   │   │   ├── tractogram_file.cpython-37.pyc
│   │   │   │   ├── trk.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── tck.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_array_sequence.cpython-37.pyc
│   │   │   │   │   ├── test_streamlines.cpython-37.pyc
│   │   │   │   │   ├── test_tck.cpython-37.pyc
│   │   │   │   │   ├── test_tractogram.cpython-37.pyc
│   │   │   │   │   ├── test_tractogram_file.cpython-37.pyc
│   │   │   │   │   ├── test_trk.cpython-37.pyc
│   │   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   │   ├── test_array_sequence.py
│   │   │   │   ├── test_streamlines.py
│   │   │   │   ├── test_tck.py
│   │   │   │   ├── test_tractogram_file.py
│   │   │   │   ├── test_tractogram.py
│   │   │   │   ├── test_trk.py
│   │   │   │   └── test_utils.py
│   │   │   ├── tractogram_file.py
│   │   │   ├── tractogram.py
│   │   │   ├── trk.py
│   │   │   └── utils.py
│   │   ├── testing
│   │   │   ├── helpers.py
│   │   │   ├── __init__.py
│   │   │   ├── np_features.py
│   │   │   └── __pycache__
│   │   │   ├── helpers.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── np_features.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── data
│   │   │   │   ├── 0.dcm
│   │   │   │   ├── 1.dcm
│   │   │   │   ├── ADC_Map.PAR
│   │   │   │   ├── analyze.hdr
│   │   │   │   ├── anatomical.nii
│   │   │   │   ├── ASL_3D_Multiecho.PAR
│   │   │   │   ├── bad_attribute+orig.HEAD
│   │   │   │   ├── bad_datatype+orig.HEAD
│   │   │   │   ├── check_parrec_reslice.py
│   │   │   │   ├── complex_big_endian.trk
│   │   │   │   ├── complex.trk
│   │   │   │   ├── DTI.PAR
│   │   │   │   ├── DTIv40.PAR
│   │   │   │   ├── empty.tck
│   │   │   │   ├── empty.trk
│   │   │   │   ├── example4d.nii.gz
│   │   │   │   ├── example4d+orig.BRIK.gz
│   │   │   │   ├── example4d+orig.HEAD
│   │   │   │   ├── example_nifti2.nii.gz
│   │   │   │   ├── fieldmap.PAR
│   │   │   │   ├── functional.nii
│   │   │   │   ├── gen_standard.py
│   │   │   │   ├── make_moved_anat.py
│   │   │   │   ├── matlab_nan.tck
│   │   │   │   ├── minc1_1_scale.mnc
│   │   │   │   ├── minc1_4d.mnc
│   │   │   │   ├── minc1-no-att.mnc
│   │   │   │   ├── minc2_1_scale.mnc
│   │   │   │   ├── minc2-4d-d.mnc
│   │   │   │   ├── minc2_4d.mnc
│   │   │   │   ├── minc2-no-att.mnc
│   │   │   │   ├── NA.PAR
│   │   │   │   ├── nifti1.hdr
│   │   │   │   ├── nifti2.hdr
│   │   │   │   ├── Phantom_EPI_3mm_cor_20APtrans_15RLrot_SENSE_15_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_cor_SENSE_8_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_sag_15AP_SENSE_13_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_sag_15FH_SENSE_12_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_sag_15RL_SENSE_11_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_sag_SENSE_7_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_tra_15FH_SENSE_9_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_tra_15RL_SENSE_10_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_tra_-30AP_10RL_20FH_SENSE_14_1.PAR
│   │   │   │   ├── Phantom_EPI_3mm_tra_SENSE_6_1.PAR
│   │   │   │   ├── phantom_EPI_asc_CLEAR_2_1.PAR
│   │   │   │   ├── phantom_EPI_asc_CLEAR_2_1.REC
│   │   │   │   ├── phantom_fake_dualTR.PAR
│   │   │   │   ├── phantom_fake_v4_1.PAR
│   │   │   │   ├── phantom_fake_v4.PAR
│   │   │   │   ├── phantom_truncated.PAR
│   │   │   │   ├── phantom_truncated.REC
│   │   │   │   ├── phantom_varscale.PAR
│   │   │   │   ├── phantom_varscale.REC
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── check_parrec_reslice.cpython-37.pyc
│   │   │   │   │   ├── gen_standard.cpython-37.pyc
│   │   │   │   │   └── make_moved_anat.cpython-37.pyc
│   │   │   │   ├── README.rst
│   │   │   │   ├── reoriented_anat_moved.nii
│   │   │   │   ├── resampled_anat_moved.nii
│   │   │   │   ├── resample_using_spm.m
│   │   │   │   ├── scaled+tlrc.BRIK
│   │   │   │   ├── scaled+tlrc.HEAD
│   │   │   │   ├── simple_big_endian.tck
│   │   │   │   ├── simple.tck
│   │   │   │   ├── simple.trk
│   │   │   │   ├── small.mnc
│   │   │   │   ├── standard.LPS.trk
│   │   │   │   ├── standard.nii.gz
│   │   │   │   ├── standard.tck
│   │   │   │   ├── standard.trk
│   │   │   │   ├── T1_3echo_mag_real_imag_phase.PAR
│   │   │   │   ├── T1_dual_echo.PAR
│   │   │   │   ├── T1.PAR
│   │   │   │   ├── T2-interleaved.PAR
│   │   │   │   ├── T2_-interleaved.PAR
│   │   │   │   ├── T2.PAR
│   │   │   │   ├── T2_.PAR
│   │   │   │   ├── test.mgz
│   │   │   │   ├── tiny.mnc
│   │   │   │   ├── tinypet.v
│   │   │   │   ├── to_canonical.m
│   │   │   │   ├── umass_anonymized.PAR
│   │   │   │   └── variant_v4_2_header.PAR
│   │   │   ├── __init__.py
│   │   │   ├── nibabel_data.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── nibabel_data.cpython-37.pyc
│   │   │   │   ├── scriptrunner.cpython-37.pyc
│   │   │   │   ├── test_affines.cpython-37.pyc
│   │   │   │   ├── test_analyze.cpython-37.pyc
│   │   │   │   ├── test_api_validators.cpython-37.pyc
│   │   │   │   ├── test_arrayproxy.cpython-37.pyc
│   │   │   │   ├── test_arraywriters.cpython-37.pyc
│   │   │   │   ├── test_batteryrunners.cpython-37.pyc
│   │   │   │   ├── test_brikhead.cpython-37.pyc
│   │   │   │   ├── test_casting.cpython-37.pyc
│   │   │   │   ├── test_data.cpython-37.pyc
│   │   │   │   ├── test_dataobj_images.cpython-37.pyc
│   │   │   │   ├── test_deprecated.cpython-37.pyc
│   │   │   │   ├── test_deprecator.cpython-37.pyc
│   │   │   │   ├── test_dft.cpython-37.pyc
│   │   │   │   ├── test_diff.cpython-37.pyc
│   │   │   │   ├── test_ecat.cpython-37.pyc
│   │   │   │   ├── test_ecat_data.cpython-37.pyc
│   │   │   │   ├── test_endiancodes.cpython-37.pyc
│   │   │   │   ├── test_environment.cpython-37.pyc
│   │   │   │   ├── test_euler.cpython-37.pyc
│   │   │   │   ├── test_filebasedimages.cpython-37.pyc
│   │   │   │   ├── test_filehandles.cpython-37.pyc
│   │   │   │   ├── test_fileholders.cpython-37.pyc
│   │   │   │   ├── test_filename_parser.cpython-37.pyc
│   │   │   │   ├── test_files_interface.cpython-37.pyc
│   │   │   │   ├── test_fileslice.cpython-37.pyc
│   │   │   │   ├── test_fileutils.cpython-37.pyc
│   │   │   │   ├── test_floating.cpython-37.pyc
│   │   │   │   ├── test_funcs.cpython-37.pyc
│   │   │   │   ├── test_h5py_compat.cpython-37.pyc
│   │   │   │   ├── test_image_api.cpython-37.pyc
│   │   │   │   ├── test_imageclasses.cpython-37.pyc
│   │   │   │   ├── test_imageglobals.cpython-37.pyc
│   │   │   │   ├── test_image_load_save.cpython-37.pyc
│   │   │   │   ├── test_imagestats.cpython-37.pyc
│   │   │   │   ├── test_image_types.cpython-37.pyc
│   │   │   │   ├── test_init.cpython-37.pyc
│   │   │   │   ├── test_keywordonly.cpython-37.pyc
│   │   │   │   ├── test_loadsave.cpython-37.pyc
│   │   │   │   ├── test_minc1.cpython-37.pyc
│   │   │   │   ├── test_minc2.cpython-37.pyc
│   │   │   │   ├── test_minc2_data.cpython-37.pyc
│   │   │   │   ├── test_mriutils.cpython-37.pyc
│   │   │   │   ├── test_nibabel_data.cpython-37.pyc
│   │   │   │   ├── test_nifti1.cpython-37.pyc
│   │   │   │   ├── test_nifti2.cpython-37.pyc
│   │   │   │   ├── test_onetime.cpython-37.pyc
│   │   │   │   ├── test_openers.cpython-37.pyc
│   │   │   │   ├── test_optpkg.cpython-37.pyc
│   │   │   │   ├── test_orientations.cpython-37.pyc
│   │   │   │   ├── test_parrec.cpython-37.pyc
│   │   │   │   ├── test_parrec_data.cpython-37.pyc
│   │   │   │   ├── test_pkg_info.cpython-37.pyc
│   │   │   │   ├── test_processing.cpython-37.pyc
│   │   │   │   ├── test_proxy_api.cpython-37.pyc
│   │   │   │   ├── test_quaternions.cpython-37.pyc
│   │   │   │   ├── test_recoder.cpython-37.pyc
│   │   │   │   ├── test_removalschedule.cpython-37.pyc
│   │   │   │   ├── test_round_trip.cpython-37.pyc
│   │   │   │   ├── test_rstutils.cpython-37.pyc
│   │   │   │   ├── test_scaling.cpython-37.pyc
│   │   │   │   ├── test_scripts.cpython-37.pyc
│   │   │   │   ├── test_spaces.cpython-37.pyc
│   │   │   │   ├── test_spatialimages.cpython-37.pyc
│   │   │   │   ├── test_spm2analyze.cpython-37.pyc
│   │   │   │   ├── test_spm99analyze.cpython-37.pyc
│   │   │   │   ├── test_testing.cpython-37.pyc
│   │   │   │   ├── test_tmpdirs.cpython-37.pyc
│   │   │   │   ├── test_trackvis.cpython-37.pyc
│   │   │   │   ├── test_tripwire.cpython-37.pyc
│   │   │   │   ├── test_viewers.cpython-37.pyc
│   │   │   │   ├── test_volumeutils.cpython-37.pyc
│   │   │   │   └── test_wrapstruct.cpython-37.pyc
│   │   │   ├── scriptrunner.py
│   │   │   ├── test_affines.py
│   │   │   ├── test_analyze.py
│   │   │   ├── test_api_validators.py
│   │   │   ├── test_arrayproxy.py
│   │   │   ├── test_arraywriters.py
│   │   │   ├── test_batteryrunners.py
│   │   │   ├── test_brikhead.py
│   │   │   ├── test_casting.py
│   │   │   ├── test_dataobj_images.py
│   │   │   ├── test_data.py
│   │   │   ├── test_deprecated.py
│   │   │   ├── test_deprecator.py
│   │   │   ├── test_dft.py
│   │   │   ├── test_diff.py
│   │   │   ├── test_ecat_data.py
│   │   │   ├── test_ecat.py
│   │   │   ├── test_endiancodes.py
│   │   │   ├── test_environment.py
│   │   │   ├── test_euler.py
│   │   │   ├── test_filebasedimages.py
│   │   │   ├── test_filehandles.py
│   │   │   ├── test_fileholders.py
│   │   │   ├── test_filename_parser.py
│   │   │   ├── test_files_interface.py
│   │   │   ├── test_fileslice.py
│   │   │   ├── test_fileutils.py
│   │   │   ├── test_floating.py
│   │   │   ├── test_funcs.py
│   │   │   ├── test_h5py_compat.py
│   │   │   ├── test_image_api.py
│   │   │   ├── test_imageclasses.py
│   │   │   ├── test_imageglobals.py
│   │   │   ├── test_image_load_save.py
│   │   │   ├── test_imagestats.py
│   │   │   ├── test_image_types.py
│   │   │   ├── test_init.py
│   │   │   ├── test_keywordonly.py
│   │   │   ├── test_loadsave.py
│   │   │   ├── test_minc1.py
│   │   │   ├── test_minc2_data.py
│   │   │   ├── test_minc2.py
│   │   │   ├── test_mriutils.py
│   │   │   ├── test_nibabel_data.py
│   │   │   ├── test_nifti1.py
│   │   │   ├── test_nifti2.py
│   │   │   ├── test_onetime.py
│   │   │   ├── test_openers.py
│   │   │   ├── test_optpkg.py
│   │   │   ├── test_orientations.py
│   │   │   ├── test_parrec_data.py
│   │   │   ├── test_parrec.py
│   │   │   ├── test_pkg_info.py
│   │   │   ├── test_processing.py
│   │   │   ├── test_proxy_api.py
│   │   │   ├── test_quaternions.py
│   │   │   ├── test_recoder.py
│   │   │   ├── test_removalschedule.py
│   │   │   ├── test_round_trip.py
│   │   │   ├── test_rstutils.py
│   │   │   ├── test_scaling.py
│   │   │   ├── test_scripts.py
│   │   │   ├── test_spaces.py
│   │   │   ├── test_spatialimages.py
│   │   │   ├── test_spm2analyze.py
│   │   │   ├── test_spm99analyze.py
│   │   │   ├── test_testing.py
│   │   │   ├── test_tmpdirs.py
│   │   │   ├── test_trackvis.py
│   │   │   ├── test_tripwire.py
│   │   │   ├── test_viewers.py
│   │   │   ├── test_volumeutils.py
│   │   │   └── test_wrapstruct.py
│   │   ├── tmpdirs.py
│   │   ├── trackvis.py
│   │   ├── tripwire.py
│   │   ├── _version.py
│   │   ├── viewers.py
│   │   ├── volumeutils.py
│   │   ├── wrapstruct.py
│   │   └── xmlutils.py
│   ├── nibabel-3.2.0.dist-info
│   │   ├── COPYING
│   │   ├── direct_url.json
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── nisext
│   ├── __init__.py
│   ├── py3builder.py
│   ├── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── py3builder.cpython-37.pyc
│   │   ├── sexts.cpython-37.pyc
│   │   └── testers.cpython-37.pyc
│   ├── sexts.py
│   ├── testers.py
│   └── tests
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── test_sexts.cpython-37.pyc
│   │   └── test_testers.cpython-37.pyc
│   ├── test_sexts.py
│   └── test_testers.py
└── nix-support
└── propagated-build-inputs
51 directories, 594 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment