| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python39-nilearn | Distribution: openSUSE:Factory:zSystems |
| Version: 0.10.1 | Vendor: openSUSE |
| Release: 2.1 | Build date: Thu Aug 10 18:50:15 2023 |
| Group: Development/Languages/Python | Build host: s390zp26 |
| Size: 17145691 | Source RPM: python-nilearn-0.10.1-2.1.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://github.com/nilearn/nilearn | |
| Summary: Statistical learning tool for neuroimaging | |
Nilearn is a Python module for statistical learning on NeuroImaging data.
BSD-3-Clause
* Thu Aug 10 2023 Daniel Garcia <daniel.garcia@suse.com>
- Add numpy-1.25.patch, upstream patch gh#nilearn/nilearn#3746
- Add warning-based-sklearn-version.patch, upstream patch gh#nilearn/nilearn#3763
* Tue Jun 27 2023 Markéta Machová <mmachova@suse.com>
- Update to 0.10.1
* New function load_sample_motor_activation_image to load example
contrast map
* fsaverage meshes accessed through fetch_surf_fsaverage now come
with flat maps for all resolutions
* Improve how first_level_from_bids handles fetching slice timing
metadata and add additional input validation. In release 0.12
the default slice_time_ref will be None instead of 0
* Fixes several bugs in first_level_from_bids.
* Add correct “zscore_sample” strategy to signal._standardize
which will replace the default “zscore” strategy in release 0.13
* Moved packaging from setup.py and setuptools build backend to
pyproject.toml and hatchling backend.
* Restore resample_img compatibility with all nibabel.spatialimages.SpatialImage objects
* Fri Apr 14 2023 Steve Kowalik <steven.kowalik@suse.com>
- Skip a failing array test.
* Mon Feb 06 2023 Daniel Garcia <daniel.garcia@suse.com>
- Update to 0.10.0
* New classes MultiNiftiLabelsMasker and MultiNiftiMapsMasker create maskers
to extract signals from a list of subjects with 4D images using
parallelization (#3237 by Yasmin Mzayek).
* Updated docs with a new theme using furo (#3125 by Alexis Thual).
* permuted_ols and non_parametric_inference now support TFCE statistic (#3196
by Taylor Salo).
* permuted_ols and non_parametric_inference now support cluster-level
Family-wise error correction (#3181 by Taylor Salo).
* save_glm_to_bids has been added, which writes model outputs to disk
according to BIDS convention (#2715 by Taylor Salo).
* Tue Oct 11 2022 John Vandenberg <jayvdb@gmail.com>
- Remove fix-test-decoder.patch merged upstream
- Remove use of pytest-xdist which makes failures harder to see
- Update to v0.9.2
* save_glm_to_bids has been added, which writes model outputs to
disk according to BIDS convention
* permuted_ols and non_parametric_inference now support TFCE statistic
* permuted_ols and non_parametric_inference now support cluster-level
Family-wise error correction
* Updated docs with a new theme using furo
* Fix _NEUROVAULT_BASE_URL and _NEUROSYNTH_FETCH_WORDS_URL in
nilearn/datasets/neurovault.py by using https instead of http
* Convert references in nilearn/mass_univariate/permuted_least_squares.py
to use bibtex format
* Update Craddock 2012 parcellation url in nilearn/datasets/atlas.py
* plot_roi failed before when used with the “contours” view type
and passing a list of cut coordinates in display mode “x”, “y” or “z”;
this has been corrected
* plot_markers can now plot a single scatter point
* Fix title display for plot_surf_stat_map. The title argument does
not set the figure title anymore but the axis title.
* load_surf_mesh loaded FreeSurfer specific surface files (e.g. .pial)
with a shift in the coordinates. This is fixed by adding the c_ras
coordinates to the mesh coordinates
* Function nilearn.glm.second_level.second_level._check_second_level_input
now raises an error when flm_object argument is False and
second_level_input is a list of FirstLevelModel
* Function resample_img now warns the user if the provided image has
an sform code equal to 0 or None
* Fix usage of scipy.stats.gamma.pdf in _gamma_difference_hrf function
under nilearn/glm/first_level/hemodynamic_models.py, which resulted
in slight distortion of HRF
* Fix bug introduced due to a fix in the pre-release version of scipy
(1.9.0rc1) which now enforces that elements of a band-pass filter must
meet condition Wn[0] < Wn[1]. Now if band-pass elements are equal
butterworth returns an unfiltered signal with a warning
* The parameter alpha is now correctly passed to plot_glass_brain in
plot_connectome
* Fix plotting of background image in view_img when the background is
not the MNI template
* Fix the typographic error on the page Default Mode Network
extraction of ADHD dataset
* Add sample_masks to fit for censoring time points
* Function run_glm and class FirstLevelModel now accept a random_state
parameter, which allows users to seed the KMeans cluster model used
to estimate AR coefficients
* Conform seeding and docstrings in module _utils.data_gen
* Docstrings of module second_level were improved
* In get_clusters_table, when the center of mass of a binary
cluster falls outside the cluster, report the nearest within-cluster
voxel instead
* Add n_elements_ attribute to masker classes
* Functions expecting string filesystem paths now also accept
path-like objects
* Contributing guidelines now include a recommendation to run flake8
locally on the branch diff with main
* Improvements to permuted_ols and non_parametric_inference with TFCE
statistic runtime
* NiftiLabelsMasker now accepts 1-dimensional arrays in its
inverse_transform method
* Function plot_carpet argument cmap now respects behaviour specified
by docs and changes the color of the carpet_plot. Changing the label
colors is now delegated to a new variable cmap_labels
* Function fetch_surf_fsaverage no longer supports the previously
deprecated option fsaverage5_sphere
* Classes RegressionResults, SimpleRegressionResults, OLSModel,
and LikelihoodModelResults no longer support deprecated shortened
attribute names, including df_resid, wdesign, wresid, norm_resid,
resid, and wY
* Function fetch_openneuro_dataset_index is now deprecated in favor
of the new fetch_ds000030_urls function
* 64-bit integers in Nifti files: some tools such as FSL, SPM and
AFNI cannot handle Nifti images containing 64-bit integers.
To avoid compatibility issues, it is best to avoid writing such
images and in the future trying to create them with nibabel
without explicitly specifying a data type will result in an error.
To avoid this, new_img_like now warns when given int64 arrays
and converts them to int32 when possible (ie when it would not
result in an overflow). Moreover, any atlas fetcher that returned
int64 images now produces images containing smaller ints.
* Refactors fmriprep confound loading such that that the parsing
of the relevant image file and the loading of the confounds are
done in separate steps
* Private submodules, functions, and classes from the decomposition
module now start with a “_” character to make it clear that they
are not part of the public API
* Convert references in nilearn/glm/regression.py and
nilearn/glm/thresholding.py to use footcite/footbibliography
* Boolean input data in new_img_like now defaults to np.uint8
instead of np.int8
* The current behavior of maskers’ transform on 3D niimg inputs,
in which a 2D array is returned, is deprecated, and 1D arrays
will be returned starting in version 0.12
* Fri Sep 16 2022 Guillaume GARDET <guillaume.gardet@opensuse.org>
- Disable multi-thread tests until fixed upstream -- gh#nilearn/nilearn#3359
* Tue Jul 12 2022 Markéta Machová <mmachova@suse.com>
- Update to 0.9.1
* Python 3.6 is deprecated and will be removed in release 0.10
* Nibabel 2.x is no longer supported
* Surface plotting functions can now produce interactive plots
with Plotly
* New module nilearn.interfaces to implement loading and saving
utilities with various interfaces
* New functions load_confounds and load_confounds_strategy to
load confound variables easily from fMRIPrep outputs
* New class HierarchicalKMeans which yields more balanced
clusters than KMeans. It is also callable through Parcellations
using method=hierarchical_kmeans
* Masker objects like NiftiMasker now belong to the new module
nilearn.maskers. The old import style, through the module
input_data, still works but has been deprecated
* Class NiftiMapsMasker can now generate HTML reports in the same
way as NiftiMasker and NiftiLabelsMasker
* The contributing documentation and maintenance pages were improved
* many more changes, see upstream changelog
- Add upstream patch fix-test-decoder.patch
- Delete upstreamed patches:
* nilearn-pr3136-pythoncall.patch
* nilearn-pr3094-py310.patch
* Thu Jan 20 2022 Ben Greiner <code@bnavigator.de>
- Update to 0.8.1
* New atlas fetcher nilearn.datasets.fetch_atlas_juelich to
download Juelich atlas from FSL.
* New grey and white-matter template and mask loading functions:
nilearn.datasets.load_mni152_gm_template,
nilearn.datasets.load_mni152_wm_template,
nilearn.datasets.load_mni152_gm_mask, and
nilearn.datasets.load_mni152_wm_mask
* Nilearn development process has been reworked. It now provides
insights on nilearn organization as a project as well as more
explicit Contribution Guidelines.
* nilearn.image.binarize_img binarizes images into 0 and 1.
* nilearn.input_data.NiftiLabelsMasker can now generate HTML
reports in the same way as nilearn.input_data.NiftiMasker.
* nilearn.signal.clean accepts new parameter sample_mask. shape:
(number of scans - number of volumes removed, )
* All inherent classes of nilearn.input_data.BaseMasker can use
parameter sample_mask for sub-sample masking.
* Fetcher nilearn.datasets.fetch_surf_fsaverage now accepts
fsaverage3, fsaverage4 and fsaverage6 as values for parameter
mesh, so that all resolutions of fsaverage from 3 to 7 are now
available.
* Fetcher nilearn.datasets.fetch_surf_fsaverage now provides
attributes {area, curv, sphere, thick}_{left, right} for all
fsaverage resolutions.
* nilearn.glm.first_level.run_glm now allows auto regressive
noise models of order greater than one.
* Support for Nibabel 2.x is deprecated and will be removed in
the 0.9 release.
- Add nilearn-pr3094-py310.patch -- gh#nilearn/nilearn#3094
- Add nilearn-pr3136-pythoncall.patch -- gh#nilearn/nilearn#3136
- Only test on 64-bit platforms
- - http://nilearn.github.io/introduction.html#installation
* Fri Apr 09 2021 Markéta Machová <mmachova@suse.com>
- Update to 0.7.1
* New atlas fetcher nilearn.datasets.fetch_atlas_difumo to download
Dictionaries of Functional Modes, or “DiFuMo”, that can serve as
atlases to extract functional signals with different dimensionalities.
* nilearn.decoding.Decoder and nilearn.decoding.DecoderRegressor is now
implemented with random predictions to estimate a chance level.
* Some functions are now implemented with new display mode Mosaic. That
implies plotting 3D maps in multiple columns and rows in a single axes.
- Drop nilearn-fix-aarch64.patch
* Fri Jan 29 2021 Ben Greiner <code@bnavigator.de>
- Skip python36 build because Tumbleweed updates to SciPy 1.6.0
which dropped support for Python 3.6 (NEP 29)
* Fri Nov 20 2020 Guillaume GARDET <guillaume.gardet@opensuse.org>
- Add runtime deps: python-requests
* Mon Nov 16 2020 Guillaume GARDET <guillaume.gardet@opensuse.org>
- Update to 0.7.0
- Add patch to fix aarch64 test:
* nilearn-fix-aarch64.patch
- Drop upstreamed patches:
* fix-test_save_cmap.patch
* update-numpy-warning.patch
- Disable 'test_clean_confounds' and 'test_reorder_img_mirror '
until we have a fix. See:
https://github.com/nilearn/nilearn/issues/2608
https://github.com/nilearn/nilearn/issues/2610
* Wed Oct 14 2020 Guillaume GARDET <guillaume.gardet@opensuse.org>
- Backport patches to fix some tests:
* update-numpy-warning.patch - https://github.com/nilearn/nilearn/pull/2530
* fix-test_save_cmap.patch - https://github.com/nilearn/nilearn/pull/2543
* Wed Apr 29 2020 Tomáš Chvátal <tchvatal@suse.com>
- Use xdist to speedup the tests to take less than 30 mins
* Thu Jan 30 2020 Todd R <toddrme2178@gmail.com>
- Update to version 0.6.1
+ ENHANCEMENTS
* html pages use the user-provided plot title, if any, as their title
+ Fixes
* Fetchers for developmental_fmri and localizer datasets resolve URLs correctly.
* Mon Jan 06 2020 Todd R <toddrme2178@gmail.com>
- Update to version 0.6.0
+ HIGHLIGHTS
* Python2 and 3.4 are no longer supported. We recommend upgrading to Python 3.6 minimum.
* Support for Python3.5 wil be removed in the 0.7.x release.
Users with a Python3.5 environment will be warned at their first Nilearn import.
* joblib is now a dependency
* Minimum supported versions of packages have been bumped up.
> Matplotlib -- v2.0
> Scikit-learn -- v0.19
> Scipy -- v0.19
+ NEW
* A new method for :class:`nilearn.input_data.NiftiMasker` instances
for generating reports viewable in a web browser, Jupyter Notebook, or VSCode.
* A new function :func:`nilearn.image.get_data` to replace the deprecated
nibabel method `Nifti1Image.get_data`. Now use `nilearn.image.get_data(img)`
rather than `img.get_data()`. This is because Nibabel is removing the
`get_data` method. You may also consider using the Nibabel
`Nifti1Image.get_fdata`, which returns the data cast to floating-point.
See https://github.com/nipy/nibabel/wiki/BIAP8 .
As a benefit, the `get_data` function works on niimg-like objects such as
filenames (see http://nilearn.github.io/manipulating_images/input_output.html ).
* Parcellation method ReNA: Fast agglomerative clustering based on recursive
nearest neighbor grouping.
Yields very fast & accurate models, without creation of giant
clusters.
* Plot connectome strength
Use :func:`nilearn.plotting.plot_connectome_strength` to plot the strength of a
connectome on a glass brain. Strength is absolute sum of the edges at a node.
* Optimization to image resampling
* New brain development fMRI dataset fetcher
:func:`nilearn.datasets.fetch_development_fmri` can be used to download
movie-watching data in children and adults. A light-weight dataset
implemented for teaching and usage in the examples. All the connectivity examples
are changed from ADHD to brain development fmri dataset.
+ ENHANCEMENTS
* :func:`nilearn.plotting.view_img_on_surf`, :func:`nilearn.plotting.view_surf`
and :func:`nilearn.plotting.view_connectome` can display a title, and allow
disabling the colorbar, and setting its height and the fontsize of its ticklabels.
* Rework of the standardize-options of :func:`nilearn.signal.clean` and the various Maskers
in `nilearn.input_data`. You can now set `standardize` to `zscore` or `psc`. `psc` stands
for `Percent Signal Change`, which can be a meaningful metric for BOLD.
* Class :class:`nilearn.input_data.NiftiLabelsMasker` now accepts an optional
`strategy` parameter which allows it to change the function used to reduce
values within each labelled ROI. Available functions include mean, median,
minimum, maximum, standard_deviation and variance.
This change is also introduced in :func:`nilearn.regions.img_to_signals_labels`.
* :func:`nilearn.plotting.view_surf` now accepts surface data provided as a file
path.
+ CHANGES
* :func:`nilearn.plotting.plot_img` now has explicit keyword arguments `bg_img`,
`vmin` and `vmax` to control the background image and the bounds of the
colormap. These arguments were already accepted in `kwargs` but not documented
before.
+ FIXES
* :class:`nilearn.input_data.NiftiLabelsMasker` no longer truncates region means to their integral part
when input images are of integer type.
* The arg `version='det'` in :func:`nilearn.datasets.fetch_atlas_pauli_2017` now works as expected.
* `pip install nilearn` now installs the necessary dependencies.
* Lots of other fixes in documentation and examples. More detailed change list follows:
- Drop python2 support
/usr/lib/python3.9/site-packages/nilearn /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/INSTALLER /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/METADATA /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/RECORD /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/REQUESTED /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/WHEEL /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/licenses /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/licenses/AUTHORS.rst /usr/lib/python3.9/site-packages/nilearn-0.10.1.dist-info/licenses/LICENSE /usr/lib/python3.9/site-packages/nilearn/__init__.py /usr/lib/python3.9/site-packages/nilearn/__pycache__ /usr/lib/python3.9/site-packages/nilearn/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/_version.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/_version.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/conftest.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/conftest.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/masking.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/masking.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/signal.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/__pycache__/signal.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils /usr/lib/python3.9/site-packages/nilearn/_utils/__init__.py /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__ /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/cache_mixin.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/cache_mixin.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/class_inspect.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/class_inspect.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/data_gen.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/data_gen.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/docs.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/docs.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/exceptions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/exceptions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/extmath.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/extmath.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/fmriprep_confounds.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/fmriprep_confounds.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/helpers.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/helpers.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/logger.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/logger.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/ndimage.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/ndimage.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/niimg.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/niimg.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/niimg_conversions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/niimg_conversions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/numpy_conversions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/numpy_conversions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/param_validation.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/param_validation.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/path_finding.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/path_finding.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/segmentation.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/segmentation.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/testing.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/__pycache__/testing.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/cache_mixin.py /usr/lib/python3.9/site-packages/nilearn/_utils/class_inspect.py /usr/lib/python3.9/site-packages/nilearn/_utils/data_gen.py /usr/lib/python3.9/site-packages/nilearn/_utils/docs.py /usr/lib/python3.9/site-packages/nilearn/_utils/exceptions.py /usr/lib/python3.9/site-packages/nilearn/_utils/extmath.py /usr/lib/python3.9/site-packages/nilearn/_utils/fmriprep_confounds.py /usr/lib/python3.9/site-packages/nilearn/_utils/helpers.py /usr/lib/python3.9/site-packages/nilearn/_utils/logger.py /usr/lib/python3.9/site-packages/nilearn/_utils/ndimage.py /usr/lib/python3.9/site-packages/nilearn/_utils/niimg.py /usr/lib/python3.9/site-packages/nilearn/_utils/niimg_conversions.py /usr/lib/python3.9/site-packages/nilearn/_utils/numpy_conversions.py /usr/lib/python3.9/site-packages/nilearn/_utils/param_validation.py /usr/lib/python3.9/site-packages/nilearn/_utils/path_finding.py /usr/lib/python3.9/site-packages/nilearn/_utils/segmentation.py /usr/lib/python3.9/site-packages/nilearn/_utils/testing.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_cache_mixin.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_cache_mixin.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_class_inspect.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_class_inspect.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_data_gen.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_data_gen.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_extmath.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_extmath.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_helpers.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_helpers.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_logger.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_logger.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_ndimage.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_ndimage.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_niimg.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_niimg.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_niimg_conversions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_niimg_conversions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_numpy_conversions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_numpy_conversions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_param_validation.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_param_validation.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_segmentation.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_segmentation.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_testing.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/__pycache__/test_testing.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data/mmap.dat /usr/lib/python3.9/site-packages/nilearn/_utils/tests/data/pymvpa-exampledata.tar.bz2 /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_cache_mixin.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_class_inspect.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_data_gen.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_extmath.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_helpers.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_logger.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_ndimage.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_niimg.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_niimg_conversions.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_numpy_conversions.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_param_validation.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_segmentation.py /usr/lib/python3.9/site-packages/nilearn/_utils/tests/test_testing.py /usr/lib/python3.9/site-packages/nilearn/_version.py /usr/lib/python3.9/site-packages/nilearn/conftest.py /usr/lib/python3.9/site-packages/nilearn/connectome /usr/lib/python3.9/site-packages/nilearn/connectome/__init__.py /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__ /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__/connectivity_matrices.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__/connectivity_matrices.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__/group_sparse_cov.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/__pycache__/group_sparse_cov.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/connectivity_matrices.py /usr/lib/python3.9/site-packages/nilearn/connectome/group_sparse_cov.py /usr/lib/python3.9/site-packages/nilearn/connectome/tests /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__/test_connectivity_matrices.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__/test_connectivity_matrices.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__/test_group_sparse_cov.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/tests/__pycache__/test_group_sparse_cov.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/connectome/tests/test_connectivity_matrices.py /usr/lib/python3.9/site-packages/nilearn/connectome/tests/test_group_sparse_cov.py /usr/lib/python3.9/site-packages/nilearn/datasets /usr/lib/python3.9/site-packages/nilearn/datasets/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/_testing.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/_testing.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/atlas.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/atlas.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/func.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/func.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/neurovault.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/neurovault.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/struct.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/struct.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/__pycache__/utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/_testing.py /usr/lib/python3.9/site-packages/nilearn/datasets/atlas.py /usr/lib/python3.9/site-packages/nilearn/datasets/data /usr/lib/python3.9/site-packages/nilearn/datasets/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/data/__pycache__/convert_templates.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/data/__pycache__/convert_templates.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/data/confounds_with_header.csv /usr/lib/python3.9/site-packages/nilearn/datasets/data/convert_templates.py /usr/lib/python3.9/site-packages/nilearn/datasets/data/development_fmri.csv /usr/lib/python3.9/site-packages/nilearn/datasets/data/dosenbach_2010.csv /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5 /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/area_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/area_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/curv_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/curv_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/flat_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/flat_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/infl_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/infl_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/pial.left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/pial.right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/pial_inflated.left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/pial_inflated.right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/pial_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/pial_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/sphere_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/sphere_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/sulc.left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/sulc.right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/sulc_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/sulc_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/thick_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/thick_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/white.left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/white.right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/white_left.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/fsaverage5/white_right.gii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/image_10426.nii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/mmap.dat /usr/lib/python3.9/site-packages/nilearn/datasets/data/mni_icbm152_gm_tal_nlin_sym_09a_converted.nii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/mni_icbm152_t1_tal_nlin_sym_09a_converted.nii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/mni_icbm152_wm_tal_nlin_sym_09a_converted.nii.gz /usr/lib/python3.9/site-packages/nilearn/datasets/data/power_2011.csv /usr/lib/python3.9/site-packages/nilearn/datasets/data/seitzman_2018_ROIs_300inVol_MNI_allInfo.txt /usr/lib/python3.9/site-packages/nilearn/datasets/data/seitzman_2018_ROIs_anatomicalLabels.txt /usr/lib/python3.9/site-packages/nilearn/datasets/data/spm_confounds.txt /usr/lib/python3.9/site-packages/nilearn/datasets/data/test.mgz /usr/lib/python3.9/site-packages/nilearn/datasets/description /usr/lib/python3.9/site-packages/nilearn/datasets/description/ABIDE_pcp.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/Megatrawls.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/description/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/description/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/description/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/description/aal_SPM12.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/adhd.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/allen_rsn_2011.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/basc_multiscale_2015.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/brainomics_localizer.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/cobre.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/craddock_2012.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/destrieux_surface.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/development_fmri.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/difumo_atlases.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/dosenbach_2010.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/fsaverage.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/fsaverage3.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/fsaverage4.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/fsaverage5.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/fsaverage5_sphere.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/fsaverage6.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/haxby2001.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/icbm152_2009.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/miyawaki2008.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/msdl_atlas.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/neurovault.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/nki_enhanced_surface.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/nyu_rest.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/oasis1.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/pauli_2017.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/power_2011.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/schaefer_2018.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/seitzman_2018.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/smith_2009.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/talairach_atlas.rst /usr/lib/python3.9/site-packages/nilearn/datasets/description/yeo_2011.rst /usr/lib/python3.9/site-packages/nilearn/datasets/func.py /usr/lib/python3.9/site-packages/nilearn/datasets/neurovault.py /usr/lib/python3.9/site-packages/nilearn/datasets/struct.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_atlas.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_atlas.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_func.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_func.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_mocking_autoused.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_mocking_autoused.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_neurovault.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_neurovault.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_struct.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_struct.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_testing.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_testing.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/__pycache__/test_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/allen_2011.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/basc_multiscale_asym.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/basc_multiscale_sym.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/icbm152_2009.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/language_localizer.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/localizer_first_level.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/mixed_gambles.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/miyawaki2008.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/session1a.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/session1b.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/session2a.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/session2b.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/session3a.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/nyu_rest/session3b.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/__init__.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/__pycache__ /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/example.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/example_tar_gz.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/test_examples/example_zip.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/archive_contents/yeo_atlas.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/confounds_with_header.csv /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/craddock_2011_parcellations.tar.gz /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/list_archive_contents.sh /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/localizer_behavioural.tsv /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/localizer_index.json /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/localizer_participants.tsv /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/mmap.dat /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/spm_confounds.txt /usr/lib/python3.9/site-packages/nilearn/datasets/tests/data/test.mgz /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_atlas.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_func.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_mocking_autoused.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_neurovault.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_struct.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_testing.py /usr/lib/python3.9/site-packages/nilearn/datasets/tests/test_utils.py /usr/lib/python3.9/site-packages/nilearn/datasets/utils.py /usr/lib/python3.9/site-packages/nilearn/decoding /usr/lib/python3.9/site-packages/nilearn/decoding/__init__.py /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__ /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/decoder.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/decoder.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/fista.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/fista.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/objective_functions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/objective_functions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/proximal_operators.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/proximal_operators.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/searchlight.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/searchlight.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/space_net.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/space_net.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/space_net_solvers.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/__pycache__/space_net_solvers.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/decoder.py /usr/lib/python3.9/site-packages/nilearn/decoding/fista.py /usr/lib/python3.9/site-packages/nilearn/decoding/objective_functions.py /usr/lib/python3.9/site-packages/nilearn/decoding/proximal_operators.py /usr/lib/python3.9/site-packages/nilearn/decoding/searchlight.py /usr/lib/python3.9/site-packages/nilearn/decoding/space_net.py /usr/lib/python3.9/site-packages/nilearn/decoding/space_net_solvers.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_decoder.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_decoder.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_fista.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_fista.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_graph_net.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_graph_net.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_objective_functions.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_objective_functions.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_operators.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_operators.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_same_api.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_same_api.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_searchlight.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_searchlight.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_sklearn_compatibility.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_sklearn_compatibility.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_space_net.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_space_net.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_tv.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/__pycache__/test_tv.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decoding/tests/_utils.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_decoder.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_fista.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_graph_net.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_objective_functions.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_operators.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_same_api.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_searchlight.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_sklearn_compatibility.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_space_net.py /usr/lib/python3.9/site-packages/nilearn/decoding/tests/test_tv.py /usr/lib/python3.9/site-packages/nilearn/decomposition /usr/lib/python3.9/site-packages/nilearn/decomposition/__init__.py /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__ /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/_base.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/_base.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/_multi_pca.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/_multi_pca.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/canica.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/canica.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/dict_learning.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/__pycache__/dict_learning.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/_base.py /usr/lib/python3.9/site-packages/nilearn/decomposition/_multi_pca.py /usr/lib/python3.9/site-packages/nilearn/decomposition/canica.py /usr/lib/python3.9/site-packages/nilearn/decomposition/dict_learning.py /usr/lib/python3.9/site-packages/nilearn/decomposition/tests /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_base.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_base.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_canica.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_canica.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_dict_learning.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_dict_learning.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_multi_pca.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/__pycache__/test_multi_pca.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/test_base.py /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/test_canica.py /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/test_dict_learning.py /usr/lib/python3.9/site-packages/nilearn/decomposition/tests/test_multi_pca.py /usr/lib/python3.9/site-packages/nilearn/externals /usr/lib/python3.9/site-packages/nilearn/externals/README.md /usr/lib/python3.9/site-packages/nilearn/externals/__init__.py /usr/lib/python3.9/site-packages/nilearn/externals/__pycache__ /usr/lib/python3.9/site-packages/nilearn/externals/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/externals/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/externals/__pycache__/conftest.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/externals/__pycache__/conftest.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/externals/conftest.py /usr/lib/python3.9/site-packages/nilearn/externals/install_tempita.sh /usr/lib/python3.9/site-packages/nilearn/externals/tempita /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__init__.py /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__ /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__/_looper.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__/_looper.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__/compat3.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/externals/tempita/__pycache__/compat3.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/externals/tempita/_looper.py /usr/lib/python3.9/site-packages/nilearn/externals/tempita/compat3.py /usr/lib/python3.9/site-packages/nilearn/glm /usr/lib/python3.9/site-packages/nilearn/glm/__init__.py /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__ /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/_base.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/_base.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/contrasts.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/contrasts.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/model.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/model.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/regression.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/regression.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/thresholding.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/__pycache__/thresholding.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/_base.py /usr/lib/python3.9/site-packages/nilearn/glm/_utils.py /usr/lib/python3.9/site-packages/nilearn/glm/contrasts.py /usr/lib/python3.9/site-packages/nilearn/glm/first_level /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__init__.py /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__ /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/design_matrix.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/design_matrix.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/experimental_paradigm.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/experimental_paradigm.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/first_level.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/first_level.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/hemodynamic_models.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/__pycache__/hemodynamic_models.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/first_level/design_matrix.py /usr/lib/python3.9/site-packages/nilearn/glm/first_level/experimental_paradigm.py /usr/lib/python3.9/site-packages/nilearn/glm/first_level/first_level.py /usr/lib/python3.9/site-packages/nilearn/glm/first_level/hemodynamic_models.py /usr/lib/python3.9/site-packages/nilearn/glm/model.py /usr/lib/python3.9/site-packages/nilearn/glm/regression.py /usr/lib/python3.9/site-packages/nilearn/glm/second_level /usr/lib/python3.9/site-packages/nilearn/glm/second_level/__init__.py /usr/lib/python3.9/site-packages/nilearn/glm/second_level/__pycache__ /usr/lib/python3.9/site-packages/nilearn/glm/second_level/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/second_level/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/second_level/__pycache__/second_level.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/second_level/__pycache__/second_level.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/second_level/second_level.py /usr/lib/python3.9/site-packages/nilearn/glm/tests /usr/lib/python3.9/site-packages/nilearn/glm/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_check_events_file_uses_tab_separators.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_check_events_file_uses_tab_separators.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_contrasts.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_contrasts.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_dmtx.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_dmtx.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_first_level.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_first_level.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_hemodynamic_models.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_hemodynamic_models.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_model.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_model.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_paradigm.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_paradigm.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_regression.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_regression.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_second_level.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_second_level.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_thresholding.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_thresholding.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/__pycache__/test_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/glm/tests/spm_dmtx.npz /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_check_events_file_uses_tab_separators.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_contrasts.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_dmtx.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_first_level.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_hemodynamic_models.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_model.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_paradigm.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_regression.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_second_level.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_thresholding.py /usr/lib/python3.9/site-packages/nilearn/glm/tests/test_utils.py /usr/lib/python3.9/site-packages/nilearn/glm/thresholding.py /usr/lib/python3.9/site-packages/nilearn/image /usr/lib/python3.9/site-packages/nilearn/image/__init__.py /usr/lib/python3.9/site-packages/nilearn/image/__pycache__ /usr/lib/python3.9/site-packages/nilearn/image/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/__pycache__/image.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/__pycache__/image.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/__pycache__/resampling.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/__pycache__/resampling.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/image.py /usr/lib/python3.9/site-packages/nilearn/image/resampling.py /usr/lib/python3.9/site-packages/nilearn/image/tests /usr/lib/python3.9/site-packages/nilearn/image/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__/test_image.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__/test_image.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__/test_resampling.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/__pycache__/test_resampling.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/data /usr/lib/python3.9/site-packages/nilearn/image/tests/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/image/tests/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/image/tests/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/image/tests/data/test.mgz /usr/lib/python3.9/site-packages/nilearn/image/tests/test_image.py /usr/lib/python3.9/site-packages/nilearn/image/tests/test_resampling.py /usr/lib/python3.9/site-packages/nilearn/input_data /usr/lib/python3.9/site-packages/nilearn/input_data/__init__.py /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/base_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/base_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/multi_nifti_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/multi_nifti_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_labels_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_labels_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_maps_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_maps_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_spheres_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/__pycache__/nifti_spheres_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/input_data/base_masker.py /usr/lib/python3.9/site-packages/nilearn/input_data/multi_nifti_masker.py /usr/lib/python3.9/site-packages/nilearn/input_data/nifti_labels_masker.py /usr/lib/python3.9/site-packages/nilearn/input_data/nifti_maps_masker.py /usr/lib/python3.9/site-packages/nilearn/input_data/nifti_masker.py /usr/lib/python3.9/site-packages/nilearn/input_data/nifti_spheres_masker.py /usr/lib/python3.9/site-packages/nilearn/interfaces /usr/lib/python3.9/site-packages/nilearn/interfaces/__init__.py /usr/lib/python3.9/site-packages/nilearn/interfaces/__pycache__ /usr/lib/python3.9/site-packages/nilearn/interfaces/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/__pycache__/fsl.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/__pycache__/fsl.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__init__.py /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__ /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/glm.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/glm.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/query.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/__pycache__/query.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/_utils.py /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/glm.py /usr/lib/python3.9/site-packages/nilearn/interfaces/bids/query.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__init__.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__ /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_compcor.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_compcor.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_components.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_components.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_scrub.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_scrub.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_strategy.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_strategy.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/__pycache__/load_confounds_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/no_nonsteady_desc-confounds_regressors.tsv /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/test_desc-confounds_regressors.json /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/data/test_desc-confounds_regressors.tsv /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/load_confounds.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/load_confounds_compcor.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/load_confounds_components.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/load_confounds_scrub.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/load_confounds_strategy.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/load_confounds_utils.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds_scrub.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds_scrub.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds_strategy.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds_strategy.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/test_load_confounds_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/__pycache__/utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/test_load_confounds.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/test_load_confounds_scrub.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/test_load_confounds_strategy.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/test_load_confounds_utils.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fmriprep/tests/utils.py /usr/lib/python3.9/site-packages/nilearn/interfaces/fsl.py /usr/lib/python3.9/site-packages/nilearn/interfaces/tests /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__/test_bids.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__/test_bids.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__/test_fsl.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/__pycache__/test_fsl.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/test_bids.py /usr/lib/python3.9/site-packages/nilearn/interfaces/tests/test_fsl.py /usr/lib/python3.9/site-packages/nilearn/maskers /usr/lib/python3.9/site-packages/nilearn/maskers/__init__.py /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__ /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/_masker_validation.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/_masker_validation.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/base_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/base_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/multi_nifti_labels_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/multi_nifti_labels_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/multi_nifti_maps_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/multi_nifti_maps_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/multi_nifti_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/multi_nifti_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_labels_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_labels_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_maps_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_maps_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_spheres_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/__pycache__/nifti_spheres_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/_masker_validation.py /usr/lib/python3.9/site-packages/nilearn/maskers/base_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/multi_nifti_labels_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/multi_nifti_maps_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/multi_nifti_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/nifti_labels_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/nifti_maps_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/nifti_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/nifti_spheres_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_base_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_base_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_input_data.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_input_data.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_masker_validation.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_masker_validation.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_multi_nifti_labels_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_multi_nifti_labels_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_multi_nifti_maps_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_multi_nifti_maps_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_multi_nifti_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_multi_nifti_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_labels_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_labels_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_maps_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_maps_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_spheres_masker.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/__pycache__/test_nifti_spheres_masker.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_base_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_input_data.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_masker_validation.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_multi_nifti_labels_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_multi_nifti_maps_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_multi_nifti_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_nifti_labels_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_nifti_maps_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_nifti_masker.py /usr/lib/python3.9/site-packages/nilearn/maskers/tests/test_nifti_spheres_masker.py /usr/lib/python3.9/site-packages/nilearn/masking.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__init__.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__ /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__/_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__/_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__/permuted_least_squares.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/__pycache__/permuted_least_squares.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/_utils.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate/permuted_least_squares.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/test__utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/test__utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/test_permuted_least_squares.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/test_permuted_least_squares.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/__pycache__/utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/test__utils.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/test_permuted_least_squares.py /usr/lib/python3.9/site-packages/nilearn/mass_univariate/tests/utils.py /usr/lib/python3.9/site-packages/nilearn/plotting /usr/lib/python3.9/site-packages/nilearn/plotting/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/cm.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/cm.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/edge_detect.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/edge_detect.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/find_cuts.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/find_cuts.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/glass_brain.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/glass_brain.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_connectome.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_connectome.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_document.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_document.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_stat_map.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_stat_map.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_surface.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/html_surface.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/img_plotting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/img_plotting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/js_plotting_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/js_plotting_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/matrix_plotting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/matrix_plotting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/rm_file.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/rm_file.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/surf_plotting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/__pycache__/surf_plotting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/cm.py /usr/lib/python3.9/site-packages/nilearn/plotting/data /usr/lib/python3.9/site-packages/nilearn/plotting/data/README.txt /usr/lib/python3.9/site-packages/nilearn/plotting/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/data/html /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/connectome_plot_template.html /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/stat_map_template.html /usr/lib/python3.9/site-packages/nilearn/plotting/data/html/surface_plot_template.html /usr/lib/python3.9/site-packages/nilearn/plotting/data/js /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/brainsprite.min.js /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/jquery.min.js /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/plotly-gl3d-latest.min.js /usr/lib/python3.9/site-packages/nilearn/plotting/data/js/surface-plot-utils.js /usr/lib/python3.9/site-packages/nilearn/plotting/displays /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_axes.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_axes.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_figures.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_figures.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_projectors.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_projectors.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_slicers.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/__pycache__/_slicers.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/displays/_axes.py /usr/lib/python3.9/site-packages/nilearn/plotting/displays/_figures.py /usr/lib/python3.9/site-packages/nilearn/plotting/displays/_projectors.py /usr/lib/python3.9/site-packages/nilearn/plotting/displays/_slicers.py /usr/lib/python3.9/site-packages/nilearn/plotting/edge_detect.py /usr/lib/python3.9/site-packages/nilearn/plotting/find_cuts.py /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain.py /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/README.md /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__/plot_align_svg.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__/plot_align_svg.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__/svg_to_json_converter.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/__pycache__/svg_to_json_converter.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_back.json /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_back.svg /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_front.json /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_front.svg /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_side.json /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_side.svg /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_top.json /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/brain_schematics_top.svg /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/generate_json.sh /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/plot_align_svg.py /usr/lib/python3.9/site-packages/nilearn/plotting/glass_brain_files/svg_to_json_converter.py /usr/lib/python3.9/site-packages/nilearn/plotting/html_connectome.py /usr/lib/python3.9/site-packages/nilearn/plotting/html_document.py /usr/lib/python3.9/site-packages/nilearn/plotting/html_stat_map.py /usr/lib/python3.9/site-packages/nilearn/plotting/html_surface.py /usr/lib/python3.9/site-packages/nilearn/plotting/img_plotting.py /usr/lib/python3.9/site-packages/nilearn/plotting/js_plotting_utils.py /usr/lib/python3.9/site-packages/nilearn/plotting/matrix_plotting.py /usr/lib/python3.9/site-packages/nilearn/plotting/rm_file.py /usr/lib/python3.9/site-packages/nilearn/plotting/surf_plotting.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_cm.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_cm.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_displays.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_displays.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_edge_detect.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_edge_detect.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_find_cuts.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_find_cuts.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_connectome.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_connectome.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_document.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_document.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_stat_map.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_stat_map.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_surface.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_html_surface.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_js_plotting_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_js_plotting_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_matplotlib_backend.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_matplotlib_backend.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_matrix_plotting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_matrix_plotting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_surf_plotting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/__pycache__/test_surf_plotting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_cm.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_displays.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_edge_detect.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_find_cuts.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_html_connectome.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_html_document.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_html_stat_map.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_html_surface.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__init__.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__ /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_get_colorbar_and_data_ranges.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_get_colorbar_and_data_ranges.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_img_plotting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_img_plotting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_anat.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_anat.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_carpet.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_carpet.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_connectome.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_connectome.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_glass_brain.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_glass_brain.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_img.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_img.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_img_comparisons.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_img_comparisons.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_markers.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_markers.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_prob_atlas.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_prob_atlas.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_roi.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_roi.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_stat_map.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/test_plot_stat_map.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/testing_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/__pycache__/testing_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_get_colorbar_and_data_ranges.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_img_plotting.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_anat.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_carpet.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_connectome.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_glass_brain.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_img.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_img_comparisons.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_markers.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_prob_atlas.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_roi.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/test_plot_stat_map.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_img_plotting/testing_utils.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_js_plotting_utils.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_matplotlib_backend.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_matrix_plotting.py /usr/lib/python3.9/site-packages/nilearn/plotting/tests/test_surf_plotting.py /usr/lib/python3.9/site-packages/nilearn/regions /usr/lib/python3.9/site-packages/nilearn/regions/__init__.py /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__ /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/hierarchical_kmeans_clustering.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/hierarchical_kmeans_clustering.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/parcellations.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/parcellations.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/region_extractor.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/region_extractor.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/rena_clustering.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/rena_clustering.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/signal_extraction.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/__pycache__/signal_extraction.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/hierarchical_kmeans_clustering.py /usr/lib/python3.9/site-packages/nilearn/regions/parcellations.py /usr/lib/python3.9/site-packages/nilearn/regions/region_extractor.py /usr/lib/python3.9/site-packages/nilearn/regions/rena_clustering.py /usr/lib/python3.9/site-packages/nilearn/regions/signal_extraction.py /usr/lib/python3.9/site-packages/nilearn/regions/tests /usr/lib/python3.9/site-packages/nilearn/regions/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_hierarchical_kmeans_clustering.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_hierarchical_kmeans_clustering.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_parcellations.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_parcellations.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_region_extractor.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_region_extractor.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_rena_clustering.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_rena_clustering.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_signal_extraction.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/__pycache__/test_signal_extraction.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/regions/tests/test_hierarchical_kmeans_clustering.py /usr/lib/python3.9/site-packages/nilearn/regions/tests/test_parcellations.py /usr/lib/python3.9/site-packages/nilearn/regions/tests/test_region_extractor.py /usr/lib/python3.9/site-packages/nilearn/regions/tests/test_rena_clustering.py /usr/lib/python3.9/site-packages/nilearn/regions/tests/test_signal_extraction.py /usr/lib/python3.9/site-packages/nilearn/reporting /usr/lib/python3.9/site-packages/nilearn/reporting/__init__.py /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__ /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/_get_clusters_table.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/_get_clusters_table.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/glm_reporter.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/glm_reporter.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/html_report.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/html_report.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/__pycache__/utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/_get_clusters_table.py /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/__init__.py /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/__pycache__ /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/__pycache__/_glm_reporter_visual_inspection_suite_.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/__pycache__/_glm_reporter_visual_inspection_suite_.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/_visual_testing/_glm_reporter_visual_inspection_suite_.py /usr/lib/python3.9/site-packages/nilearn/reporting/data /usr/lib/python3.9/site-packages/nilearn/reporting/data/README.txt /usr/lib/python3.9/site-packages/nilearn/reporting/data/html /usr/lib/python3.9/site-packages/nilearn/reporting/data/html/report_body_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/data/html/report_body_template_niftilabelsmasker.html /usr/lib/python3.9/site-packages/nilearn/reporting/data/html/report_body_template_niftimapsmasker.html /usr/lib/python3.9/site-packages/nilearn/reporting/data/html/report_head_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter.py /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter_templates /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter_templates/contrast_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter_templates/design_matrix_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter_templates/report_body_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter_templates/report_head_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/glm_reporter_templates/stat_maps_contrast_clusters_template.html /usr/lib/python3.9/site-packages/nilearn/reporting/html_report.py /usr/lib/python3.9/site-packages/nilearn/reporting/tests /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/test_glm_reporter.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/test_glm_reporter.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/test_html_report.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/test_html_report.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/test_reporting.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/__pycache__/test_reporting.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/reporting/tests/test_glm_reporter.py /usr/lib/python3.9/site-packages/nilearn/reporting/tests/test_html_report.py /usr/lib/python3.9/site-packages/nilearn/reporting/tests/test_reporting.py /usr/lib/python3.9/site-packages/nilearn/reporting/utils.py /usr/lib/python3.9/site-packages/nilearn/signal.py /usr/lib/python3.9/site-packages/nilearn/surface /usr/lib/python3.9/site-packages/nilearn/surface/__init__.py /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__ /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__/surface.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__/surface.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__/testing_utils.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/__pycache__/testing_utils.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/data /usr/lib/python3.9/site-packages/nilearn/surface/data/README.md /usr/lib/python3.9/site-packages/nilearn/surface/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/surface/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/surface/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/data/ball_cloud_10_samples.csv /usr/lib/python3.9/site-packages/nilearn/surface/data/ball_cloud_160_samples.csv /usr/lib/python3.9/site-packages/nilearn/surface/data/ball_cloud_20_samples.csv /usr/lib/python3.9/site-packages/nilearn/surface/data/ball_cloud_40_samples.csv /usr/lib/python3.9/site-packages/nilearn/surface/data/ball_cloud_80_samples.csv /usr/lib/python3.9/site-packages/nilearn/surface/surface.py /usr/lib/python3.9/site-packages/nilearn/surface/testing_utils.py /usr/lib/python3.9/site-packages/nilearn/surface/tests /usr/lib/python3.9/site-packages/nilearn/surface/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/surface/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/surface/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/tests/__pycache__/test_surface.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/tests/__pycache__/test_surface.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/tests/data /usr/lib/python3.9/site-packages/nilearn/surface/tests/data/__init__.py /usr/lib/python3.9/site-packages/nilearn/surface/tests/data/__pycache__ /usr/lib/python3.9/site-packages/nilearn/surface/tests/data/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/surface/tests/data/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/surface/tests/data/test.annot /usr/lib/python3.9/site-packages/nilearn/surface/tests/data/test.label /usr/lib/python3.9/site-packages/nilearn/surface/tests/test_surface.py /usr/lib/python3.9/site-packages/nilearn/tests /usr/lib/python3.9/site-packages/nilearn/tests/__init__.py /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__ /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/__init__.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/__init__.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/test_init.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/test_init.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/test_masking.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/test_masking.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/test_signal.cpython-39.opt-1.pyc /usr/lib/python3.9/site-packages/nilearn/tests/__pycache__/test_signal.cpython-39.pyc /usr/lib/python3.9/site-packages/nilearn/tests/data /usr/lib/python3.9/site-packages/nilearn/tests/data/confounds_with_header.csv /usr/lib/python3.9/site-packages/nilearn/tests/data/spm_confounds.txt /usr/lib/python3.9/site-packages/nilearn/tests/test_init.py /usr/lib/python3.9/site-packages/nilearn/tests/test_masking.py /usr/lib/python3.9/site-packages/nilearn/tests/test_signal.py /usr/share/doc/packages/python39-nilearn /usr/share/doc/packages/python39-nilearn/AUTHORS.rst /usr/share/doc/packages/python39-nilearn/README.rst /usr/share/licenses/python39-nilearn /usr/share/licenses/python39-nilearn/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Oct 31 00:18:02 2025