diff --git a/unravel/docs/_build/doctrees/guide.doctree b/unravel/docs/_build/doctrees/guide.doctree index 07ba0e77..7debc9bd 100644 Binary files a/unravel/docs/_build/doctrees/guide.doctree and b/unravel/docs/_build/doctrees/guide.doctree differ diff --git a/unravel/docs/_build/doctrees/unravel/utilities/points_compressor.doctree b/unravel/docs/_build/doctrees/unravel/utilities/points_compressor.doctree new file mode 100644 index 00000000..2aef4717 Binary files /dev/null and b/unravel/docs/_build/doctrees/unravel/utilities/points_compressor.doctree differ diff --git a/unravel/docs/_build/doctrees/unravel/utilities/toc.doctree b/unravel/docs/_build/doctrees/unravel/utilities/toc.doctree index a6ca19ca..b8df31fb 100644 Binary files a/unravel/docs/_build/doctrees/unravel/utilities/toc.doctree and b/unravel/docs/_build/doctrees/unravel/utilities/toc.doctree differ diff --git a/unravel/docs/_build/html/_modules/index.html b/unravel/docs/_build/html/_modules/index.html index 870997cd..facb0032 100644 --- a/unravel/docs/_build/html/_modules/index.html +++ b/unravel/docs/_build/html/_modules/index.html @@ -420,6 +420,7 @@

All modules for which code is available

  • unravel.utilities.aggregate_files_from_sample_dirs
  • unravel.utilities.aggregate_files_recursively
  • unravel.utilities.clean_tif_dirs
  • +
  • unravel.utilities.points_compressor
  • unravel.utilities.prepend_conditions
  • unravel.utilities.rename
  • unravel.utilities.toggle_samples
  • diff --git a/unravel/docs/_build/html/_modules/unravel/unravel_commands.html b/unravel/docs/_build/html/_modules/unravel/unravel_commands.html index ce8bdeaa..5b961585 100644 --- a/unravel/docs/_build/html/_modules/unravel/unravel_commands.html +++ b/unravel/docs/_build/html/_modules/unravel/unravel_commands.html @@ -853,6 +853,11 @@

    Source code for unravel.unravel_commands

                     "module": "unravel.utilities.clean_tif_dirs",
                     "description": "Clean TIF directories (no spaces, move non-tifs).",
                     "common": False
    +            },
    +            "utils_points_compressor": {
    +                "module": "unravel.utilities.points_compressor",
    +                "description": "Pack or unpack point data in a CSV file or summarize the number of points per region.",
    +                "common": False
                 }
             }
         }
    diff --git a/unravel/docs/_build/html/_modules/unravel/utilities/points_compressor.html b/unravel/docs/_build/html/_modules/unravel/utilities/points_compressor.html
    new file mode 100644
    index 00000000..190e0c1b
    --- /dev/null
    +++ b/unravel/docs/_build/html/_modules/unravel/utilities/points_compressor.html
    @@ -0,0 +1,613 @@
    +
    +
    +
    +
    +
    +
    +  
    +    
    +    
    +    unravel.utilities.points_compressor — UNRAVEL docs
    +  
    +  
    +  
    +  
    +  
    +  
    +  
    +
    +
    +
    +  
    +  
    +  
    +
    +
    +
    +    
    +    
    +    
    +    
    +  
    +  
    +  
    +
    +  
    +
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +  
    +  
    +  
    +  
    +  
    +  
    +
    +  
    +  
    +  
    +  
    +  
    + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    + + + + + +
    +
    + + + + + +
    + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    + +
    + +
    + + + + +
    + +
    + + +
    +
    + + + + + +
    + +

    Source code for unravel.utilities.points_compressor

    +#!/usr/bin/env python3
    +
    +"""
    +Use ``utils_points_compressor`` from UNRAVEL to pack or unpack point data in a CSV file or summarize the number of points per region.
    +
    +Packing: Group points with the same coordinates and `Region_ID`, adding a `count` column.
    +Unpacking: Expand packed points back to individual rows based on the `count` column.
    +Summary: Output a CSV summarizing the number of points per region.
    +
    +Usage:
    +------
    +    utils_points_compressor -i path/<asterisk>_points.csv [-p or -u or -s] [-v]
    +
    +Input:
    +    CSV file with either unpacked (`x, y, z, Region_ID`) or packed (`x, y, z, Region_ID, count`) format.
    +
    +Output:
    +    CSV file with the desired packed or unpacked format.
    +    Optionally, a summary CSV with the number of points per region.
    +
    +Note:
    +    - Use only one of the following options: -p, -u, -s.
    +    - The summary option can be used with either packed or unpacked data.
    +"""
    +
    +import argparse
    +import pandas as pd
    +from pathlib import Path
    +from rich import print
    +from rich.traceback import install
    +
    +from unravel.core.argparse_utils import SM, SuppressMetavar
    +from unravel.core.config import Configuration
    +from unravel.core.utils import log_command, verbose_start_msg, verbose_end_msg, print_func_name_args_times, process_files_with_glob
    +
    +
    +
    +[docs] +def parse_args(): + parser = argparse.ArgumentParser(formatter_class=SuppressMetavar) + parser.add_argument('-i', '--input', help="Path to the input CSV file or a glob pattern.", required=True, action=SM) + parser.add_argument('-p', '--pack', help="Pack the points by grouping them.", action='store_true') + parser.add_argument('-u', '--unpack', help="Unpack the points by expanding them based on the `count` column.", action='store_true') + parser.add_argument('-s', '--summary', help='Output a CSV summarizing the number of points per region.', action='store_true') + parser.add_argument('-v', '--verbose', help='Increase verbosity.', action='store_true', default=False) + parser.epilog = __doc__ + return parser.parse_args()
    + + +
    +[docs] +@print_func_name_args_times() +def pack_points(df): + """ + Pack points by grouping identical coordinates and summing their occurrences. + + Parameters: + ----------- + df : pandas.DataFrame + DataFrame with columns ['x', 'y', 'z', 'Region_ID'] + + Returns: + -------- + packed_df : pandas.DataFrame + DataFrame with columns ['x', 'y', 'z', 'Region_ID', 'count'] + """ + packed_df = df.groupby(['x', 'y', 'z', 'Region_ID']).size().reset_index(name='count') + return packed_df
    + + +
    +[docs] +@print_func_name_args_times() +def unpack_points(df): + """ + Unpack points by expanding them based on the `count` column. + + Parameters: + ----------- + df : pandas.DataFrame + DataFrame with columns ['x', 'y', 'z', 'Region_ID', 'count'] + + Returns: + -------- + unpacked_df : pandas.DataFrame + DataFrame with columns ['x', 'y', 'z', 'Region_ID'] + """ + # Repeat rows based on the 'count' column + unpacked_df = df.loc[df.index.repeat(df['count'])].drop(columns=['count']).reset_index(drop=True) + return unpacked_df
    + + +
    +[docs] +@print_func_name_args_times() +def summarize_points(df): + """ + Summarize points by counting the number of points per `Region_ID`. + + Parameters: + ----------- + df : pandas.DataFrame + DataFrame with columns ['x', 'y', 'z', 'Region_ID'] or ['x', 'y', 'z', 'Region_ID', 'count'] + + Returns: + -------- + summary_df : pandas.DataFrame + DataFrame with columns ['Region_ID', 'count'] summarizing the number of points per region. + """ + if 'count' in df.columns: + summary_df = df.groupby('Region_ID')['count'].sum().reset_index(name='count') + else: + summary_df = df['Region_ID'].value_counts().reset_index() + summary_df.columns = ['Region_ID', 'count'] + return summary_df
    + + +
    +[docs] +@print_func_name_args_times() +def points_compressor(file_path, pack=False, unpack=False, summary=False): + """ + Pack, unpack, or summarize points in a CSV file. + + Parameters: + ----------- + file_path : str + Path to the input CSV file. + + pack : bool, optional + Pack the points by grouping them. + + unpack : bool, optional + Unpack the points by expanding them based on the `count` column. + + summary : bool, optional + Output a CSV summarizing the number of points per region. + """ + + file_path = str(file_path) + df = pd.read_csv(file_path) + output_path = None + + if pack: + if 'count' in df.columns: + print(f"\n [red1 bold]Skipping packing:[/] '{file_path}' is already packed.") + return + df = pack_points(df) + output_path = file_path.replace('.csv', '_packed.csv') + elif unpack: + if 'count' not in df.columns: + print(f"\n [red1 bold]Skipping unpacking:[/] '{file_path}' is already unpacked.") + return + df = unpack_points(df) + output_path = file_path.replace('.csv', '_unpacked.csv') + elif summary: + df = summarize_points(df) + output_path = file_path.replace('.csv', '_summary.csv') + + output_path = Path(output_path) + output_path.parent.mkdir(parents=True, exist_ok=True) + df.to_csv(output_path, index=False) + print(f"\n Points saved to {output_path}\n")
    + + + +
    +[docs] +@log_command +def main(): + install() + args = parse_args() + Configuration.verbose = args.verbose + verbose_start_msg() + + process_files_with_glob( + glob_pattern=args.input, + processing_func=points_compressor, + pack=args.pack, + unpack=args.unpack, + summary=args.summary + ) + + verbose_end_msg()
    + + + +if __name__ == '__main__': + main() +
    + +
    + + + + + +
    + +
    +
    +
    + +
    + + + + +
    +
    + +
    + +
    +
    +
    + + + + + +
    + + +
    + + \ No newline at end of file diff --git a/unravel/docs/_build/html/_sources/guide.md.txt b/unravel/docs/_build/html/_sources/guide.md.txt index 17e2cdea..3cbe7615 100644 --- a/unravel/docs/_build/html/_sources/guide.md.txt +++ b/unravel/docs/_build/html/_sources/guide.md.txt @@ -410,6 +410,7 @@ unravel_commands -m - [**utils_rename**](unravel.utilities.rename): Rename files. - [**utils_toggle**](unravel.utilities.toggle_samples): Toggle sample?? folders for select batch processing. - [**utils_clean_tifs**](unravel.utilities.clean_tif_dirs): Clean TIF directories (no spaces, move non-tifs). +- [**utils_points_compressor**](unravel.utilities.points_compressor): Pack or unpack point data in a CSV file or summarize the number of points per region. ::: :::: diff --git a/unravel/docs/_build/html/_sources/unravel/utilities/points_compressor.rst.txt b/unravel/docs/_build/html/_sources/unravel/utilities/points_compressor.rst.txt new file mode 100644 index 00000000..bcf4f6cd --- /dev/null +++ b/unravel/docs/_build/html/_sources/unravel/utilities/points_compressor.rst.txt @@ -0,0 +1,9 @@ +.. _unravel.utilities.points_compressor: + +unravel.utilities.points_compressor module +========================================== + +.. automodule:: unravel.utilities.points_compressor + :members: + :undoc-members: + :show-inheritance: diff --git a/unravel/docs/_build/html/_sources/unravel/utilities/toc.rst.txt b/unravel/docs/_build/html/_sources/unravel/utilities/toc.rst.txt index 1296f23a..0c18f279 100644 --- a/unravel/docs/_build/html/_sources/unravel/utilities/toc.rst.txt +++ b/unravel/docs/_build/html/_sources/unravel/utilities/toc.rst.txt @@ -10,6 +10,7 @@ unravel.utilities package prepend_conditions rename toggle_samples + points_compressor .. automodule:: unravel.utilities :members: diff --git a/unravel/docs/_build/html/genindex.html b/unravel/docs/_build/html/genindex.html index 4cf0cb6f..cb5a31f3 100644 --- a/unravel/docs/_build/html/genindex.html +++ b/unravel/docs/_build/html/genindex.html @@ -807,6 +807,8 @@

    M

  • (in module unravel.utilities.aggregate_files_recursively)
  • (in module unravel.utilities.clean_tif_dirs) +
  • +
  • (in module unravel.utilities.points_compressor)
  • (in module unravel.utilities.prepend_conditions)
  • @@ -1010,6 +1012,8 @@

    M

  • unravel.utilities.aggregate_files_recursively
  • unravel.utilities.clean_tif_dirs +
  • +
  • unravel.utilities.points_compressor
  • unravel.utilities.prepend_conditions
  • @@ -1082,6 +1086,8 @@

    O

    P

    + + +
    +
  • points_compressor() (in module unravel.utilities.points_compressor) +
  • points_to_img() (in module unravel.image_io.points_to_img)
  • prepend_conditions() (in module unravel.utilities.prepend_conditions) @@ -1425,6 +1435,8 @@

    S

  • spatial_average_3D() (in module unravel.image_tools.spatial_averaging)
  • split_clusters_based_on_effect() (in module unravel.cluster_stats.fdr) +
  • +
  • summarize_points() (in module unravel.utilities.points_compressor)
  • summarize_significance() (in module unravel.region_stats.rstats_summary)
  • @@ -1463,6 +1475,8 @@

    U

  • undo_fill_with_original() (in module unravel.cluster_stats.table)
  • uniq_intensities() (in module unravel.image_tools.unique_intensities) +
  • +
  • unpack_points() (in module unravel.utilities.points_compressor)
  • unravel.cluster_stats.brain_model @@ -1982,6 +1996,13 @@

    U

  • +
  • + unravel.utilities.points_compressor + +
  • diff --git a/unravel/docs/_build/html/guide.html b/unravel/docs/_build/html/guide.html index ec7de51e..807640c8 100644 --- a/unravel/docs/_build/html/guide.html +++ b/unravel/docs/_build/html/guide.html @@ -868,6 +868,7 @@

    Common commandsutils_rename: Rename files.

  • utils_toggle: Toggle sample?? folders for select batch processing.

  • utils_clean_tifs: Clean TIF directories (no spaces, move non-tifs).

  • +
  • utils_points_compressor: Pack or unpack point data in a CSV file or summarize the number of points per region.

  • diff --git a/unravel/docs/_build/html/index.html b/unravel/docs/_build/html/index.html index b849bcc5..3dfd9d6f 100644 --- a/unravel/docs/_build/html/index.html +++ b/unravel/docs/_build/html/index.html @@ -649,6 +649,7 @@

    Support is welcome forunravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/objects.inv b/unravel/docs/_build/html/objects.inv index 31124be9..8bbc05c3 100644 Binary files a/unravel/docs/_build/html/objects.inv and b/unravel/docs/_build/html/objects.inv differ diff --git a/unravel/docs/_build/html/py-modindex.html b/unravel/docs/_build/html/py-modindex.html index 75c6ce04..c1a5a860 100644 --- a/unravel/docs/_build/html/py-modindex.html +++ b/unravel/docs/_build/html/py-modindex.html @@ -709,6 +709,11 @@

    Python Module Index

        unravel.utilities.clean_tif_dirs
        + unravel.utilities.points_compressor +
        diff --git a/unravel/docs/_build/html/searchindex.js b/unravel/docs/_build/html/searchindex.js index 476b5b64..95bae57e 100644 --- a/unravel/docs/_build/html/searchindex.js +++ b/unravel/docs/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"3 letter orientation code": [[0, null]], "Add images to sample?? dirs": [[0, "add-images-to-sample-dirs"]], "Additional contributions from": [[1, "additional-contributions-from"]], "All commands": [[0, null]], "Allen brain atlas coloring": [[0, null]], "Analysis steps": [[0, "analysis-steps"]], "Automatic logging of scripts": [[0, null]], "Back up raw data": [[0, "back-up-raw-data"]], "Background subtraction": [[0, null]], "Batch stitching settings": [[0, null]], "CLI usage:": [[105, "cli-usage"]], "Checking changes between versions": [[2, null]], "Cluster correction": [[0, "cluster-correction"]], "Cluster validation": [[0, "cluster-validation"]], "Common commands": [[0, "common-commands"]], "Contact us": [[1, "contact-us"]], "Contents:": [[1, null]], "Data can be distributed across multiple drives": [[0, null]], "Define common variables in a shell script": [[0, "define-common-variables-in-a-shell-script"]], "Developers": [[1, "developers"]], "Example experiment folder structure after analysis": [[0, "example-experiment-folder-structure-after-analysis"]], "Example sample?? folder structure after analysis": [[0, "example-sample-folder-structure-after-analysis"]], "Example:": [[44, "example"]], "Get started with analysis": [[2, "get-started-with-analysis"]], "Getting started": [[1, "getting-started"]], "Guide": [[0, "guide"]], "Help on commands": [[0, "help-on-commands"]], "Helper Functions:": [[30, "helper-functions"]], "If sample orientations vary": [[0, null]], "Indices": [[1, "indices"]], "Installation": [[2, "installation"]], "Installing UNRAVEL on Linux or WSL": [[2, "installing-unravel-on-linux-or-wsl"]], "Installing WSL:": [[2, "installing-wsl"]], "Listing commands": [[0, "listing-commands"]], "Log exp paths, commands, etc.": [[0, "log-exp-paths-commands-etc"]], "Main Functions:": [[30, "main-functions"]], "Main dependencies": [[1, "main-dependencies"]], "Make a sample_key.csv:": [[0, "make-a-sample-key-csv"]], "Make an exp_notes.txt": [[0, null]], "Make sample folders": [[0, "make-sample-folders"]], "Module contents": [[82, "module-contents"]], "More info on commands": [[0, null]], "Name sample folders like sample01, sample02, \u2026": [[0, null]], "Note x/y and z voxel sizes": [[0, "note-x-y-and-z-voxel-sizes"]], "Notes:": [[36, "notes"], [44, "notes"]], "Open source options for stitching": [[0, null]], "Optional: clean tifs": [[0, "optional-clean-tifs"]], "Output:": [[65, "output"], [65, "id3"], [65, "id5"]], "Overview and steps for voxel-wise stats": [[0, null]], "Parameters:": [[30, "parameters"], [30, "id1"], [30, "id3"], [33, "parameters"], [36, "parameters"], [44, "parameters"], [44, "id1"], [44, "id3"], [59, "parameters"], [60, "parameters"], [65, "parameters"], [65, "id1"], [65, "id4"]], "Python usage:": [[71, "python-usage"], [105, "python-usage"]], "Region-wise stats": [[0, "region-wise-stats"]], "Registration": [[0, "registration"]], "Returns:": [[30, "returns"], [30, "id2"], [30, "id4"], [36, "returns"], [44, "returns"], [44, "id2"], [44, "id4"], [59, "returns"], [60, "returns"], [65, "returns"], [65, "id2"]], "Running batch stitching": [[0, null]], "Segmentation": [[0, "segmentation"]], "Set up": [[0, "set-up"]], "Setting Up Windows Subsystem for Linux (WSL)": [[2, "setting-up-windows-subsystem-for-linux-wsl"]], "Sorting by hierarchy and volume:": [[24, "sorting-by-hierarchy-and-volume"]], "Stitch z-stacks": [[0, "stitch-z-stacks"]], "Subpackages": [[82, "subpackages"]], "Support is welcome for": [[1, "support-is-welcome-for"]], "Syntax": [[0, null]], "T-test usage:": [[5, "t-test-usage"]], "TL;DR": [[2, "tl-dr"]], "Terminal command cheat sheet": [[0, null]], "Todo": [[0, "id1"], [0, "id3"]], "Train an Ilastik project": [[0, "train-an-ilastik-project"], [0, null]], "Tukey\u2019s test usage:": [[5, "tukey-s-test-usage"]], "Typical workflow": [[0, "typical-workflow"]], "UN-biased high-Resolution Analysis and Validation of Ensembles using Light sheet images": [[1, "un-biased-high-resolution-analysis-and-validation-of-ensembles-using-light-sheet-images"]], "UNRAVEL visualizer": [[1, "unravel-visualizer"]], "Usage": [[4, "usage"], [6, "usage"], [8, "usage"], [10, "usage"], [11, "usage"], [12, "usage"], [13, "usage"], [16, "usage"], [18, "usage"], [19, "usage"], [20, "usage"], [67, "usage"]], "Usage for Tukey\u2019s tests w/ reordering and renaming of conditions:": [[17, "usage-for-tukey-s-tests-w-reordering-and-renaming-of-conditions"], [68, "usage-for-tukey-s-tests-w-reordering-and-renaming-of-conditions"]], "Usage for activating sample?? dirs for certain conditions:": [[90, "usage-for-activating-sample-dirs-for-certain-conditions"]], "Usage for atlas to atlas registration:": [[72, "usage-for-atlas-to-atlas-registration"]], "Usage for forward warping atlas to tissue space:": [[107, "usage-for-forward-warping-atlas-to-tissue-space"]], "Usage for inverse warping tissue to atlas space:": [[107, "usage-for-inverse-warping-tissue-to-atlas-space"]], "Usage for printing all non-zero intensities:": [[64, "usage-for-printing-all-non-zero-intensities"]], "Usage for printing the number of voxels for each intensity that is present:": [[64, "usage-for-printing-the-number-of-voxels-for-each-intensity-that-is-present"]], "Usage for printing unique intensities w/ a min cluster size > 100 voxels:": [[64, "usage-for-printing-unique-intensities-w-a-min-cluster-size-100-voxels"]], "Usage for renaming directories:": [[88, "usage-for-renaming-directories"]], "Usage for renaming files:": [[88, "usage-for-renaming-files"]], "Usage for t-tests:": [[17, "usage-for-t-tests"], [68, "usage-for-t-tests"]], "Usage for template to template registration:": [[72, "usage-for-template-to-template-registration"]], "Usage for tissue registration:": [[72, "usage-for-tissue-registration"]], "Usage for toggling all sample?? dirs to active:": [[90, "usage-for-toggling-all-sample-dirs-to-active"]], "Usage for when metadata is extractable:": [[39, "usage-for-when-metadata-is-extractable"]], "Usage for when metadata is not extractable:": [[39, "usage-for-when-metadata-is-not-extractable"]], "Usage for when sample?? is already in the name of files being copied:": [[84, "usage-for-when-sample-is-already-in-the-name-of-files-being-copied"]], "Usage for z-score scaling (if 8 bit is needed):": [[38, "usage-for-z-score-scaling-if-8-bit-is-needed"]], "Usage if running after cstats_validation and cstats_org_data:": [[22, "usage-if-running-after-cstats-validation-and-cstats-org-data"]], "Usage if running directly after cstats_validation:": [[22, "usage-if-running-directly-after-cstats-validation"]], "Usage if the atlas is already in native space from warp_to_native:": [[65, "usage-if-the-atlas-is-already-in-native-space-from-warp-to-native"]], "Usage if the native atlas is not available; it is not saved (faster):": [[65, "usage-if-the-native-atlas-is-not-available-it-is-not-saved-faster"]], "Usage to prep for seg_brain_mask:": [[78, "usage-to-prep-for-seg-brain-mask"]], "Usage to prep for seg_ilastik to segment full resolution immunofluorescence images:": [[78, "usage-to-prep-for-seg-ilastik-to-segment-full-resolution-immunofluorescence-images"]], "Usage to prepend sample?? to the name of files being copied:": [[84, "usage-to-prepend-sample-to-the-name-of-files-being-copied"]], "Usage to print all commands and module names:": [[83, "usage-to-print-all-commands-and-module-names"]], "Usage to print commands matching a specific string:": [[83, "usage-to-print-commands-matching-a-specific-string"]], "Usage to print common commands and descriptions:": [[83, "usage-to-print-common-commands-and-descriptions"]], "Usage to replace voxels in image with the mean intensity in the brain where mask > 0:": [[91, "usage-to-replace-voxels-in-image-with-the-mean-intensity-in-the-brain-where-mask-0"]], "Usage to zero out voxels in image where mask < 1 (e.g., to preserve signal from segmented microglia clusters):": [[91, "usage-to-zero-out-voxels-in-image-where-mask-1-e-g-to-preserve-signal-from-segmented-microglia-clusters"]], "Usage to zero out voxels in image where mask > 0 (e.g., to exclude voxels representing artifacts):": [[91, "usage-to-zero-out-voxels-in-image-where-mask-0-e-g-to-exclude-voxels-representing-artifacts"]], "Usage w/ a tissue mask (warped to atlas space):": [[101, "usage-w-a-tissue-mask-warped-to-atlas-space"]], "Usage w/ additional options:": [[98, "usage-w-additional-options"]], "Usage w/ an atlas mask (warped to atlas space):": [[101, "usage-w-an-atlas-mask-warped-to-atlas-space"]], "Usage w/ both masks for side-specific z-scoring:": [[101, "usage-w-both-masks-for-side-specific-z-scoring"]], "Usage with a custom atlas:": [[68, "usage-with-a-custom-atlas"]], "Usage:": [[3, "usage"], [14, "usage"], [15, "usage"], [21, "usage"], [23, "usage"], [24, "usage"], [26, "usage"], [34, "usage"], [35, "usage"], [36, "usage"], [37, "usage"], [38, "usage"], [40, "usage"], [41, "usage"], [42, "usage"], [43, "usage"], [44, "usage"], [45, "usage"], [46, "usage"], [48, "usage"], [49, "usage"], [50, "usage"], [52, "usage"], [53, "usage"], [54, "usage"], [56, "usage"], [57, "usage"], [58, "usage"], [59, "usage"], [60, "usage"], [61, "usage"], [63, "usage"], [66, "usage"], [69, "usage"], [71, "usage"], [73, "usage"], [74, "usage"], [75, "usage"], [77, "usage"], [79, "usage"], [80, "usage"], [85, "usage"], [86, "usage"], [87, "usage"], [92, "usage"], [93, "usage"], [94, "usage"], [95, "usage"], [98, "usage"], [99, "usage"], [100, "usage"], [102, "usage"], [103, "usage"], [104, "usage"]], "Voxel-wise stats": [[0, "voxel-wise-stats"]], "cstats_fdr": [[0, "cstats-fdr"]], "cstats_fdr_range": [[0, "cstats-fdr-range"]], "cstats_mirror_indices": [[0, "cstats-mirror-indices"]], "cstats_summary": [[0, "cstats-summary"]], "cstats_validation": [[0, "cstats-validation"]], "env_var.sh": [[0, null]], "img_avg": [[0, "img-avg"]], "reg": [[0, "reg"]], "reg_check": [[0, "reg-check"]], "reg_prep": [[0, "reg-prep"]], "rstats": [[0, "rstats"]], "rstats_summary": [[0, "rstats-summary"]], "seg_brain_mask": [[0, "seg-brain-mask"]], "seg_copy_tifs": [[0, "seg-copy-tifs"], [0, "id2"]], "seg_ilastik": [[0, "seg-ilastik"]], "unravel package": [[82, "unravel-package"]], "unravel.cluster_stats package": [[25, "unravel-cluster-stats-package"]], "unravel.cluster_stats.brain_model module": [[3, "module-unravel.cluster_stats.brain_model"]], "unravel.cluster_stats.crop module": [[4, "module-unravel.cluster_stats.crop"]], "unravel.cluster_stats.cstats module": [[5, "module-unravel.cluster_stats.cstats"]], "unravel.cluster_stats.effect_sizes package": [[9, "unravel-cluster-stats-effect-sizes-package"]], "unravel.cluster_stats.effect_sizes.effect_sizes module": [[6, "module-unravel.cluster_stats.effect_sizes.effect_sizes"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute module": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative module": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative"]], "unravel.cluster_stats.fdr module": [[10, "module-unravel.cluster_stats.fdr"]], "unravel.cluster_stats.fdr_range module": [[11, "module-unravel.cluster_stats.fdr_range"]], "unravel.cluster_stats.find_incongruent_clusters module": [[12, "module-unravel.cluster_stats.find_incongruent_clusters"]], "unravel.cluster_stats.group_bilateral_data module": [[13, "module-unravel.cluster_stats.group_bilateral_data"]], "unravel.cluster_stats.index module": [[16, "module-unravel.cluster_stats.index"]], "unravel.cluster_stats.legend module": [[15, "module-unravel.cluster_stats.legend"]], "unravel.cluster_stats.mean_IF module": [[14, "module-unravel.cluster_stats.mean_IF"]], "unravel.cluster_stats.mean_IF_summary module": [[17, "module-unravel.cluster_stats.mean_IF_summary"]], "unravel.cluster_stats.org_data module": [[18, "module-unravel.cluster_stats.org_data"]], "unravel.cluster_stats.prism module": [[19, "module-unravel.cluster_stats.prism"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices module": [[20, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices"]], "unravel.cluster_stats.stats_table module": [[21, "module-unravel.cluster_stats.stats_table"]], "unravel.cluster_stats.summary module": [[22, "module-unravel.cluster_stats.summary"]], "unravel.cluster_stats.sunburst module": [[23, "module-unravel.cluster_stats.sunburst"]], "unravel.cluster_stats.table module": [[24, "module-unravel.cluster_stats.table"]], "unravel.cluster_stats.validation module": [[26, "module-unravel.cluster_stats.validation"]], "unravel.core package": [[32, "unravel-core-package"]], "unravel.core.argparse_utils module": [[27, "module-unravel.core.argparse_utils"]], "unravel.core.argparse_utils_rich module": [[28, "module-unravel.core.argparse_utils_rich"]], "unravel.core.config module": [[29, "module-unravel.core.config"]], "unravel.core.img_io module": [[30, "module-unravel.core.img_io"]], "unravel.core.img_tools module": [[31, "module-unravel.core.img_tools"]], "unravel.core.utils module": [[33, "module-unravel.core.utils"]], "unravel.image_io package": [[47, "unravel-image-io-package"]], "unravel.image_io.h5_to_tifs module": [[34, "module-unravel.image_io.h5_to_tifs"]], "unravel.image_io.img_to_npy module": [[35, "module-unravel.image_io.img_to_npy"]], "unravel.image_io.img_to_points module": [[36, "module-unravel.image_io.img_to_points"]], "unravel.image_io.io_img module": [[37, "module-unravel.image_io.io_img"]], "unravel.image_io.io_nii module": [[38, "module-unravel.image_io.io_nii"]], "unravel.image_io.metadata module": [[39, "module-unravel.image_io.metadata"]], "unravel.image_io.nii_hd module": [[40, "module-unravel.image_io.nii_hd"]], "unravel.image_io.nii_info module": [[41, "module-unravel.image_io.nii_info"]], "unravel.image_io.nii_to_tifs module": [[42, "module-unravel.image_io.nii_to_tifs"]], "unravel.image_io.nii_to_zarr module": [[43, "module-unravel.image_io.nii_to_zarr"]], "unravel.image_io.points_to_img module": [[44, "module-unravel.image_io.points_to_img"]], "unravel.image_io.reorient_nii module": [[45, "module-unravel.image_io.reorient_nii"]], "unravel.image_io.tif_to_tifs module": [[46, "module-unravel.image_io.tif_to_tifs"]], "unravel.image_io.zarr_to_nii module": [[48, "module-unravel.image_io.zarr_to_nii"]], "unravel.image_tools package": [[62, "unravel-image-tools-package"]], "unravel.image_tools.DoG module": [[49, "module-unravel.image_tools.DoG"]], "unravel.image_tools.atlas package": [[51, "unravel-image-tools-atlas-package"]], "unravel.image_tools.atlas.relabel_nii module": [[50, "module-unravel.image_tools.atlas.relabel_nii"]], "unravel.image_tools.atlas.wireframe module": [[52, "module-unravel.image_tools.atlas.wireframe"]], "unravel.image_tools.avg module": [[53, "module-unravel.image_tools.avg"]], "unravel.image_tools.bbox module": [[54, "module-unravel.image_tools.bbox"]], "unravel.image_tools.extend module": [[55, "module-unravel.image_tools.extend"]], "unravel.image_tools.max module": [[56, "module-unravel.image_tools.max"]], "unravel.image_tools.pad module": [[57, "module-unravel.image_tools.pad"]], "unravel.image_tools.rb module": [[58, "module-unravel.image_tools.rb"]], "unravel.image_tools.resample module": [[59, "module-unravel.image_tools.resample"]], "unravel.image_tools.resample_points module": [[60, "module-unravel.image_tools.resample_points"]], "unravel.image_tools.spatial_averaging module": [[61, "module-unravel.image_tools.spatial_averaging"]], "unravel.image_tools.transpose_axes module": [[63, "module-unravel.image_tools.transpose_axes"]], "unravel.image_tools.unique_intensities module": [[64, "module-unravel.image_tools.unique_intensities"]], "unravel.region_stats package": [[70, "unravel-region-stats-package"]], "unravel.region_stats.rstats module": [[65, "module-unravel.region_stats.rstats"]], "unravel.region_stats.rstats_mean_IF module": [[66, "module-unravel.region_stats.rstats_mean_IF"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels module": [[67, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels"]], "unravel.region_stats.rstats_mean_IF_summary module": [[68, "module-unravel.region_stats.rstats_mean_IF_summary"]], "unravel.region_stats.rstats_summary module": [[69, "module-unravel.region_stats.rstats_summary"]], "unravel.register package": [[76, "unravel-register-package"]], "unravel.register.affine_initializer module": [[71, "module-unravel.register.affine_initializer"]], "unravel.register.reg module": [[72, "module-unravel.register.reg"]], "unravel.register.reg_check module": [[73, "module-unravel.register.reg_check"]], "unravel.register.reg_check_brain_mask module": [[74, "module-unravel.register.reg_check_brain_mask"]], "unravel.register.reg_prep module": [[75, "module-unravel.register.reg_prep"]], "unravel.segment package": [[81, "unravel-segment-package"]], "unravel.segment.brain_mask module": [[77, "module-unravel.segment.brain_mask"]], "unravel.segment.copy_tifs module": [[78, "module-unravel.segment.copy_tifs"]], "unravel.segment.ilastik_pixel_classification module": [[79, "module-unravel.segment.ilastik_pixel_classification"]], "unravel.segment.labels_to_masks module": [[80, "module-unravel.segment.labels_to_masks"]], "unravel.unravel_commands module": [[83, "module-unravel.unravel_commands"]], "unravel.utilities package": [[89, "unravel-utilities-package"]], "unravel.utilities.aggregate_files_from_sample_dirs module": [[84, "module-unravel.utilities.aggregate_files_from_sample_dirs"]], "unravel.utilities.aggregate_files_recursively module": [[85, "module-unravel.utilities.aggregate_files_recursively"]], "unravel.utilities.clean_tif_dirs module": [[86, "module-unravel.utilities.clean_tif_dirs"]], "unravel.utilities.prepend_conditions module": [[87, "module-unravel.utilities.prepend_conditions"]], "unravel.utilities.rename module": [[88, "module-unravel.utilities.rename"]], "unravel.utilities.toggle_samples module": [[90, "module-unravel.utilities.toggle_samples"]], "unravel.voxel_stats package": [[97, "unravel-voxel-stats-package"]], "unravel.voxel_stats.apply_mask module": [[91, "module-unravel.voxel_stats.apply_mask"]], "unravel.voxel_stats.hemi_to_LR_avg module": [[92, "module-unravel.voxel_stats.hemi_to_LR_avg"]], "unravel.voxel_stats.mirror module": [[93, "module-unravel.voxel_stats.mirror"]], "unravel.voxel_stats.other package": [[96, "unravel-voxel-stats-other-package"]], "unravel.voxel_stats.other.IF_outliers module": [[94, "module-unravel.voxel_stats.other.IF_outliers"]], "unravel.voxel_stats.other.r_to_p module": [[95, "module-unravel.voxel_stats.other.r_to_p"]], "unravel.voxel_stats.vstats module": [[98, "module-unravel.voxel_stats.vstats"]], "unravel.voxel_stats.vstats_prep module": [[99, "module-unravel.voxel_stats.vstats_prep"]], "unravel.voxel_stats.whole_to_LR_avg module": [[100, "module-unravel.voxel_stats.whole_to_LR_avg"]], "unravel.voxel_stats.z_score module": [[101, "module-unravel.voxel_stats.z_score"]], "unravel.warp package": [[106, "unravel-warp-package"]], "unravel.warp.points_to_atlas module": [[102, "module-unravel.warp.points_to_atlas"]], "unravel.warp.to_atlas module": [[103, "module-unravel.warp.to_atlas"]], "unravel.warp.to_fixed module": [[104, "module-unravel.warp.to_fixed"]], "unravel.warp.to_native module": [[105, "module-unravel.warp.to_native"]], "unravel.warp.warp module": [[107, "module-unravel.warp.warp"]], "utils_agg_files": [[0, "utils-agg-files"]], "utils_clean_tifs": [[0, null]], "utils_prepend": [[0, "utils-prepend"]], "vstats": [[0, "vstats"]], "vstats_prep": [[0, "vstats-prep"]], "vstats_whole_to_avg": [[0, "vstats-whole-to-avg"]], "vstats_z_score": [[0, "vstats-z-score"]]}, "docnames": ["guide", "index", "installation", "unravel/cluster_stats/brain_model", "unravel/cluster_stats/crop", "unravel/cluster_stats/cstats", "unravel/cluster_stats/effect_sizes/effect_sizes", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative", "unravel/cluster_stats/effect_sizes/toc", "unravel/cluster_stats/fdr", "unravel/cluster_stats/fdr_range", "unravel/cluster_stats/find_incongruent_clusters", "unravel/cluster_stats/group_bilateral_data", "unravel/cluster_stats/index", "unravel/cluster_stats/legend", "unravel/cluster_stats/mean_IF", "unravel/cluster_stats/mean_IF_summary", "unravel/cluster_stats/org_data", "unravel/cluster_stats/prism", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices", "unravel/cluster_stats/stats_table", "unravel/cluster_stats/summary", "unravel/cluster_stats/sunburst", "unravel/cluster_stats/table", "unravel/cluster_stats/toc", "unravel/cluster_stats/validation", "unravel/core/argparse_utils", "unravel/core/argparse_utils_rich", "unravel/core/config", "unravel/core/img_io", "unravel/core/img_tools", "unravel/core/toc", "unravel/core/utils", "unravel/image_io/h5_to_tifs", "unravel/image_io/img_to_npy", "unravel/image_io/img_to_points", "unravel/image_io/io_img", "unravel/image_io/io_nii", "unravel/image_io/metadata", "unravel/image_io/nii_hd", "unravel/image_io/nii_info", "unravel/image_io/nii_to_tifs", "unravel/image_io/nii_to_zarr", "unravel/image_io/points_to_img", "unravel/image_io/reorient_nii", "unravel/image_io/tif_to_tifs", "unravel/image_io/toc", "unravel/image_io/zarr_to_nii", "unravel/image_tools/DoG", "unravel/image_tools/atlas/relabel_nii", "unravel/image_tools/atlas/toc", "unravel/image_tools/atlas/wireframe", "unravel/image_tools/avg", "unravel/image_tools/bbox", "unravel/image_tools/extend", "unravel/image_tools/max", "unravel/image_tools/pad", "unravel/image_tools/rb", "unravel/image_tools/resample", "unravel/image_tools/resample_points", "unravel/image_tools/spatial_averaging", "unravel/image_tools/toc", "unravel/image_tools/transpose_axes", "unravel/image_tools/unique_intensities", "unravel/region_stats/rstats", "unravel/region_stats/rstats_mean_IF", "unravel/region_stats/rstats_mean_IF_in_segmented_voxels", "unravel/region_stats/rstats_mean_IF_summary", "unravel/region_stats/rstats_summary", "unravel/region_stats/toc", "unravel/register/affine_initializer", "unravel/register/reg", "unravel/register/reg_check", "unravel/register/reg_check_brain_mask", "unravel/register/reg_prep", "unravel/register/toc", "unravel/segment/brain_mask", "unravel/segment/copy_tifs", "unravel/segment/ilastik_pixel_classification", "unravel/segment/labels_to_masks", "unravel/segment/toc", "unravel/toc", "unravel/unravel_commands", "unravel/utilities/aggregate_files_from_sample_dirs", "unravel/utilities/aggregate_files_recursively", "unravel/utilities/clean_tif_dirs", "unravel/utilities/prepend_conditions", "unravel/utilities/rename", "unravel/utilities/toc", "unravel/utilities/toggle_samples", "unravel/voxel_stats/apply_mask", "unravel/voxel_stats/hemi_to_LR_avg", "unravel/voxel_stats/mirror", "unravel/voxel_stats/other/IF_outliers", "unravel/voxel_stats/other/r_to_p", "unravel/voxel_stats/other/toc", "unravel/voxel_stats/toc", "unravel/voxel_stats/vstats", "unravel/voxel_stats/vstats_prep", "unravel/voxel_stats/whole_to_LR_avg", "unravel/voxel_stats/z_score", "unravel/warp/points_to_atlas", "unravel/warp/to_atlas", "unravel/warp/to_fixed", "unravel/warp/to_native", "unravel/warp/toc", "unravel/warp/warp"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["guide.md", "index.rst", "installation.md", "unravel/cluster_stats/brain_model.rst", "unravel/cluster_stats/crop.rst", "unravel/cluster_stats/cstats.rst", "unravel/cluster_stats/effect_sizes/effect_sizes.rst", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute.rst", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative.rst", "unravel/cluster_stats/effect_sizes/toc.rst", "unravel/cluster_stats/fdr.rst", "unravel/cluster_stats/fdr_range.rst", "unravel/cluster_stats/find_incongruent_clusters.rst", "unravel/cluster_stats/group_bilateral_data.rst", "unravel/cluster_stats/index.rst", "unravel/cluster_stats/legend.rst", "unravel/cluster_stats/mean_IF.rst", "unravel/cluster_stats/mean_IF_summary.rst", "unravel/cluster_stats/org_data.rst", "unravel/cluster_stats/prism.rst", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices.rst", "unravel/cluster_stats/stats_table.rst", "unravel/cluster_stats/summary.rst", "unravel/cluster_stats/sunburst.rst", "unravel/cluster_stats/table.rst", "unravel/cluster_stats/toc.rst", "unravel/cluster_stats/validation.rst", "unravel/core/argparse_utils.rst", "unravel/core/argparse_utils_rich.rst", "unravel/core/config.rst", "unravel/core/img_io.rst", "unravel/core/img_tools.rst", "unravel/core/toc.rst", "unravel/core/utils.rst", "unravel/image_io/h5_to_tifs.rst", "unravel/image_io/img_to_npy.rst", "unravel/image_io/img_to_points.rst", "unravel/image_io/io_img.rst", "unravel/image_io/io_nii.rst", "unravel/image_io/metadata.rst", "unravel/image_io/nii_hd.rst", "unravel/image_io/nii_info.rst", "unravel/image_io/nii_to_tifs.rst", "unravel/image_io/nii_to_zarr.rst", "unravel/image_io/points_to_img.rst", "unravel/image_io/reorient_nii.rst", "unravel/image_io/tif_to_tifs.rst", "unravel/image_io/toc.rst", "unravel/image_io/zarr_to_nii.rst", "unravel/image_tools/DoG.rst", "unravel/image_tools/atlas/relabel_nii.rst", "unravel/image_tools/atlas/toc.rst", "unravel/image_tools/atlas/wireframe.rst", "unravel/image_tools/avg.rst", "unravel/image_tools/bbox.rst", "unravel/image_tools/extend.rst", "unravel/image_tools/max.rst", "unravel/image_tools/pad.rst", "unravel/image_tools/rb.rst", "unravel/image_tools/resample.rst", "unravel/image_tools/resample_points.rst", "unravel/image_tools/spatial_averaging.rst", "unravel/image_tools/toc.rst", "unravel/image_tools/transpose_axes.rst", "unravel/image_tools/unique_intensities.rst", "unravel/region_stats/rstats.rst", "unravel/region_stats/rstats_mean_IF.rst", "unravel/region_stats/rstats_mean_IF_in_segmented_voxels.rst", "unravel/region_stats/rstats_mean_IF_summary.rst", "unravel/region_stats/rstats_summary.rst", "unravel/region_stats/toc.rst", "unravel/register/affine_initializer.rst", "unravel/register/reg.rst", "unravel/register/reg_check.rst", "unravel/register/reg_check_brain_mask.rst", "unravel/register/reg_prep.rst", "unravel/register/toc.rst", "unravel/segment/brain_mask.rst", "unravel/segment/copy_tifs.rst", "unravel/segment/ilastik_pixel_classification.rst", "unravel/segment/labels_to_masks.rst", "unravel/segment/toc.rst", "unravel/toc.rst", "unravel/unravel_commands.rst", "unravel/utilities/aggregate_files_from_sample_dirs.rst", "unravel/utilities/aggregate_files_recursively.rst", "unravel/utilities/clean_tif_dirs.rst", "unravel/utilities/prepend_conditions.rst", "unravel/utilities/rename.rst", "unravel/utilities/toc.rst", "unravel/utilities/toggle_samples.rst", "unravel/voxel_stats/apply_mask.rst", "unravel/voxel_stats/hemi_to_LR_avg.rst", "unravel/voxel_stats/mirror.rst", "unravel/voxel_stats/other/IF_outliers.rst", "unravel/voxel_stats/other/r_to_p.rst", "unravel/voxel_stats/other/toc.rst", "unravel/voxel_stats/toc.rst", "unravel/voxel_stats/vstats.rst", "unravel/voxel_stats/vstats_prep.rst", "unravel/voxel_stats/whole_to_LR_avg.rst", "unravel/voxel_stats/z_score.rst", "unravel/warp/points_to_atlas.rst", "unravel/warp/to_atlas.rst", "unravel/warp/to_fixed.rst", "unravel/warp/to_native.rst", "unravel/warp/toc.rst", "unravel/warp/warp.rst"], "indexentries": {"affine_initializer_wrapper() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.affine_initializer_wrapper", false]], "aggregate_files_from_sample_dirs() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[84, "unravel.utilities.aggregate_files_from_sample_dirs.aggregate_files_from_sample_dirs", false]], "apply_2d_mean_filter() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.apply_2D_mean_filter", false]], "apply_mask_to_ndarray() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.apply_mask_to_ndarray", false]], "apply_rgb_to_cell() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.apply_rgb_to_cell", false]], "attrdict (class in unravel.core.config)": [[29, "unravel.core.config.AttrDict", false]], "averagetimeperiterationcolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.AverageTimePerIterationColumn", false]], "bias_correction() (in module unravel.register.reg)": [[72, "unravel.register.reg.bias_correction", false]], "calculate_fragments() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.calculate_fragments", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.calculate_mean_intensity", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.calculate_mean_intensity", false]], "calculate_mean_intensity_in_clusters() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.calculate_mean_intensity_in_clusters", false]], "calculate_padded_dimensions() (in module unravel.warp.to_fixed)": [[104, "unravel.warp.to_fixed.calculate_padded_dimensions", false]], "calculate_regional_densities() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.calculate_regional_densities", false]], "calculate_regional_volumes() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.calculate_regional_volumes", false]], "calculate_regional_volumes() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.calculate_regional_volumes", false]], "calculate_resampled_padded_dimensions() (in module unravel.warp.to_native)": [[105, "unravel.warp.to_native.calculate_resampled_padded_dimensions", false]], "calculate_top_regions() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.calculate_top_regions", false]], "can_collapse() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.can_collapse", false]], "check_fdr_command() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.check_fdr_command", false]], "clean_tifs_dir() (in module unravel.utilities.clean_tif_dirs)": [[86, "unravel.utilities.clean_tif_dirs.clean_tifs_dir", false]], "cluster_bbox() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.cluster_bbox", false]], "cluster_bbox_parallel() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.cluster_bbox_parallel", false]], "cluster_ids() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.cluster_IDs", false]], "cluster_index() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.cluster_index", false]], "cluster_summary() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.cluster_summary", false]], "cluster_validation_data_df() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.cluster_validation_data_df", false]], "collapse_hierarchy() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.collapse_hierarchy", false]], "condition_selector() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.condition_selector", false]], "config (class in unravel.core.config)": [[29, "unravel.core.config.Config", false]], "configuration (class in unravel.core.config)": [[29, "unravel.core.config.Configuration", false]], "convert_dtype() (in module unravel.image_io.io_nii)": [[38, "unravel.image_io.io_nii.convert_dtype", false]], "copy_files() (in module unravel.core.utils)": [[33, "unravel.core.utils.copy_files", false]], "copy_nii_header() (in module unravel.warp.to_atlas)": [[103, "unravel.warp.to_atlas.copy_nii_header", false]], "copy_specific_slices() (in module unravel.segment.copy_tifs)": [[78, "unravel.segment.copy_tifs.copy_specific_slices", false]], "copy_stats_files() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.copy_stats_files", false]], "count_cells() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.count_cells", false]], "count_cells_in_regions() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.count_cells_in_regions", false]], "count_files() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.count_files", false]], "cp() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.cp", false]], "create_design_ttest2() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.create_design_ttest2", false]], "create_resampled_nii() (in module unravel.image_tools.resample)": [[59, "unravel.image_tools.resample.create_resampled_nii", false]], "crop() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.crop", false]], "crop_outer_space() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.crop_outer_space", false]], "custommofncompletecolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.CustomMofNCompleteColumn", false]], "customtimeelapsedcolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.CustomTimeElapsedColumn", false]], "customtimeremainingcolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.CustomTimeRemainingColumn", false]], "define_zarr_to_nii_output() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.define_zarr_to_nii_output", false]], "density_in_cluster() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.density_in_cluster", false]], "density_in_cluster_parallel() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.density_in_cluster_parallel", false]], "detect_outliers() (in module unravel.voxel_stats.other.if_outliers)": [[94, "unravel.voxel_stats.other.IF_outliers.detect_outliers", false]], "difference_of_gaussians() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.difference_of_gaussians", false]], "dilate_mask() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.dilate_mask", false]], "extend_one_side_3d_array() (in module unravel.image_tools.extend)": [[55, "unravel.image_tools.extend.extend_one_side_3d_array", false]], "extract_resolution() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.extract_resolution", false]], "extract_unique_regions_from_file() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.extract_unique_regions_from_file", false]], "fdr() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.fdr", false]], "fdr_range() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.fdr_range", false]], "fill_na_with_last_known() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.fill_na_with_last_known", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.filter_dataframe", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.filter_dataframe", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.filter_dataframe", false]], "filter_region_ids() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.filter_region_ids", false]], "find_and_copy_files() (in module unravel.utilities.aggregate_files_recursively)": [[85, "unravel.utilities.aggregate_files_recursively.find_and_copy_files", false]], "find_bounding_box() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.find_bounding_box", false]], "find_incongruent_clusters() (in module unravel.cluster_stats.find_incongruent_clusters)": [[12, "unravel.cluster_stats.find_incongruent_clusters.find_incongruent_clusters", false]], "find_largest_h5_file() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.find_largest_h5_file", false]], "find_largest_tif_file() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.find_largest_tif_file", false]], "find_matching_directory() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.find_matching_directory", false]], "find_max_intensity() (in module unravel.image_tools.max)": [[56, "unravel.image_tools.max.find_max_intensity", false]], "forward_warp() (in module unravel.warp.to_fixed)": [[104, "unravel.warp.to_fixed.forward_warp", false]], "generate_summary_table() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.generate_summary_table", false]], "generate_sunburst() (in module unravel.cluster_stats.index)": [[16, "unravel.cluster_stats.index.generate_sunburst", false]], "generate_wireframe() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.generate_wireframe", false]], "get_all_region_ids() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.get_all_region_ids", false]], "get_atlas_region_at_coords() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.get_atlas_region_at_coords", false]], "get_dims_from_tifs() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.get_dims_from_tifs", false]], "get_dir_name_from_args() (in module unravel.core.utils)": [[33, "unravel.core.utils.get_dir_name_from_args", false]], "get_fill_color() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.get_fill_color", false]], "get_groups_info() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.get_groups_info", false]], "get_max_region_id_from_csvs() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.get_max_region_id_from_csvs", false]], "get_region_details() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.get_region_details", false]], "get_region_details() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.get_region_details", false]], "get_samples() (in module unravel.core.utils)": [[33, "unravel.core.utils.get_samples", false]], "get_top_regions_and_percent_vols() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.get_top_regions_and_percent_vols", false]], "group_hemisphere_data() (in module unravel.cluster_stats.group_bilateral_data)": [[13, "unravel.cluster_stats.group_bilateral_data.group_hemisphere_data", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.hedges_g", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.hedges_g", false]], "hemi_to_lr_avg() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[92, "unravel.voxel_stats.hemi_to_LR_avg.hemi_to_LR_avg", false]], "img_to_points() (in module unravel.image_io.img_to_points)": [[36, "unravel.image_io.img_to_points.img_to_points", false]], "initialize_progress_bar() (in module unravel.core.utils)": [[33, "unravel.core.utils.initialize_progress_bar", false]], "load_3d_img() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_3D_img", false]], "load_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.load_3D_tif", false]], "load_and_prepare_points() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.load_and_prepare_points", false]], "load_config() (in module unravel.core.utils)": [[33, "unravel.core.utils.load_config", false]], "load_czi() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_czi", false]], "load_data() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.load_data", false]], "load_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.load_data", false]], "load_h5() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_h5", false]], "load_h5() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.load_h5", false]], "load_image_metadata_from_txt() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_image_metadata_from_txt", false]], "load_mask() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.load_mask", false]], "load_nii() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_nii", false]], "load_nii_subset() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_nii_subset", false]], "load_text_from_file() (in module unravel.core.utils)": [[33, "unravel.core.utils.load_text_from_file", false]], "load_tif() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.load_tif", false]], "load_tif() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.load_tif", false]], "load_tifs() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_tifs", false]], "load_zarr() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_zarr", false]], "log_command() (in module unravel.core.utils)": [[33, "unravel.core.utils.log_command", false]], "main() (in module unravel.cluster_stats.brain_model)": [[3, "unravel.cluster_stats.brain_model.main", false]], "main() (in module unravel.cluster_stats.crop)": [[4, "unravel.cluster_stats.crop.main", false]], "main() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.main", false]], "main() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.main", false]], "main() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.main", false]], "main() (in module unravel.cluster_stats.find_incongruent_clusters)": [[12, "unravel.cluster_stats.find_incongruent_clusters.main", false]], "main() (in module unravel.cluster_stats.group_bilateral_data)": [[13, "unravel.cluster_stats.group_bilateral_data.main", false]], "main() (in module unravel.cluster_stats.index)": [[16, "unravel.cluster_stats.index.main", false]], "main() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.main", false]], "main() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.main", false]], "main() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.main", false]], "main() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.main", false]], "main() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.main", false]], "main() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[20, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.main", false]], "main() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.main", false]], "main() (in module unravel.cluster_stats.summary)": [[22, "unravel.cluster_stats.summary.main", false]], "main() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.main", false]], "main() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.main", false]], "main() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.main", false]], "main() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.main", false]], "main() (in module unravel.image_io.img_to_npy)": [[35, "unravel.image_io.img_to_npy.main", false]], "main() (in module unravel.image_io.img_to_points)": [[36, "unravel.image_io.img_to_points.main", false]], "main() (in module unravel.image_io.io_img)": [[37, "unravel.image_io.io_img.main", false]], "main() (in module unravel.image_io.io_nii)": [[38, "unravel.image_io.io_nii.main", false]], "main() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.main", false]], "main() (in module unravel.image_io.nii_hd)": [[40, "unravel.image_io.nii_hd.main", false]], "main() (in module unravel.image_io.nii_info)": [[41, "unravel.image_io.nii_info.main", false]], "main() (in module unravel.image_io.nii_to_tifs)": [[42, "unravel.image_io.nii_to_tifs.main", false]], "main() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.main", false]], "main() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.main", false]], "main() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.main", false]], "main() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.main", false]], "main() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.main", false]], "main() (in module unravel.image_tools.atlas.relabel_nii)": [[50, "unravel.image_tools.atlas.relabel_nii.main", false]], "main() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.main", false]], "main() (in module unravel.image_tools.avg)": [[53, "unravel.image_tools.avg.main", false]], "main() (in module unravel.image_tools.bbox)": [[54, "unravel.image_tools.bbox.main", false]], "main() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.main", false]], "main() (in module unravel.image_tools.extend)": [[55, "unravel.image_tools.extend.main", false]], "main() (in module unravel.image_tools.max)": [[56, "unravel.image_tools.max.main", false]], "main() (in module unravel.image_tools.pad)": [[57, "unravel.image_tools.pad.main", false]], "main() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.main", false]], "main() (in module unravel.image_tools.resample)": [[59, "unravel.image_tools.resample.main", false]], "main() (in module unravel.image_tools.resample_points)": [[60, "unravel.image_tools.resample_points.main", false]], "main() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.main", false]], "main() (in module unravel.image_tools.transpose_axes)": [[63, "unravel.image_tools.transpose_axes.main", false]], "main() (in module unravel.image_tools.unique_intensities)": [[64, "unravel.image_tools.unique_intensities.main", false]], "main() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.main", false]], "main() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.main", false]], "main() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.main", false]], "main() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.main", false]], "main() (in module unravel.register.reg)": [[72, "unravel.register.reg.main", false]], "main() (in module unravel.register.reg_check)": [[73, "unravel.register.reg_check.main", false]], "main() (in module unravel.register.reg_check_brain_mask)": [[74, "unravel.register.reg_check_brain_mask.main", false]], "main() (in module unravel.register.reg_prep)": [[75, "unravel.register.reg_prep.main", false]], "main() (in module unravel.segment.brain_mask)": [[77, "unravel.segment.brain_mask.main", false]], "main() (in module unravel.segment.copy_tifs)": [[78, "unravel.segment.copy_tifs.main", false]], "main() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.main", false]], "main() (in module unravel.segment.labels_to_masks)": [[80, "unravel.segment.labels_to_masks.main", false]], "main() (in module unravel.unravel_commands)": [[83, "unravel.unravel_commands.main", false]], "main() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[84, "unravel.utilities.aggregate_files_from_sample_dirs.main", false]], "main() (in module unravel.utilities.aggregate_files_recursively)": [[85, "unravel.utilities.aggregate_files_recursively.main", false]], "main() (in module unravel.utilities.clean_tif_dirs)": [[86, "unravel.utilities.clean_tif_dirs.main", false]], "main() (in module unravel.utilities.prepend_conditions)": [[87, "unravel.utilities.prepend_conditions.main", false]], "main() (in module unravel.utilities.rename)": [[88, "unravel.utilities.rename.main", false]], "main() (in module unravel.utilities.toggle_samples)": [[90, "unravel.utilities.toggle_samples.main", false]], "main() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.main", false]], "main() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[92, "unravel.voxel_stats.hemi_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.mirror)": [[93, "unravel.voxel_stats.mirror.main", false]], "main() (in module unravel.voxel_stats.other.if_outliers)": [[94, "unravel.voxel_stats.other.IF_outliers.main", false]], "main() (in module unravel.voxel_stats.other.r_to_p)": [[95, "unravel.voxel_stats.other.r_to_p.main", false]], "main() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.main", false]], "main() (in module unravel.voxel_stats.vstats_prep)": [[99, "unravel.voxel_stats.vstats_prep.main", false]], "main() (in module unravel.voxel_stats.whole_to_lr_avg)": [[100, "unravel.voxel_stats.whole_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.z_score)": [[101, "unravel.voxel_stats.z_score.main", false]], "main() (in module unravel.warp.points_to_atlas)": [[102, "unravel.warp.points_to_atlas.main", false]], "main() (in module unravel.warp.to_atlas)": [[103, "unravel.warp.to_atlas.main", false]], "main() (in module unravel.warp.to_fixed)": [[104, "unravel.warp.to_fixed.main", false]], "main() (in module unravel.warp.to_native)": [[105, "unravel.warp.to_native.main", false]], "main() (in module unravel.warp.warp)": [[107, "unravel.warp.warp.main", false]], "mean_intensity_in_brain() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.mean_intensity_in_brain", false]], "mean_intensity_within_mask() (in module unravel.voxel_stats.other.if_outliers)": [[94, "unravel.voxel_stats.other.IF_outliers.mean_intensity_within_mask", false]], "mean_std_count() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.mean_std_count", false]], "metadata() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.metadata", false]], "metadata_from_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.metadata_from_3D_tif", false]], "metadata_from_h5() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.metadata_from_h5", false]], "mirror() (in module unravel.voxel_stats.mirror)": [[93, "unravel.voxel_stats.mirror.mirror", false]], "module": [[3, "module-unravel.cluster_stats.brain_model", false], [4, "module-unravel.cluster_stats.crop", false], [5, "module-unravel.cluster_stats.cstats", false], [6, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false], [7, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false], [8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false], [10, "module-unravel.cluster_stats.fdr", false], [11, "module-unravel.cluster_stats.fdr_range", false], [12, "module-unravel.cluster_stats.find_incongruent_clusters", false], [13, "module-unravel.cluster_stats.group_bilateral_data", false], [14, "module-unravel.cluster_stats.mean_IF", false], [15, "module-unravel.cluster_stats.legend", false], [16, "module-unravel.cluster_stats.index", false], [17, "module-unravel.cluster_stats.mean_IF_summary", false], [18, "module-unravel.cluster_stats.org_data", false], [19, "module-unravel.cluster_stats.prism", false], [20, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false], [21, "module-unravel.cluster_stats.stats_table", false], [22, "module-unravel.cluster_stats.summary", false], [23, "module-unravel.cluster_stats.sunburst", false], [24, "module-unravel.cluster_stats.table", false], [26, "module-unravel.cluster_stats.validation", false], [27, "module-unravel.core.argparse_utils", false], [28, "module-unravel.core.argparse_utils_rich", false], [29, "module-unravel.core.config", false], [30, "module-unravel.core.img_io", false], [31, "module-unravel.core.img_tools", false], [33, "module-unravel.core.utils", false], [34, "module-unravel.image_io.h5_to_tifs", false], [35, "module-unravel.image_io.img_to_npy", false], [36, "module-unravel.image_io.img_to_points", false], [37, "module-unravel.image_io.io_img", false], [38, "module-unravel.image_io.io_nii", false], [39, "module-unravel.image_io.metadata", false], [40, "module-unravel.image_io.nii_hd", false], [41, "module-unravel.image_io.nii_info", false], [42, "module-unravel.image_io.nii_to_tifs", false], [43, "module-unravel.image_io.nii_to_zarr", false], [44, "module-unravel.image_io.points_to_img", false], [45, "module-unravel.image_io.reorient_nii", false], [46, "module-unravel.image_io.tif_to_tifs", false], [48, "module-unravel.image_io.zarr_to_nii", false], [49, "module-unravel.image_tools.DoG", false], [50, "module-unravel.image_tools.atlas.relabel_nii", false], [52, "module-unravel.image_tools.atlas.wireframe", false], [53, "module-unravel.image_tools.avg", false], [54, "module-unravel.image_tools.bbox", false], [55, "module-unravel.image_tools.extend", false], [56, "module-unravel.image_tools.max", false], [57, "module-unravel.image_tools.pad", false], [58, "module-unravel.image_tools.rb", false], [59, "module-unravel.image_tools.resample", false], [60, "module-unravel.image_tools.resample_points", false], [61, "module-unravel.image_tools.spatial_averaging", false], [63, "module-unravel.image_tools.transpose_axes", false], [64, "module-unravel.image_tools.unique_intensities", false], [65, "module-unravel.region_stats.rstats", false], [66, "module-unravel.region_stats.rstats_mean_IF", false], [67, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false], [68, "module-unravel.region_stats.rstats_mean_IF_summary", false], [69, "module-unravel.region_stats.rstats_summary", false], [71, "module-unravel.register.affine_initializer", false], [72, "module-unravel.register.reg", false], [73, "module-unravel.register.reg_check", false], [74, "module-unravel.register.reg_check_brain_mask", false], [75, "module-unravel.register.reg_prep", false], [77, "module-unravel.segment.brain_mask", false], [78, "module-unravel.segment.copy_tifs", false], [79, "module-unravel.segment.ilastik_pixel_classification", false], [80, "module-unravel.segment.labels_to_masks", false], [83, "module-unravel.unravel_commands", false], [84, "module-unravel.utilities.aggregate_files_from_sample_dirs", false], [85, "module-unravel.utilities.aggregate_files_recursively", false], [86, "module-unravel.utilities.clean_tif_dirs", false], [87, "module-unravel.utilities.prepend_conditions", false], [88, "module-unravel.utilities.rename", false], [90, "module-unravel.utilities.toggle_samples", false], [91, "module-unravel.voxel_stats.apply_mask", false], [92, "module-unravel.voxel_stats.hemi_to_LR_avg", false], [93, "module-unravel.voxel_stats.mirror", false], [94, "module-unravel.voxel_stats.other.IF_outliers", false], [95, "module-unravel.voxel_stats.other.r_to_p", false], [98, "module-unravel.voxel_stats.vstats", false], [99, "module-unravel.voxel_stats.vstats_prep", false], [100, "module-unravel.voxel_stats.whole_to_LR_avg", false], [101, "module-unravel.voxel_stats.z_score", false], [102, "module-unravel.warp.points_to_atlas", false], [103, "module-unravel.warp.to_atlas", false], [104, "module-unravel.warp.to_fixed", false], [105, "module-unravel.warp.to_native", false], [107, "module-unravel.warp.warp", false]], "nii_axis_codes() (in module unravel.image_io.nii_info)": [[41, "unravel.image_io.nii_info.nii_axis_codes", false]], "nii_path_or_nii() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.nii_path_or_nii", false]], "nii_to_ndarray() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.nii_to_ndarray", false]], "nii_to_ndarray() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.nii_to_ndarray", false]], "nii_to_tifs() (in module unravel.image_io.nii_to_tifs)": [[42, "unravel.image_io.nii_to_tifs.nii_to_tifs", false]], "nii_voxel_size() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.nii_voxel_size", false]], "organize_validation_data() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.organize_validation_data", false]], "pad() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.pad", false]], "parse_args() (in module unravel.cluster_stats.brain_model)": [[3, "unravel.cluster_stats.brain_model.parse_args", false]], "parse_args() (in module unravel.cluster_stats.crop)": [[4, "unravel.cluster_stats.crop.parse_args", false]], "parse_args() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.parse_args", false]], "parse_args() (in module unravel.cluster_stats.find_incongruent_clusters)": [[12, "unravel.cluster_stats.find_incongruent_clusters.parse_args", false]], "parse_args() (in module unravel.cluster_stats.group_bilateral_data)": [[13, "unravel.cluster_stats.group_bilateral_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.index)": [[16, "unravel.cluster_stats.index.parse_args", false]], "parse_args() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.parse_args", false]], "parse_args() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.parse_args", false]], "parse_args() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.parse_args", false]], "parse_args() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.parse_args", false]], "parse_args() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[20, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.parse_args", false]], "parse_args() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.parse_args", false]], "parse_args() (in module unravel.cluster_stats.summary)": [[22, "unravel.cluster_stats.summary.parse_args", false]], "parse_args() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.parse_args", false]], "parse_args() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.parse_args", false]], "parse_args() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.parse_args", false]], "parse_args() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.img_to_npy)": [[35, "unravel.image_io.img_to_npy.parse_args", false]], "parse_args() (in module unravel.image_io.img_to_points)": [[36, "unravel.image_io.img_to_points.parse_args", false]], "parse_args() (in module unravel.image_io.io_img)": [[37, "unravel.image_io.io_img.parse_args", false]], "parse_args() (in module unravel.image_io.io_nii)": [[38, "unravel.image_io.io_nii.parse_args", false]], "parse_args() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.parse_args", false]], "parse_args() (in module unravel.image_io.nii_hd)": [[40, "unravel.image_io.nii_hd.parse_args", false]], "parse_args() (in module unravel.image_io.nii_info)": [[41, "unravel.image_io.nii_info.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_tifs)": [[42, "unravel.image_io.nii_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.parse_args", false]], "parse_args() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.parse_args", false]], "parse_args() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.parse_args", false]], "parse_args() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.relabel_nii)": [[50, "unravel.image_tools.atlas.relabel_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.parse_args", false]], "parse_args() (in module unravel.image_tools.avg)": [[53, "unravel.image_tools.avg.parse_args", false]], "parse_args() (in module unravel.image_tools.bbox)": [[54, "unravel.image_tools.bbox.parse_args", false]], "parse_args() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.parse_args", false]], "parse_args() (in module unravel.image_tools.extend)": [[55, "unravel.image_tools.extend.parse_args", false]], "parse_args() (in module unravel.image_tools.max)": [[56, "unravel.image_tools.max.parse_args", false]], "parse_args() (in module unravel.image_tools.pad)": [[57, "unravel.image_tools.pad.parse_args", false]], "parse_args() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.parse_args", false]], "parse_args() (in module unravel.image_tools.resample)": [[59, "unravel.image_tools.resample.parse_args", false]], "parse_args() (in module unravel.image_tools.resample_points)": [[60, "unravel.image_tools.resample_points.parse_args", false]], "parse_args() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.parse_args", false]], "parse_args() (in module unravel.image_tools.transpose_axes)": [[63, "unravel.image_tools.transpose_axes.parse_args", false]], "parse_args() (in module unravel.image_tools.unique_intensities)": [[64, "unravel.image_tools.unique_intensities.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.parse_args", false]], "parse_args() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.parse_args", false]], "parse_args() (in module unravel.register.reg)": [[72, "unravel.register.reg.parse_args", false]], "parse_args() (in module unravel.register.reg_check)": [[73, "unravel.register.reg_check.parse_args", false]], "parse_args() (in module unravel.register.reg_check_brain_mask)": [[74, "unravel.register.reg_check_brain_mask.parse_args", false]], "parse_args() (in module unravel.register.reg_prep)": [[75, "unravel.register.reg_prep.parse_args", false]], "parse_args() (in module unravel.segment.brain_mask)": [[77, "unravel.segment.brain_mask.parse_args", false]], "parse_args() (in module unravel.segment.copy_tifs)": [[78, "unravel.segment.copy_tifs.parse_args", false]], "parse_args() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.parse_args", false]], "parse_args() (in module unravel.segment.labels_to_masks)": [[80, "unravel.segment.labels_to_masks.parse_args", false]], "parse_args() (in module unravel.unravel_commands)": [[83, "unravel.unravel_commands.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[84, "unravel.utilities.aggregate_files_from_sample_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_recursively)": [[85, "unravel.utilities.aggregate_files_recursively.parse_args", false]], "parse_args() (in module unravel.utilities.clean_tif_dirs)": [[86, "unravel.utilities.clean_tif_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.prepend_conditions)": [[87, "unravel.utilities.prepend_conditions.parse_args", false]], "parse_args() (in module unravel.utilities.rename)": [[88, "unravel.utilities.rename.parse_args", false]], "parse_args() (in module unravel.utilities.toggle_samples)": [[90, "unravel.utilities.toggle_samples.parse_args", false]], "parse_args() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.parse_args", false]], "parse_args() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[92, "unravel.voxel_stats.hemi_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.mirror)": [[93, "unravel.voxel_stats.mirror.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.if_outliers)": [[94, "unravel.voxel_stats.other.IF_outliers.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.r_to_p)": [[95, "unravel.voxel_stats.other.r_to_p.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats_prep)": [[99, "unravel.voxel_stats.vstats_prep.parse_args", false]], "parse_args() (in module unravel.voxel_stats.whole_to_lr_avg)": [[100, "unravel.voxel_stats.whole_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.z_score)": [[101, "unravel.voxel_stats.z_score.parse_args", false]], "parse_args() (in module unravel.warp.points_to_atlas)": [[102, "unravel.warp.points_to_atlas.parse_args", false]], "parse_args() (in module unravel.warp.to_atlas)": [[103, "unravel.warp.to_atlas.parse_args", false]], "parse_args() (in module unravel.warp.to_fixed)": [[104, "unravel.warp.to_fixed.parse_args", false]], "parse_args() (in module unravel.warp.to_native)": [[105, "unravel.warp.to_native.parse_args", false]], "parse_args() (in module unravel.warp.warp)": [[107, "unravel.warp.warp.parse_args", false]], "parse_color_argument() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.parse_color_argument", false]], "perform_t_tests() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.perform_t_tests", false]], "perform_t_tests() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.perform_t_tests", false]], "perform_tukey_test() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.perform_tukey_test", false]], "pixel_classification() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.pixel_classification", false]], "plot_data() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.plot_data", false]], "plot_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.plot_data", false]], "points_to_img() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.points_to_img", false]], "prepend_conditions() (in module unravel.utilities.prepend_conditions)": [[87, "unravel.utilities.prepend_conditions.prepend_conditions", false]], "print_func_name_args_times() (in module unravel.core.utils)": [[33, "unravel.core.utils.print_func_name_args_times", false]], "print_metadata() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.print_metadata", false]], "process_and_plot_data() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.process_and_plot_data", false]], "process_fdr_and_clusters() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.process_fdr_and_clusters", false]], "process_file() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[20, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.process_file", false]], "process_files_with_glob() (in module unravel.core.utils)": [[33, "unravel.core.utils.process_files_with_glob", false]], "process_intensity() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.process_intensity", false]], "process_slice() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.process_slice", false]], "r_to_z() (in module unravel.voxel_stats.other.r_to_p)": [[95, "unravel.voxel_stats.other.r_to_p.r_to_z", false]], "reg_prep() (in module unravel.register.reg_prep)": [[75, "unravel.register.reg_prep.reg_prep", false]], "relative_hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.relative_hedges_g", false]], "remove_zero_intensity_regions() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.remove_zero_intensity_regions", false]], "rename_files() (in module unravel.utilities.rename)": [[88, "unravel.utilities.rename.rename_files", false]], "rename_items() (in module unravel.utilities.prepend_conditions)": [[87, "unravel.utilities.prepend_conditions.rename_items", false]], "render() (unravel.core.utils.averagetimeperiterationcolumn method)": [[33, "unravel.core.utils.AverageTimePerIterationColumn.render", false]], "render() (unravel.core.utils.custommofncompletecolumn method)": [[33, "unravel.core.utils.CustomMofNCompleteColumn.render", false]], "render() (unravel.core.utils.customtimeelapsedcolumn method)": [[33, "unravel.core.utils.CustomTimeElapsedColumn.render", false]], "render() (unravel.core.utils.customtimeremainingcolumn method)": [[33, "unravel.core.utils.CustomTimeRemainingColumn.render", false]], "reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reorient_for_raw_to_nii_conv", false]], "reorient_ndarray() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reorient_ndarray", false]], "reorient_ndarray2() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reorient_ndarray2", false]], "reorient_nii() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.reorient_nii", false]], "resample() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.resample", false]], "resample_and_convert_points() (in module unravel.image_tools.resample_points)": [[60, "unravel.image_tools.resample_points.resample_and_convert_points", false]], "resolve_path() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.resolve_path", false]], "return_3d_img() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.return_3D_img", false]], "reverse_clusters() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.reverse_clusters", false]], "reverse_reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reverse_reorient_for_raw_to_nii_conv", false]], "rolling_ball_subtraction() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.rolling_ball_subtraction", false]], "rolling_ball_subtraction_opencv_parallel() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.rolling_ball_subtraction_opencv_parallel", false]], "run_randomise_parallel() (in module unravel.voxel_stats.vstats)": [[98, "unravel.voxel_stats.vstats.run_randomise_parallel", false]], "run_script() (in module unravel.cluster_stats.summary)": [[22, "unravel.cluster_stats.summary.run_script", false]], "run_with_timeout() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.run_with_timeout", false]], "save_3d_img() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_3D_img", false]], "save_as_h5() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_h5", false]], "save_as_nii() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_nii", false]], "save_as_nii() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.save_as_nii", false]], "save_as_tifs() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.save_as_tifs", false]], "save_as_zarr() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_zarr", false]], "save_as_zarr() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.save_as_zarr", false]], "save_cropped_img() (in module unravel.cluster_stats.crop)": [[4, "unravel.cluster_stats.crop.save_cropped_img", false]], "save_labels_as_masks() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.save_labels_as_masks", false]], "save_labels_as_masks() (in module unravel.segment.labels_to_masks)": [[80, "unravel.segment.labels_to_masks.save_labels_as_masks", false]], "save_metadata_to_file() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_metadata_to_file", false]], "save_tif() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.save_tif", false]], "save_tif() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.save_tif", false]], "scale_bool_to_full_res() (in module unravel.voxel_stats.apply_mask)": [[91, "unravel.voxel_stats.apply_mask.scale_bool_to_full_res", false]], "scale_to_full_res() (in module unravel.warp.to_native)": [[105, "unravel.warp.to_native.scale_to_full_res", false]], "sm (class in unravel.core.argparse_utils)": [[27, "unravel.core.argparse_utils.SM", false]], "sm (class in unravel.core.argparse_utils_rich)": [[28, "unravel.core.argparse_utils_rich.SM", false]], "smart_float_format() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.smart_float_format", false]], "sort_samples() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.sort_samples", false]], "sort_sunburst_hierarchy() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.sort_sunburst_hierarchy", false]], "spatial_average_2d() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.spatial_average_2D", false]], "spatial_average_3d() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.spatial_average_3D", false]], "split_clusters_based_on_effect() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.split_clusters_based_on_effect", false]], "summarize_significance() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.summarize_significance", false]], "sunburst() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.sunburst", false]], "suppressmetavar (class in unravel.core.argparse_utils)": [[27, "unravel.core.argparse_utils.SuppressMetavar", false]], "suppressmetavar (class in unravel.core.argparse_utils_rich)": [[28, "unravel.core.argparse_utils_rich.SuppressMetavar", false]], "threshold_points_by_region_id() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.threshold_points_by_region_id", false]], "to_atlas() (in module unravel.warp.to_atlas)": [[103, "unravel.warp.to_atlas.to_atlas", false]], "to_native() (in module unravel.warp.to_native)": [[105, "unravel.warp.to_native.to_native", false]], "transform_nii_affine() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.transform_nii_affine", false]], "transpose_img() (in module unravel.image_tools.transpose_axes)": [[63, "unravel.image_tools.transpose_axes.transpose_img", false]], "undo_fill_with_original() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.undo_fill_with_original", false]], "uniq_intensities() (in module unravel.image_tools.unique_intensities)": [[64, "unravel.image_tools.unique_intensities.uniq_intensities", false]], "unravel.cluster_stats.brain_model": [[3, "module-unravel.cluster_stats.brain_model", false]], "unravel.cluster_stats.crop": [[4, "module-unravel.cluster_stats.crop", false]], "unravel.cluster_stats.cstats": [[5, "module-unravel.cluster_stats.cstats", false]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[6, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false]], "unravel.cluster_stats.fdr": [[10, "module-unravel.cluster_stats.fdr", false]], "unravel.cluster_stats.fdr_range": [[11, "module-unravel.cluster_stats.fdr_range", false]], "unravel.cluster_stats.find_incongruent_clusters": [[12, "module-unravel.cluster_stats.find_incongruent_clusters", false]], "unravel.cluster_stats.group_bilateral_data": [[13, "module-unravel.cluster_stats.group_bilateral_data", false]], "unravel.cluster_stats.index": [[16, "module-unravel.cluster_stats.index", false]], "unravel.cluster_stats.legend": [[15, "module-unravel.cluster_stats.legend", false]], "unravel.cluster_stats.mean_if": [[14, "module-unravel.cluster_stats.mean_IF", false]], "unravel.cluster_stats.mean_if_summary": [[17, "module-unravel.cluster_stats.mean_IF_summary", false]], "unravel.cluster_stats.org_data": [[18, "module-unravel.cluster_stats.org_data", false]], "unravel.cluster_stats.prism": [[19, "module-unravel.cluster_stats.prism", false]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[20, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false]], "unravel.cluster_stats.stats_table": [[21, "module-unravel.cluster_stats.stats_table", false]], "unravel.cluster_stats.summary": [[22, "module-unravel.cluster_stats.summary", false]], "unravel.cluster_stats.sunburst": [[23, "module-unravel.cluster_stats.sunburst", false]], "unravel.cluster_stats.table": [[24, "module-unravel.cluster_stats.table", false]], "unravel.cluster_stats.validation": [[26, "module-unravel.cluster_stats.validation", false]], "unravel.core.argparse_utils": [[27, "module-unravel.core.argparse_utils", false]], "unravel.core.argparse_utils_rich": [[28, "module-unravel.core.argparse_utils_rich", false]], "unravel.core.config": [[29, "module-unravel.core.config", false]], "unravel.core.img_io": [[30, "module-unravel.core.img_io", false]], "unravel.core.img_tools": [[31, "module-unravel.core.img_tools", false]], "unravel.core.utils": [[33, "module-unravel.core.utils", false]], "unravel.image_io.h5_to_tifs": [[34, "module-unravel.image_io.h5_to_tifs", false]], "unravel.image_io.img_to_npy": [[35, "module-unravel.image_io.img_to_npy", false]], "unravel.image_io.img_to_points": [[36, "module-unravel.image_io.img_to_points", false]], "unravel.image_io.io_img": [[37, "module-unravel.image_io.io_img", false]], "unravel.image_io.io_nii": [[38, "module-unravel.image_io.io_nii", false]], "unravel.image_io.metadata": [[39, "module-unravel.image_io.metadata", false]], "unravel.image_io.nii_hd": [[40, "module-unravel.image_io.nii_hd", false]], "unravel.image_io.nii_info": [[41, "module-unravel.image_io.nii_info", false]], "unravel.image_io.nii_to_tifs": [[42, "module-unravel.image_io.nii_to_tifs", false]], "unravel.image_io.nii_to_zarr": [[43, "module-unravel.image_io.nii_to_zarr", false]], "unravel.image_io.points_to_img": [[44, "module-unravel.image_io.points_to_img", false]], "unravel.image_io.reorient_nii": [[45, "module-unravel.image_io.reorient_nii", false]], "unravel.image_io.tif_to_tifs": [[46, "module-unravel.image_io.tif_to_tifs", false]], "unravel.image_io.zarr_to_nii": [[48, "module-unravel.image_io.zarr_to_nii", false]], "unravel.image_tools.atlas.relabel_nii": [[50, "module-unravel.image_tools.atlas.relabel_nii", false]], "unravel.image_tools.atlas.wireframe": [[52, "module-unravel.image_tools.atlas.wireframe", false]], "unravel.image_tools.avg": [[53, "module-unravel.image_tools.avg", false]], "unravel.image_tools.bbox": [[54, "module-unravel.image_tools.bbox", false]], "unravel.image_tools.dog": [[49, "module-unravel.image_tools.DoG", false]], "unravel.image_tools.extend": [[55, "module-unravel.image_tools.extend", false]], "unravel.image_tools.max": [[56, "module-unravel.image_tools.max", false]], "unravel.image_tools.pad": [[57, "module-unravel.image_tools.pad", false]], "unravel.image_tools.rb": [[58, "module-unravel.image_tools.rb", false]], "unravel.image_tools.resample": [[59, "module-unravel.image_tools.resample", false]], "unravel.image_tools.resample_points": [[60, "module-unravel.image_tools.resample_points", false]], "unravel.image_tools.spatial_averaging": [[61, "module-unravel.image_tools.spatial_averaging", false]], "unravel.image_tools.transpose_axes": [[63, "module-unravel.image_tools.transpose_axes", false]], "unravel.image_tools.unique_intensities": [[64, "module-unravel.image_tools.unique_intensities", false]], "unravel.region_stats.rstats": [[65, "module-unravel.region_stats.rstats", false]], "unravel.region_stats.rstats_mean_if": [[66, "module-unravel.region_stats.rstats_mean_IF", false]], "unravel.region_stats.rstats_mean_if_in_segmented_voxels": [[67, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false]], "unravel.region_stats.rstats_mean_if_summary": [[68, "module-unravel.region_stats.rstats_mean_IF_summary", false]], "unravel.region_stats.rstats_summary": [[69, "module-unravel.region_stats.rstats_summary", false]], "unravel.register.affine_initializer": [[71, "module-unravel.register.affine_initializer", false]], "unravel.register.reg": [[72, "module-unravel.register.reg", false]], "unravel.register.reg_check": [[73, "module-unravel.register.reg_check", false]], "unravel.register.reg_check_brain_mask": [[74, "module-unravel.register.reg_check_brain_mask", false]], "unravel.register.reg_prep": [[75, "module-unravel.register.reg_prep", false]], "unravel.segment.brain_mask": [[77, "module-unravel.segment.brain_mask", false]], "unravel.segment.copy_tifs": [[78, "module-unravel.segment.copy_tifs", false]], "unravel.segment.ilastik_pixel_classification": [[79, "module-unravel.segment.ilastik_pixel_classification", false]], "unravel.segment.labels_to_masks": [[80, "module-unravel.segment.labels_to_masks", false]], "unravel.unravel_commands": [[83, "module-unravel.unravel_commands", false]], "unravel.utilities.aggregate_files_from_sample_dirs": [[84, "module-unravel.utilities.aggregate_files_from_sample_dirs", false]], "unravel.utilities.aggregate_files_recursively": [[85, "module-unravel.utilities.aggregate_files_recursively", false]], "unravel.utilities.clean_tif_dirs": [[86, "module-unravel.utilities.clean_tif_dirs", false]], "unravel.utilities.prepend_conditions": [[87, "module-unravel.utilities.prepend_conditions", false]], "unravel.utilities.rename": [[88, "module-unravel.utilities.rename", false]], "unravel.utilities.toggle_samples": [[90, "module-unravel.utilities.toggle_samples", false]], "unravel.voxel_stats.apply_mask": [[91, "module-unravel.voxel_stats.apply_mask", false]], "unravel.voxel_stats.hemi_to_lr_avg": [[92, "module-unravel.voxel_stats.hemi_to_LR_avg", false]], "unravel.voxel_stats.mirror": [[93, "module-unravel.voxel_stats.mirror", false]], "unravel.voxel_stats.other.if_outliers": [[94, "module-unravel.voxel_stats.other.IF_outliers", false]], "unravel.voxel_stats.other.r_to_p": [[95, "module-unravel.voxel_stats.other.r_to_p", false]], "unravel.voxel_stats.vstats": [[98, "module-unravel.voxel_stats.vstats", false]], "unravel.voxel_stats.vstats_prep": [[99, "module-unravel.voxel_stats.vstats_prep", false]], "unravel.voxel_stats.whole_to_lr_avg": [[100, "module-unravel.voxel_stats.whole_to_LR_avg", false]], "unravel.voxel_stats.z_score": [[101, "module-unravel.voxel_stats.z_score", false]], "unravel.warp.points_to_atlas": [[102, "module-unravel.warp.points_to_atlas", false]], "unravel.warp.to_atlas": [[103, "module-unravel.warp.to_atlas", false]], "unravel.warp.to_fixed": [[104, "module-unravel.warp.to_fixed", false]], "unravel.warp.to_native": [[105, "module-unravel.warp.to_native", false]], "unravel.warp.warp": [[107, "module-unravel.warp.warp", false]], "valid_clusters_t_test() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.valid_clusters_t_test", false]], "verbose (unravel.core.config.configuration attribute)": [[29, "unravel.core.config.Configuration.verbose", false]], "verbose_end_msg() (in module unravel.core.utils)": [[33, "unravel.core.utils.verbose_end_msg", false]], "verbose_start_msg() (in module unravel.core.utils)": [[33, "unravel.core.utils.verbose_start_msg", false]], "warp() (in module unravel.warp.warp)": [[107, "unravel.warp.warp.warp", false]], "whole_to_lr_avg() (in module unravel.voxel_stats.whole_to_lr_avg)": [[100, "unravel.voxel_stats.whole_to_LR_avg.whole_to_LR_avg", false]], "write_to_csv() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.write_to_csv", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.write_to_csv", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.write_to_csv", false]], "z_score() (in module unravel.voxel_stats.z_score)": [[101, "unravel.voxel_stats.z_score.z_score", false]], "z_to_p() (in module unravel.voxel_stats.other.r_to_p)": [[95, "unravel.voxel_stats.other.r_to_p.z_to_p", false]], "zarr_to_ndarray() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.zarr_to_ndarray", false]]}, "objects": {"unravel": [[83, 0, 0, "-", "unravel_commands"]], "unravel.cluster_stats": [[3, 0, 0, "-", "brain_model"], [4, 0, 0, "-", "crop"], [5, 0, 0, "-", "cstats"], [10, 0, 0, "-", "fdr"], [11, 0, 0, "-", "fdr_range"], [12, 0, 0, "-", "find_incongruent_clusters"], [13, 0, 0, "-", "group_bilateral_data"], [16, 0, 0, "-", "index"], [15, 0, 0, "-", "legend"], [14, 0, 0, "-", "mean_IF"], [17, 0, 0, "-", "mean_IF_summary"], [18, 0, 0, "-", "org_data"], [19, 0, 0, "-", "prism"], [20, 0, 0, "-", "recursively_mirror_rev_cluster_indices"], [21, 0, 0, "-", "stats_table"], [22, 0, 0, "-", "summary"], [23, 0, 0, "-", "sunburst"], [24, 0, 0, "-", "table"], [26, 0, 0, "-", "validation"]], "unravel.cluster_stats.brain_model": [[3, 1, 1, "", "main"], [3, 1, 1, "", "parse_args"]], "unravel.cluster_stats.crop": [[4, 1, 1, "", "main"], [4, 1, 1, "", "parse_args"], [4, 1, 1, "", "save_cropped_img"]], "unravel.cluster_stats.cstats": [[5, 1, 1, "", "cluster_validation_data_df"], [5, 1, 1, "", "condition_selector"], [5, 1, 1, "", "main"], [5, 1, 1, "", "parse_args"], [5, 1, 1, "", "perform_tukey_test"], [5, 1, 1, "", "valid_clusters_t_test"]], "unravel.cluster_stats.effect_sizes": [[6, 0, 0, "-", "effect_sizes"], [7, 0, 0, "-", "effect_sizes_by_sex__absolute"], [8, 0, 0, "-", "effect_sizes_by_sex__relative"]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[6, 1, 1, "", "condition_selector"], [6, 1, 1, "", "filter_dataframe"], [6, 1, 1, "", "hedges_g"], [6, 1, 1, "", "main"], [6, 1, 1, "", "parse_args"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute": [[7, 1, 1, "", "condition_selector"], [7, 1, 1, "", "filter_dataframe"], [7, 1, 1, "", "hedges_g"], [7, 1, 1, "", "main"], [7, 1, 1, "", "parse_args"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[8, 1, 1, "", "condition_selector"], [8, 1, 1, "", "filter_dataframe"], [8, 1, 1, "", "main"], [8, 1, 1, "", "mean_std_count"], [8, 1, 1, "", "parse_args"], [8, 1, 1, "", "relative_hedges_g"]], "unravel.cluster_stats.fdr": [[10, 1, 1, "", "cluster_index"], [10, 1, 1, "", "fdr"], [10, 1, 1, "", "main"], [10, 1, 1, "", "parse_args"], [10, 1, 1, "", "process_fdr_and_clusters"], [10, 1, 1, "", "reverse_clusters"], [10, 1, 1, "", "split_clusters_based_on_effect"]], "unravel.cluster_stats.fdr_range": [[11, 1, 1, "", "fdr_range"], [11, 1, 1, "", "main"], [11, 1, 1, "", "parse_args"], [11, 1, 1, "", "smart_float_format"]], "unravel.cluster_stats.find_incongruent_clusters": [[12, 1, 1, "", "find_incongruent_clusters"], [12, 1, 1, "", "main"], [12, 1, 1, "", "parse_args"]], "unravel.cluster_stats.group_bilateral_data": [[13, 1, 1, "", "group_hemisphere_data"], [13, 1, 1, "", "main"], [13, 1, 1, "", "parse_args"]], "unravel.cluster_stats.index": [[16, 1, 1, "", "generate_sunburst"], [16, 1, 1, "", "main"], [16, 1, 1, "", "parse_args"]], "unravel.cluster_stats.legend": [[15, 1, 1, "", "apply_rgb_to_cell"], [15, 1, 1, "", "extract_unique_regions_from_file"], [15, 1, 1, "", "main"], [15, 1, 1, "", "parse_args"]], "unravel.cluster_stats.mean_IF": [[14, 1, 1, "", "calculate_mean_intensity_in_clusters"], [14, 1, 1, "", "main"], [14, 1, 1, "", "parse_args"], [14, 1, 1, "", "write_to_csv"]], "unravel.cluster_stats.mean_IF_summary": [[17, 1, 1, "", "load_data"], [17, 1, 1, "", "main"], [17, 1, 1, "", "parse_args"], [17, 1, 1, "", "perform_t_tests"], [17, 1, 1, "", "plot_data"]], "unravel.cluster_stats.org_data": [[18, 1, 1, "", "copy_stats_files"], [18, 1, 1, "", "cp"], [18, 1, 1, "", "find_matching_directory"], [18, 1, 1, "", "main"], [18, 1, 1, "", "organize_validation_data"], [18, 1, 1, "", "parse_args"]], "unravel.cluster_stats.prism": [[19, 1, 1, "", "generate_summary_table"], [19, 1, 1, "", "main"], [19, 1, 1, "", "parse_args"], [19, 1, 1, "", "sort_samples"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[20, 1, 1, "", "main"], [20, 1, 1, "", "parse_args"], [20, 1, 1, "", "process_file"]], "unravel.cluster_stats.stats_table": [[21, 1, 1, "", "cluster_summary"], [21, 1, 1, "", "main"], [21, 1, 1, "", "parse_args"]], "unravel.cluster_stats.summary": [[22, 1, 1, "", "main"], [22, 1, 1, "", "parse_args"], [22, 1, 1, "", "run_script"]], "unravel.cluster_stats.sunburst": [[23, 1, 1, "", "calculate_regional_volumes"], [23, 1, 1, "", "main"], [23, 1, 1, "", "parse_args"], [23, 1, 1, "", "sunburst"]], "unravel.cluster_stats.table": [[24, 1, 1, "", "calculate_top_regions"], [24, 1, 1, "", "can_collapse"], [24, 1, 1, "", "collapse_hierarchy"], [24, 1, 1, "", "fill_na_with_last_known"], [24, 1, 1, "", "get_fill_color"], [24, 1, 1, "", "get_top_regions_and_percent_vols"], [24, 1, 1, "", "main"], [24, 1, 1, "", "parse_args"], [24, 1, 1, "", "sort_sunburst_hierarchy"], [24, 1, 1, "", "undo_fill_with_original"]], "unravel.cluster_stats.validation": [[26, 1, 1, "", "cluster_bbox"], [26, 1, 1, "", "cluster_bbox_parallel"], [26, 1, 1, "", "count_cells"], [26, 1, 1, "", "crop_outer_space"], [26, 1, 1, "", "density_in_cluster"], [26, 1, 1, "", "density_in_cluster_parallel"], [26, 1, 1, "", "main"], [26, 1, 1, "", "parse_args"]], "unravel.core": [[27, 0, 0, "-", "argparse_utils"], [28, 0, 0, "-", "argparse_utils_rich"], [29, 0, 0, "-", "config"], [30, 0, 0, "-", "img_io"], [31, 0, 0, "-", "img_tools"], [33, 0, 0, "-", "utils"]], "unravel.core.argparse_utils": [[27, 2, 1, "", "SM"], [27, 2, 1, "", "SuppressMetavar"]], "unravel.core.argparse_utils_rich": [[28, 2, 1, "", "SM"], [28, 2, 1, "", "SuppressMetavar"]], "unravel.core.config": [[29, 2, 1, "", "AttrDict"], [29, 2, 1, "", "Config"], [29, 2, 1, "", "Configuration"]], "unravel.core.config.Configuration": [[29, 3, 1, "", "verbose"]], "unravel.core.img_io": [[30, 1, 1, "", "extract_resolution"], [30, 1, 1, "", "load_3D_img"], [30, 1, 1, "", "load_czi"], [30, 1, 1, "", "load_h5"], [30, 1, 1, "", "load_image_metadata_from_txt"], [30, 1, 1, "", "load_nii"], [30, 1, 1, "", "load_nii_subset"], [30, 1, 1, "", "load_tifs"], [30, 1, 1, "", "load_zarr"], [30, 1, 1, "", "metadata"], [30, 1, 1, "", "nii_path_or_nii"], [30, 1, 1, "", "nii_to_ndarray"], [30, 1, 1, "", "nii_voxel_size"], [30, 1, 1, "", "resolve_path"], [30, 1, 1, "", "return_3D_img"], [30, 1, 1, "", "save_3D_img"], [30, 1, 1, "", "save_as_h5"], [30, 1, 1, "", "save_as_nii"], [30, 1, 1, "", "save_as_tifs"], [30, 1, 1, "", "save_as_zarr"], [30, 1, 1, "", "save_metadata_to_file"]], "unravel.core.img_tools": [[31, 1, 1, "", "cluster_IDs"], [31, 1, 1, "", "crop"], [31, 1, 1, "", "find_bounding_box"], [31, 1, 1, "", "pad"], [31, 1, 1, "", "pixel_classification"], [31, 1, 1, "", "process_slice"], [31, 1, 1, "", "reorient_for_raw_to_nii_conv"], [31, 1, 1, "", "reorient_ndarray"], [31, 1, 1, "", "reorient_ndarray2"], [31, 1, 1, "", "resample"], [31, 1, 1, "", "reverse_reorient_for_raw_to_nii_conv"], [31, 1, 1, "", "rolling_ball_subtraction_opencv_parallel"]], "unravel.core.utils": [[33, 2, 1, "", "AverageTimePerIterationColumn"], [33, 2, 1, "", "CustomMofNCompleteColumn"], [33, 2, 1, "", "CustomTimeElapsedColumn"], [33, 2, 1, "", "CustomTimeRemainingColumn"], [33, 1, 1, "", "copy_files"], [33, 1, 1, "", "get_dir_name_from_args"], [33, 1, 1, "", "get_samples"], [33, 1, 1, "", "initialize_progress_bar"], [33, 1, 1, "", "load_config"], [33, 1, 1, "", "load_text_from_file"], [33, 1, 1, "", "log_command"], [33, 1, 1, "", "print_func_name_args_times"], [33, 1, 1, "", "process_files_with_glob"], [33, 1, 1, "", "verbose_end_msg"], [33, 1, 1, "", "verbose_start_msg"]], "unravel.core.utils.AverageTimePerIterationColumn": [[33, 4, 1, "", "render"]], "unravel.core.utils.CustomMofNCompleteColumn": [[33, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeElapsedColumn": [[33, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeRemainingColumn": [[33, 4, 1, "", "render"]], "unravel.image_io": [[34, 0, 0, "-", "h5_to_tifs"], [35, 0, 0, "-", "img_to_npy"], [36, 0, 0, "-", "img_to_points"], [37, 0, 0, "-", "io_img"], [38, 0, 0, "-", "io_nii"], [39, 0, 0, "-", "metadata"], [40, 0, 0, "-", "nii_hd"], [41, 0, 0, "-", "nii_info"], [42, 0, 0, "-", "nii_to_tifs"], [43, 0, 0, "-", "nii_to_zarr"], [44, 0, 0, "-", "points_to_img"], [45, 0, 0, "-", "reorient_nii"], [46, 0, 0, "-", "tif_to_tifs"], [48, 0, 0, "-", "zarr_to_nii"]], "unravel.image_io.h5_to_tifs": [[34, 1, 1, "", "find_largest_h5_file"], [34, 1, 1, "", "load_h5"], [34, 1, 1, "", "main"], [34, 1, 1, "", "metadata_from_h5"], [34, 1, 1, "", "parse_args"], [34, 1, 1, "", "save_as_tifs"]], "unravel.image_io.img_to_npy": [[35, 1, 1, "", "main"], [35, 1, 1, "", "parse_args"]], "unravel.image_io.img_to_points": [[36, 1, 1, "", "img_to_points"], [36, 1, 1, "", "main"], [36, 1, 1, "", "parse_args"]], "unravel.image_io.io_img": [[37, 1, 1, "", "main"], [37, 1, 1, "", "parse_args"]], "unravel.image_io.io_nii": [[38, 1, 1, "", "convert_dtype"], [38, 1, 1, "", "main"], [38, 1, 1, "", "parse_args"]], "unravel.image_io.metadata": [[39, 1, 1, "", "get_dims_from_tifs"], [39, 1, 1, "", "main"], [39, 1, 1, "", "parse_args"], [39, 1, 1, "", "print_metadata"]], "unravel.image_io.nii_hd": [[40, 1, 1, "", "main"], [40, 1, 1, "", "parse_args"]], "unravel.image_io.nii_info": [[41, 1, 1, "", "main"], [41, 1, 1, "", "nii_axis_codes"], [41, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_tifs": [[42, 1, 1, "", "main"], [42, 1, 1, "", "nii_to_tifs"], [42, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_zarr": [[43, 1, 1, "", "main"], [43, 1, 1, "", "nii_to_ndarray"], [43, 1, 1, "", "parse_args"], [43, 1, 1, "", "save_as_zarr"]], "unravel.image_io.points_to_img": [[44, 1, 1, "", "load_and_prepare_points"], [44, 1, 1, "", "main"], [44, 1, 1, "", "parse_args"], [44, 1, 1, "", "points_to_img"], [44, 1, 1, "", "threshold_points_by_region_id"]], "unravel.image_io.reorient_nii": [[45, 1, 1, "", "main"], [45, 1, 1, "", "parse_args"], [45, 1, 1, "", "reorient_nii"], [45, 1, 1, "", "transform_nii_affine"]], "unravel.image_io.tif_to_tifs": [[46, 1, 1, "", "find_largest_tif_file"], [46, 1, 1, "", "load_3D_tif"], [46, 1, 1, "", "main"], [46, 1, 1, "", "metadata_from_3D_tif"], [46, 1, 1, "", "parse_args"], [46, 1, 1, "", "save_as_tifs"]], "unravel.image_io.zarr_to_nii": [[48, 1, 1, "", "define_zarr_to_nii_output"], [48, 1, 1, "", "main"], [48, 1, 1, "", "parse_args"], [48, 1, 1, "", "save_as_nii"], [48, 1, 1, "", "zarr_to_ndarray"]], "unravel.image_tools": [[49, 0, 0, "-", "DoG"], [53, 0, 0, "-", "avg"], [54, 0, 0, "-", "bbox"], [55, 0, 0, "-", "extend"], [56, 0, 0, "-", "max"], [57, 0, 0, "-", "pad"], [58, 0, 0, "-", "rb"], [59, 0, 0, "-", "resample"], [60, 0, 0, "-", "resample_points"], [61, 0, 0, "-", "spatial_averaging"], [63, 0, 0, "-", "transpose_axes"], [64, 0, 0, "-", "unique_intensities"]], "unravel.image_tools.DoG": [[49, 1, 1, "", "difference_of_gaussians"], [49, 1, 1, "", "load_tif"], [49, 1, 1, "", "main"], [49, 1, 1, "", "parse_args"], [49, 1, 1, "", "save_tif"]], "unravel.image_tools.atlas": [[50, 0, 0, "-", "relabel_nii"], [52, 0, 0, "-", "wireframe"]], "unravel.image_tools.atlas.relabel_nii": [[50, 1, 1, "", "main"], [50, 1, 1, "", "parse_args"]], "unravel.image_tools.atlas.wireframe": [[52, 1, 1, "", "generate_wireframe"], [52, 1, 1, "", "main"], [52, 1, 1, "", "parse_args"], [52, 1, 1, "", "process_intensity"]], "unravel.image_tools.avg": [[53, 1, 1, "", "main"], [53, 1, 1, "", "parse_args"]], "unravel.image_tools.bbox": [[54, 1, 1, "", "main"], [54, 1, 1, "", "parse_args"]], "unravel.image_tools.extend": [[55, 1, 1, "", "extend_one_side_3d_array"], [55, 1, 1, "", "main"], [55, 1, 1, "", "parse_args"]], "unravel.image_tools.max": [[56, 1, 1, "", "find_max_intensity"], [56, 1, 1, "", "main"], [56, 1, 1, "", "parse_args"]], "unravel.image_tools.pad": [[57, 1, 1, "", "main"], [57, 1, 1, "", "parse_args"]], "unravel.image_tools.rb": [[58, 1, 1, "", "load_tif"], [58, 1, 1, "", "main"], [58, 1, 1, "", "parse_args"], [58, 1, 1, "", "rolling_ball_subtraction"], [58, 1, 1, "", "save_tif"]], "unravel.image_tools.resample": [[59, 1, 1, "", "create_resampled_nii"], [59, 1, 1, "", "main"], [59, 1, 1, "", "parse_args"]], "unravel.image_tools.resample_points": [[60, 1, 1, "", "main"], [60, 1, 1, "", "parse_args"], [60, 1, 1, "", "resample_and_convert_points"]], "unravel.image_tools.spatial_averaging": [[61, 1, 1, "", "apply_2D_mean_filter"], [61, 1, 1, "", "main"], [61, 1, 1, "", "parse_args"], [61, 1, 1, "", "spatial_average_2D"], [61, 1, 1, "", "spatial_average_3D"]], "unravel.image_tools.transpose_axes": [[63, 1, 1, "", "main"], [63, 1, 1, "", "parse_args"], [63, 1, 1, "", "transpose_img"]], "unravel.image_tools.unique_intensities": [[64, 1, 1, "", "main"], [64, 1, 1, "", "parse_args"], [64, 1, 1, "", "uniq_intensities"]], "unravel.region_stats": [[65, 0, 0, "-", "rstats"], [66, 0, 0, "-", "rstats_mean_IF"], [67, 0, 0, "-", "rstats_mean_IF_in_segmented_voxels"], [68, 0, 0, "-", "rstats_mean_IF_summary"], [69, 0, 0, "-", "rstats_summary"]], "unravel.region_stats.rstats": [[65, 1, 1, "", "calculate_regional_densities"], [65, 1, 1, "", "calculate_regional_volumes"], [65, 1, 1, "", "count_cells_in_regions"], [65, 1, 1, "", "get_atlas_region_at_coords"], [65, 1, 1, "", "main"], [65, 1, 1, "", "parse_args"]], "unravel.region_stats.rstats_mean_IF": [[66, 1, 1, "", "calculate_mean_intensity"], [66, 1, 1, "", "main"], [66, 1, 1, "", "parse_args"], [66, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels": [[67, 1, 1, "", "calculate_mean_intensity"], [67, 1, 1, "", "main"], [67, 1, 1, "", "parse_args"], [67, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_summary": [[68, 1, 1, "", "filter_region_ids"], [68, 1, 1, "", "get_all_region_ids"], [68, 1, 1, "", "get_max_region_id_from_csvs"], [68, 1, 1, "", "get_region_details"], [68, 1, 1, "", "load_data"], [68, 1, 1, "", "main"], [68, 1, 1, "", "parse_args"], [68, 1, 1, "", "perform_t_tests"], [68, 1, 1, "", "plot_data"], [68, 1, 1, "", "remove_zero_intensity_regions"]], "unravel.region_stats.rstats_summary": [[69, 1, 1, "", "get_region_details"], [69, 1, 1, "", "main"], [69, 1, 1, "", "parse_args"], [69, 1, 1, "", "parse_color_argument"], [69, 1, 1, "", "process_and_plot_data"], [69, 1, 1, "", "summarize_significance"]], "unravel.register": [[71, 0, 0, "-", "affine_initializer"], [72, 0, 0, "-", "reg"], [73, 0, 0, "-", "reg_check"], [74, 0, 0, "-", "reg_check_brain_mask"], [75, 0, 0, "-", "reg_prep"]], "unravel.register.affine_initializer": [[71, 1, 1, "", "affine_initializer_wrapper"], [71, 1, 1, "", "main"], [71, 1, 1, "", "parse_args"], [71, 1, 1, "", "run_with_timeout"]], "unravel.register.reg": [[72, 1, 1, "", "bias_correction"], [72, 1, 1, "", "main"], [72, 1, 1, "", "parse_args"]], "unravel.register.reg_check": [[73, 1, 1, "", "main"], [73, 1, 1, "", "parse_args"]], "unravel.register.reg_check_brain_mask": [[74, 1, 1, "", "main"], [74, 1, 1, "", "parse_args"]], "unravel.register.reg_prep": [[75, 1, 1, "", "main"], [75, 1, 1, "", "parse_args"], [75, 1, 1, "", "reg_prep"]], "unravel.segment": [[77, 0, 0, "-", "brain_mask"], [78, 0, 0, "-", "copy_tifs"], [79, 0, 0, "-", "ilastik_pixel_classification"], [80, 0, 0, "-", "labels_to_masks"]], "unravel.segment.brain_mask": [[77, 1, 1, "", "main"], [77, 1, 1, "", "parse_args"]], "unravel.segment.copy_tifs": [[78, 1, 1, "", "copy_specific_slices"], [78, 1, 1, "", "main"], [78, 1, 1, "", "parse_args"]], "unravel.segment.ilastik_pixel_classification": [[79, 1, 1, "", "count_files"], [79, 1, 1, "", "main"], [79, 1, 1, "", "parse_args"], [79, 1, 1, "", "save_labels_as_masks"]], "unravel.segment.labels_to_masks": [[80, 1, 1, "", "main"], [80, 1, 1, "", "parse_args"], [80, 1, 1, "", "save_labels_as_masks"]], "unravel.unravel_commands": [[83, 1, 1, "", "main"], [83, 1, 1, "", "parse_args"]], "unravel.utilities": [[84, 0, 0, "-", "aggregate_files_from_sample_dirs"], [85, 0, 0, "-", "aggregate_files_recursively"], [86, 0, 0, "-", "clean_tif_dirs"], [87, 0, 0, "-", "prepend_conditions"], [88, 0, 0, "-", "rename"], [90, 0, 0, "-", "toggle_samples"]], "unravel.utilities.aggregate_files_from_sample_dirs": [[84, 1, 1, "", "aggregate_files_from_sample_dirs"], [84, 1, 1, "", "main"], [84, 1, 1, "", "parse_args"]], "unravel.utilities.aggregate_files_recursively": [[85, 1, 1, "", "find_and_copy_files"], [85, 1, 1, "", "main"], [85, 1, 1, "", "parse_args"]], "unravel.utilities.clean_tif_dirs": [[86, 1, 1, "", "clean_tifs_dir"], [86, 1, 1, "", "main"], [86, 1, 1, "", "parse_args"]], "unravel.utilities.prepend_conditions": [[87, 1, 1, "", "main"], [87, 1, 1, "", "parse_args"], [87, 1, 1, "", "prepend_conditions"], [87, 1, 1, "", "rename_items"]], "unravel.utilities.rename": [[88, 1, 1, "", "main"], [88, 1, 1, "", "parse_args"], [88, 1, 1, "", "rename_files"]], "unravel.utilities.toggle_samples": [[90, 1, 1, "", "main"], [90, 1, 1, "", "parse_args"]], "unravel.voxel_stats": [[91, 0, 0, "-", "apply_mask"], [92, 0, 0, "-", "hemi_to_LR_avg"], [93, 0, 0, "-", "mirror"], [98, 0, 0, "-", "vstats"], [99, 0, 0, "-", "vstats_prep"], [100, 0, 0, "-", "whole_to_LR_avg"], [101, 0, 0, "-", "z_score"]], "unravel.voxel_stats.apply_mask": [[91, 1, 1, "", "apply_mask_to_ndarray"], [91, 1, 1, "", "dilate_mask"], [91, 1, 1, "", "load_mask"], [91, 1, 1, "", "main"], [91, 1, 1, "", "mean_intensity_in_brain"], [91, 1, 1, "", "parse_args"], [91, 1, 1, "", "scale_bool_to_full_res"]], "unravel.voxel_stats.hemi_to_LR_avg": [[92, 1, 1, "", "hemi_to_LR_avg"], [92, 1, 1, "", "main"], [92, 1, 1, "", "parse_args"]], "unravel.voxel_stats.mirror": [[93, 1, 1, "", "main"], [93, 1, 1, "", "mirror"], [93, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other": [[94, 0, 0, "-", "IF_outliers"], [95, 0, 0, "-", "r_to_p"]], "unravel.voxel_stats.other.IF_outliers": [[94, 1, 1, "", "detect_outliers"], [94, 1, 1, "", "main"], [94, 1, 1, "", "mean_intensity_within_mask"], [94, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other.r_to_p": [[95, 1, 1, "", "main"], [95, 1, 1, "", "parse_args"], [95, 1, 1, "", "r_to_z"], [95, 1, 1, "", "z_to_p"]], "unravel.voxel_stats.vstats": [[98, 1, 1, "", "calculate_fragments"], [98, 1, 1, "", "check_fdr_command"], [98, 1, 1, "", "create_design_ttest2"], [98, 1, 1, "", "get_groups_info"], [98, 1, 1, "", "main"], [98, 1, 1, "", "parse_args"], [98, 1, 1, "", "run_randomise_parallel"]], "unravel.voxel_stats.vstats_prep": [[99, 1, 1, "", "main"], [99, 1, 1, "", "parse_args"]], "unravel.voxel_stats.whole_to_LR_avg": [[100, 1, 1, "", "main"], [100, 1, 1, "", "parse_args"], [100, 1, 1, "", "whole_to_LR_avg"]], "unravel.voxel_stats.z_score": [[101, 1, 1, "", "main"], [101, 1, 1, "", "parse_args"], [101, 1, 1, "", "z_score"]], "unravel.warp": [[102, 0, 0, "-", "points_to_atlas"], [103, 0, 0, "-", "to_atlas"], [104, 0, 0, "-", "to_fixed"], [105, 0, 0, "-", "to_native"], [107, 0, 0, "-", "warp"]], "unravel.warp.points_to_atlas": [[102, 1, 1, "", "main"], [102, 1, 1, "", "parse_args"]], "unravel.warp.to_atlas": [[103, 1, 1, "", "copy_nii_header"], [103, 1, 1, "", "main"], [103, 1, 1, "", "parse_args"], [103, 1, 1, "", "to_atlas"]], "unravel.warp.to_fixed": [[104, 1, 1, "", "calculate_padded_dimensions"], [104, 1, 1, "", "forward_warp"], [104, 1, 1, "", "main"], [104, 1, 1, "", "parse_args"]], "unravel.warp.to_native": [[105, 1, 1, "", "calculate_resampled_padded_dimensions"], [105, 1, 1, "", "main"], [105, 1, 1, "", "parse_args"], [105, 1, 1, "", "scale_to_full_res"], [105, 1, 1, "", "to_native"]], "unravel.warp.warp": [[107, 1, 1, "", "main"], [107, 1, 1, "", "parse_args"], [107, 1, 1, "", "warp"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:attribute", "4": "py:method"}, "terms": {"": [0, 2, 6, 7, 8, 20, 22, 24, 25, 26, 28, 30, 31, 44, 45, 55, 64, 65, 67, 69, 70, 72, 75, 78, 82, 85, 86, 93, 95, 98, 101], "0": [0, 6, 7, 8, 10, 15, 20, 30, 31, 36, 38, 44, 45, 49, 52, 58, 59, 64, 68, 72, 82, 92, 93, 97, 98, 100, 104, 105], "000": 0, "0000": [0, 78], "0005": [0, 78], "005": 0, "0050": [0, 78], "01": 0, "0100": [0, 78], "05": [0, 10], "0500": [0, 78], "1": [0, 2, 5, 6, 7, 8, 10, 16, 19, 24, 31, 36, 38, 44, 45, 49, 52, 58, 59, 64, 77, 82, 92, 97, 98, 100], "10": [0, 23, 44, 71], "100": [0, 55, 62, 82], "1000": [0, 30, 78], "10000": [0, 69], "11": 2, "12000": 98, "15": [0, 31, 44, 57, 72, 104, 105], "16": 0, "18": 65, "18000": 98, "1st": [0, 45, 75, 99, 103], "2": [0, 5, 6, 7, 8, 10, 16, 19, 20, 27, 28, 44, 45, 49, 58, 61, 72, 92, 93, 100], "20": [0, 44], "20000": [3, 44, 60, 102], "2017__regionid_side_idpath_region_abbr": 68, "2017_info": [15, 16, 23, 24], "2017_regional_summari": [3, 69], "2020": [0, 20, 93], "2020__regionid_side_idpath_region_abbr": [65, 68], "2020_info": [15, 16, 23, 24], "2020_regional_summari": [3, 69], "24": [27, 28], "25": [16, 20, 23, 44, 93, 95], "255": [0, 38, 44], "256": 80, "26": [61, 65], "27af2": 69, "2d": [44, 49, 61], "2d67c8": 69, "2nd": [0, 45], "2x2": 0, "3": [2, 16, 19, 23, 31, 38, 39, 44, 45, 49, 60, 61, 72, 79, 94, 103], "30": 44, "300": 98, "32": 0, "33063286": 0, "35": 44, "37248402": 6, "3d": [0, 1, 26, 30, 31, 35, 36, 37, 44, 46, 49, 52, 55, 58, 60, 61, 64, 65, 67, 75, 103], "3d_brain": 22, "3post3": 2, "3rd": [0, 45], "3x3": 61, "3x3x3": [0, 61], "4": [0, 58, 72, 99], "400": 0, "488": 46, "4d": 0, "5": [6, 7, 8, 49], "50": [44, 60, 77, 102, 104, 105], "52": 60, "5232": [39, 103], "535": 0, "56": 0, "6": [26, 39, 60, 65, 103], "65": 0, "672": 0, "6e10_rb20": 91, "6e10_rb20_wo_artifact": 91, "6e10_seg_ilastik_2": 91, "7": 0, "7f25d3": 69, "8": [0, 6, 7, 8, 31, 47, 61, 82], "9": 11, "A": [0, 2, 5, 6, 7, 8, 12, 27, 28, 29, 33, 36, 44, 45, 52, 60, 72], "As": 24, "For": [0, 2, 10, 12, 13, 16, 22, 23, 26, 45, 52, 65, 79, 83, 87, 90, 98, 104, 107], "IF": [0, 12, 17, 67, 68], "If": [1, 2, 5, 6, 7, 8, 14, 17, 22, 26, 30, 31, 33, 34, 36, 44, 45, 46, 68, 87, 101, 102, 107], "In": 0, "It": [0, 3, 13, 15, 24, 29, 69, 98], "Its": 0, "On": 2, "Or": [0, 2], "The": [0, 1, 3, 5, 6, 7, 8, 10, 13, 17, 22, 24, 27, 28, 29, 30, 33, 36, 44, 45, 49, 60, 61, 68, 69, 72, 87, 90, 98, 104], "Then": [0, 2, 22], "These": [0, 100], "To": [0, 2, 58, 69, 79], "With": [0, 36, 38], "_": [0, 5, 6, 7, 8, 17, 19, 22, 65, 68, 90], "_6e10_seg_ilastik_2": 91, "__call__": [27, 28], "__getattr__": 29, "__init__": [27, 28, 29], "_bin": 0, "_cell_centroid": 102, "_cell_dens": 69, "_cfos_rb4_30um_ccf_spac": 99, "_cfos_rb4_30um_ccf_space_z_lravg": 84, "_cfos_rb4_atlas_spac": [0, 101], "_cfos_rb4_atlas_space_z": 0, "_cluster_validation_info": 12, "_data": 26, "_density_data": [5, 19], "_density_data_lh": [5, 19], "_density_data_rh": [5, 19], "_description_": [31, 64], "_f_gt_m": 8, "_f_gt_m_valid_clust": 8, "_fill_text": [27, 28], "_format_action_invoc": [27, 28], "_gt_": 10, "_hedges_g_": [6, 7, 8], "_iba1_seg_ilastik_2": 91, "_lh": [5, 13, 19], "_lt_": 10, "_other": 0, "_p_value_map": 95, "_p_value_map_fdr_correct": 95, "_rev_cluster_index": [0, 26], "_rev_cluster_index_": 0, "_rh": [5, 13, 19], "_sampl": [69, 102], "_seg_dir": [26, 67], "_seg_dir_1": 0, "_seg_dir_regional_mean_if_in_seg": 67, "_strip_com": 29, "_summari": 19, "_summary_across_clust": 19, "_sunburst": 16, "_type_": 64, "_v_": 10, "_valid_clust": [6, 7, 22], "_valid_clusters_stat": [5, 22], "_valid_clusters_t": 15, "_vox_p_": 0, "_z": 101, "_z_score_map": 95, "a1": [0, 10], "a2": [0, 10], "aba": [3, 23], "aba_seg": 67, "abbevi": 22, "abbr": [0, 3, 65, 68, 69], "abbrevi": [15, 23, 24], "abcasei": 1, "about": 0, "abov": [0, 44, 60], "absolut": [0, 33], "accept": 33, "access": [0, 29], "accident": 0, "accod": 10, "accommod": 44, "accordingli": [38, 44], "account": [0, 36, 44, 60], "accur": 0, "across": [1, 23, 28, 68], "action": [18, 27, 28], "activ": [2, 82, 89], "actual": 0, "ad": [0, 17, 33, 36, 49, 68], "adapt": 0, "add": [1, 2, 17, 36, 57, 58, 68, 69], "add_argu": [27, 28], "add_prefix": 84, "addit": [0, 2, 29, 33, 36, 82, 97], "adj_p_val_img_path": 10, "adjust": [0, 10, 24, 44], "adjusted_pval_output_path": 10, "administr": 2, "af": 102, "affect": 0, "affin": [30, 41, 45, 59], "affine_initi": [1, 76, 82], "affine_initializer_wrapp": [71, 76, 82], "after": [1, 5, 20, 25, 31, 61, 68, 71, 82, 93], "again": 0, "against": [5, 6, 7, 8], "aggreg": [0, 5, 18, 22, 24, 65, 68, 84, 99, 101], "aggregate_files_from_sample_dir": [0, 1, 82, 89], "aggregate_files_recurs": [1, 82, 89], "ai14_seg_ilasik_1": 80, "algorithm": 58, "alia": 0, "alias": 0, "align": [0, 1, 44, 45], "all": [1, 5, 6, 7, 8, 22, 23, 24, 26, 28, 31, 33, 62, 65, 68, 82, 89], "all_region": 0, "allen": 1, "allow": [0, 2, 29, 71, 91], "along": 93, "alphabet": 0, "alreadi": [0, 2, 22, 70, 82, 89], "also": [0, 45, 58, 65, 71, 92, 100], "alt": [17, 68], "altern": [0, 2, 3, 5, 15, 24, 65, 68, 69], "ama": 101, "amyloid": 0, "an": [1, 2, 5, 6, 7, 8, 14, 27, 28, 30, 31, 33, 34, 35, 36, 38, 39, 41, 42, 43, 48, 49, 52, 54, 56, 57, 58, 59, 60, 61, 65, 72, 79, 80, 82, 91, 93, 97, 99, 100, 102, 105, 107], "analys": 98, "analyz": [0, 22, 101], "anatom": 14, "ani": [1, 5, 6, 7, 8, 19], "anisotrop": 30, "anoth": [0, 2, 5, 49], "anova": [0, 10], "anterior": [0, 45, 72], "antspi": [1, 103, 107], "antspy_init_tform": 71, "app": [2, 23], "append": [0, 30], "appli": [0, 2, 3, 15, 20, 26, 45, 49, 61, 92, 100, 107], "applic": [29, 91], "apply_2d_mean_filt": [61, 62, 82], "apply_mask": [1, 82, 97], "apply_mask_to_ndarrai": [82, 91, 97], "apply_rgb_to_cel": [15, 25, 82], "approach": 38, "appropri": 44, "apt": 2, "ar": [0, 1, 2, 3, 5, 6, 10, 17, 22, 24, 30, 33, 36, 44, 45, 49, 52, 61, 68, 72, 83], "arctanh": 95, "arg": [4, 20, 26, 27, 28, 33, 52, 67, 69, 91, 102], "argpars": [27, 28, 67], "argparse_util": [1, 32, 82], "argparse_utils_rich": [1, 32, 82], "argument": [0, 22, 27, 28, 33, 39, 67, 75, 86], "argumentpars": [27, 28], "around": [26, 49], "arr": 61, "arrai": [0, 30, 31, 36, 44, 52, 59, 61, 65], "arrow": 0, "artifact": [0, 82, 97], "associ": 29, "assum": [30, 31, 34, 80, 86], "asterisk": [5, 10, 15, 16, 17, 18, 19, 22, 23, 24, 34, 46, 53, 66, 67, 68, 73, 75, 77, 79, 85, 93, 94, 99, 102, 103], "atla": [1, 2, 3, 16, 17, 20, 23, 26, 31, 36, 62, 66, 67, 70, 71, 76, 82, 93, 97, 98, 99, 102, 103, 104, 105, 106], "atlas1": 72, "atlas2": 72, "atlas_ccfv3_2020_30um": [0, 72, 102], "atlas_ccfv3_2020_30um_split": [0, 3], "atlas_imag": 36, "atlas_img": [36, 65, 107], "atlas_img_w": 52, "atlas_img_w_id": 52, "atlas_in_tissue_spac": [0, 73, 107], "atlas_mask": [92, 100, 101], "atlas_ndarrai": 52, "atlas_relabel": [0, 50], "atlas_res_in_um": [16, 23], "atlas_spac": [0, 84, 99, 101, 102, 107], "atlas_split": [0, 65], "atlas_wirefram": [0, 52], "attempt": [5, 19], "attent": 0, "attrdict": [29, 32, 82], "attribut": [29, 33], "austen": [0, 1], "auto": 0, "autofl": [0, 34, 72], "autofl_": [0, 73, 75, 77], "autofl_50um": [57, 77, 102], "autofl_50um_brain_mask": 101, "autofl_50um_mask": 104, "autofl_50um_masked_fixed_reg_input": [71, 102, 104, 107], "autofl_50um_tif": 78, "autofluo": [0, 75], "autofluo_50_mask": 74, "autofluo_50um": 74, "autofluoresc": 0, "autom": 1, "automat": [30, 44, 92], "avail": [0, 70, 82, 83, 98], "averag": [0, 1, 10, 33, 49, 53, 61, 72, 92, 93, 100, 101], "average_template_ccfv3_30um": [0, 71], "averagetimeperiterationcolumn": [32, 33, 82], "avg": [0, 1, 62, 82], "avg_img1": 10, "avg_img2": 10, "ax": [0, 20, 30, 41, 45, 63, 72, 93], "axi": [30, 45, 72, 92, 93, 100], "axis_1": 63, "axis_2": 63, "axis_3": 63, "axis_ord": [34, 46], "b": [2, 3, 4, 12, 69, 79, 83, 98], "back": [1, 55], "background": [31, 49, 52, 58, 99], "backtick": 0, "backup": 2, "ball": [0, 31, 49, 58], "bar": [0, 33], "barbosa": 1, "base": [0, 1, 5, 6, 7, 8, 10, 13, 24, 27, 28, 29, 30, 31, 33, 36, 44, 50, 65, 87, 88, 91, 98], "base_path": [13, 18, 87], "basenam": 22, "bash": [0, 2], "bashrc": [0, 2], "basic": 0, "bbox": [1, 4, 31, 62, 82], "bc": [0, 72], "beauti": 28, "becaus": 22, "becom": 38, "been": [0, 24], "befor": [0, 2, 5, 19, 20, 44, 102], "begin": [0, 2], "being": [0, 10, 82, 89], "below": [0, 44, 60], "beta": 0, "better": 77, "between": [0, 6, 7, 8, 12, 17, 68, 104], "bheifet": 1, "bia": 72, "bias_correct": [72, 76, 82], "bilater": [0, 3, 5, 10, 13, 19], "bilinear": 31, "bin": [0, 2], "binar": [0, 3, 38], "binari": [0, 38, 52, 80, 91], "binary_mask": 52, "bit": [0, 47, 82], "blank": 0, "blue": 0, "blur": 49, "bool": [30, 31, 33, 45, 64, 72, 86, 107], "boolean": [5, 6, 7, 8, 29], "bori": 1, "both": [0, 27, 28, 33, 82, 88, 97], "botleneck": 0, "bottom": [0, 55], "bound": [0, 4, 26, 31, 54], "boundari": 52, "bounding_box": 54, "box": [0, 4, 26, 31, 54], "bracket": 0, "brain": [1, 10, 20, 44, 52, 66, 67, 72, 77, 82, 97, 101], "brain_mask": [0, 1, 78, 81, 82], "brain_mask_ilp": 0, "brain_model": [1, 25, 82], "branch": 2, "bright": 0, "browser": 1, "bspline": 103, "build": 2, "button": 0, "c": [0, 2, 6, 7, 8, 12, 22, 65, 83, 90], "c1": [0, 6, 7, 8], "c2": [0, 6, 7, 8], "c3": 0, "calcul": [0, 6, 7, 8, 14, 23, 65, 66, 67, 98], "calculate_frag": [82, 97, 98], "calculate_mean_intens": [66, 67, 70, 82], "calculate_mean_intensity_in_clust": [14, 25, 82], "calculate_padded_dimens": [82, 104, 106], "calculate_regional_dens": [65, 70, 82], "calculate_regional_volum": [23, 25, 65, 70, 82], "calculate_resampled_padded_dimens": [82, 105, 106], "calculate_top_region": [24, 25, 82], "call": 44, "callabl": 61, "camel": 0, "can": [1, 2, 14, 22, 24, 29, 33, 39, 77, 79, 87, 88, 92, 100], "can_collaps": [24, 25, 82], "captur": [0, 22], "care": 0, "case": [0, 5, 83], "casei": 1, "cat": 0, "categori": 23, "cc3d": 1, "ccfv3": [0, 1, 3, 15, 16, 20, 23, 24, 45, 65, 68, 69, 93], "cd": [0, 2, 14, 66], "cell": [0, 1, 5, 12, 15, 18, 19, 26, 65, 69, 102], "cell_count": [5, 19, 26], "cell_dens": [5, 19, 26, 65], "cell_density_data": 0, "cell_density_summary_for_valid_clust": 22, "cellular": 1, "center": [1, 93], "central": 22, "centroid": [0, 65, 102], "certain": [82, 89], "cfo": [0, 79, 103], "cfos_rb4_30um_ccf_spac": 99, "cfos_rb4_30um_ccf_space_z_lravg": 84, "cfos_rb4_atlas_spac": 0, "cfos_seg": 79, "cfos_seg_ilastik_1": [0, 26], "chain": 0, "chang": [0, 88], "channel": 30, "char": 0, "charact": 0, "chart": 0, "check": [0, 5, 6, 7, 8, 33, 73, 94, 98], "check_fdr_command": [82, 97, 98], "checkout": 2, "choos": 0, "ci": [6, 7, 8, 14, 16], "class": [27, 28, 29, 30, 33], "classif": [0, 31, 77, 79], "clean": [1, 86], "clean_tif_dir": [1, 82, 89], "clean_tifs_dir": [82, 86, 89], "cli": [82, 106], "click": [0, 2], "clone": 2, "close": 0, "cluster": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 26, 31, 62, 69, 82, 97], "cluster_": [16, 17], "cluster_1": [6, 7, 8], "cluster_2": [6, 7, 8], "cluster_bbox": [25, 26, 82], "cluster_bbox_parallel": [25, 26, 82], "cluster_bbox_result": 26, "cluster_column": 8, "cluster_data": 26, "cluster_fdr": 0, "cluster_fdr_rang": 0, "cluster_id": [5, 12, 14, 17, 19, 26, 31, 32, 82], "cluster_idx": 18, "cluster_index": [10, 14, 25, 82], "cluster_index_dir": 26, "cluster_index_img": 10, "cluster_index_nii": 10, "cluster_info": 24, "cluster_list": [6, 7, 8], "cluster_mean_if": 14, "cluster_mean_if_": 14, "cluster_mean_if_summari": 17, "cluster_mirror_indic": 0, "cluster_stat": [0, 1, 82], "cluster_summari": [0, 21, 25, 82], "cluster_valid": 0, "cluster_valid_results_1": 13, "cluster_valid_results_1_lh": 13, "cluster_valid_results_1_rh": 13, "cluster_valid_results_2": 13, "cluster_valid_results_2_lh": 13, "cluster_valid_results_2_rh": 13, "cluster_validation_data_df": [5, 25, 82], "cluster_validation_dir": 13, "cluster_validation_info": 21, "cluster_validation_summari": [19, 21], "cluster_validation_summary_t": 22, "cluster_validation_summary_tukei": 22, "cluster_volum": [5, 19], "cluster_volume_in_cubic_mm": 26, "cluster_volume_summari": 19, "clusters_path": 18, "co": 60, "code": [2, 23, 31, 41, 45, 69, 72], "codebas": 1, "col_num": 15, "col_w_label": 15, "cold": 1, "collabor": 1, "collaps": 24, "collapse_hierarchi": [24, 25, 82], "collapsed_region": [15, 24], "collapsed_region_nam": [15, 24], "color": [3, 23], "color_arg": 69, "column": [0, 3, 5, 6, 7, 8, 12, 14, 15, 17, 19, 23, 24, 33, 36, 44, 45, 60, 65, 68, 69, 87, 102], "com": 2, "combin": 24, "command": [1, 2, 5, 13, 19, 20, 22, 24, 26, 27, 33, 34, 39, 46, 49, 67, 71, 75, 77, 82, 86, 87, 90, 98], "command_log": [0, 33], "comment": 29, "commit": 2, "common": [1, 2, 82], "compact": 33, "compar": [5, 8], "comparison": [0, 5, 6, 7, 8, 12, 22, 98], "complet": [0, 33], "compon": [26, 65], "compris": 23, "comput": [0, 2], "concaten": 21, "conda": 2, "condit": [0, 5, 6, 7, 8, 19, 22, 25, 65, 69, 70, 79, 82, 87, 89, 91], "condition1_sample01_": [5, 19], "condition1_sample02_": [5, 19], "condition2_sample03_": [5, 19], "condition2_sample04_": [5, 19], "condition_1": [6, 7, 8], "condition_2": [6, 7, 8], "condition_column": [5, 6, 7, 8], "condition_prefix": 5, "condition_selector": [5, 6, 7, 8, 9, 25, 82], "config": [0, 1, 22, 32, 33, 82], "config_fil": 29, "config_path": 33, "configpars": 29, "configur": [0, 2, 28, 29, 32, 33, 82], "confirm": 2, "connect": [26, 65], "consid": [0, 5, 101], "consol": 28, "consolid": 13, "construct": 30, "contain": [5, 6, 7, 8, 13, 23, 30, 31, 33, 44, 52, 60, 67, 69, 78, 86, 87, 104, 107], "content": [0, 33, 93], "context": 0, "context1": 0, "context2": 0, "contrast": [0, 10, 98], "contrast_vox_p_tstat1_q": 0, "control": [0, 14, 17, 22, 29, 68, 87, 90], "control_": 0, "control_avg": 0, "control_sample01_cell_density_data": 0, "control_sample01_cfos_rb4_atlas_space_z": 68, "control_sample01_fil": 87, "control_sample01_rb4_atlas_space_z": 0, "control_sample01_regional_cell_dens": 0, "control_sample02_cell_density_data": 0, "control_sample02_rb4_atlas_space_z": 0, "control_v_treat": 0, "control_v_treatment_vox_p_tstat1": 0, "control_v_treatment_vox_p_tstat1_q0": 0, "control_v_treatment_vox_p_tstat2": 0, "control_v_treatment_vox_p_tstat2_q0": 0, "conveni": 29, "convent": [0, 5, 13, 19, 31], "convers": [31, 38, 75], "convert": [0, 12, 35, 36, 38, 42, 43, 44, 48, 50, 60, 80, 95, 102], "convert_dtyp": [38, 47, 82], "coordin": [0, 30, 36, 44, 45, 60, 65], "copi": [0, 2, 18, 22, 33, 73, 74, 78, 82, 85, 89, 93, 103], "copy_fil": [32, 33, 82], "copy_nii_head": [82, 103, 106], "copy_specific_slic": [78, 81, 82], "copy_stats_fil": [18, 25, 82], "copy_tif": [0, 1, 81, 82], "core": [1, 3, 15, 16, 23, 24, 65, 68, 69, 82], "corr_factor": [6, 7, 8], "correct": [1, 6, 7, 8, 10, 11, 18, 72, 98], "correl": 95, "correlation_map": 95, "correspond": [13, 36, 44, 60], "could": 49, "count": [0, 24, 26, 44, 65, 79, 102], "count_cel": [25, 26, 82], "count_cells_in_region": [65, 70, 82], "count_fil": [79, 81, 82], "counterpart": 92, "cp": [18, 21, 22, 25, 82], "cr": 60, "creat": [0, 2, 5, 6, 7, 8, 13, 16, 24, 30, 44, 59, 98], "create_design_ttest2": [82, 97, 98], "create_resampled_nii": [59, 62, 82], "criteria": 24, "criterion": 24, "crop": [0, 1, 25, 26, 31, 32, 82], "crop_outer_spac": [25, 26, 82], "crucial": 0, "cstat": [0, 1, 12, 22, 25, 82], "cstats_brain_model": [0, 3, 22], "cstats_crop": [0, 4], "cstats_fdr": [1, 10, 12, 14, 20, 98], "cstats_fdr_rang": [1, 11, 98], "cstats_find_incongru": 12, "cstats_find_incongruent_clust": 0, "cstats_group_data": [0, 13, 22], "cstats_if_mean": 17, "cstats_index": [0, 14, 16, 22, 23, 24], "cstats_legend": [0, 15, 22], "cstats_mean_if": [0, 14, 19], "cstats_mean_if_summari": [0, 14, 17], "cstats_mirror_indic": [1, 10, 20], "cstats_org_data": [0, 13, 18, 19, 25, 82], "cstats_prism": [0, 14, 19, 22], "cstats_summari": [1, 22, 26], "cstats_sunburst": [0, 23], "cstats_tabl": [0, 14, 15, 19, 22, 24], "cstats_valid": [1, 5, 10, 13, 18, 20, 23, 25, 26, 82], "csv": [1, 3, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 33, 36, 44, 50, 60, 65, 66, 67, 68, 69, 87, 90, 102], "csv_file": [5, 19, 87], "csv_path": [68, 69], "csv_pattern": 21, "ctrl": [0, 2], "cubic": 61, "curl": 2, "current": [0, 5, 14, 22, 26, 34, 46, 60, 61, 65, 69, 73, 74, 87], "current_r": 60, "cursor": 0, "custom": [3, 15, 23, 24, 27, 28, 69, 70, 82], "custom_atla": 68, "custommofncompletecolumn": [32, 33, 82], "customtimeelapsedcolumn": [32, 33, 82], "customtimeremainingcolumn": [32, 33, 82], "cvd": [0, 18, 22], "cwd": [34, 46], "cycl": 0, "czi": [0, 30, 35, 36, 37, 39, 44, 54, 60, 61, 67, 75, 79, 99, 103], "czi_path": 30, "d": [0, 2, 38, 39, 61, 69, 75, 83, 85, 86], "d32525": 69, "d_type": 43, "dan": 0, "daniel": 1, "danrij": [1, 2], "dark": 33, "data": [1, 5, 6, 7, 8, 10, 14, 16, 18, 19, 22, 23, 30, 31, 36, 38, 41, 44, 45, 59, 60, 61, 65, 66, 67, 91, 93], "data_col": 5, "data_col_pool": 5, "data_column_nam": 19, "data_df": 5, "data_typ": [10, 16, 30, 38], "databas": 29, "database_config": 29, "datafram": [5, 6, 7, 8, 15, 17, 24, 36, 44, 60, 65, 68, 69], "dataset": [1, 34], "date": 0, "dbarbosa": 1, "deactiv": 2, "decor": 33, "decreas": 12, "deep_avg": 0, "deeper": 24, "default": [0, 2, 16, 23, 30, 31, 33, 34, 45, 46, 59, 61, 64, 65, 67, 68, 69, 88, 91, 93, 103, 107], "defin": [1, 10, 27, 28, 29, 30], "define_zarr_to_nii_output": [47, 48, 82], "definit": 0, "delet": [0, 22], "delimit": 0, "densens": 69, "densiti": [0, 1, 5, 6, 7, 8, 12, 18, 26, 65, 69], "density_col": 5, "density_in_clust": [25, 26, 82], "density_in_cluster_parallel": [25, 26, 82], "density_typ": [18, 65], "deped": 2, "depend": [2, 61], "depth": [23, 24], "depth_": 23, "depth_col": 24, "deriv": [36, 44], "descend": 24, "describ": [0, 6], "descript": [0, 1, 82], "design": [0, 27, 28, 98], "design_fts_path": 98, "desir": [0, 2, 30, 44, 103], "desired_axis_ord": [30, 34, 46], "dest": [18, 27, 28], "dest_dir": 85, "dest_path": 18, "destin": [18, 85], "detail": [0, 2, 33], "detect": [36, 44, 60], "detect_outli": [94, 96, 97], "determin": [0, 24, 38, 45, 72], "dev": 2, "deviat": [49, 101], "devnul": 71, "df": [5, 6, 7, 8, 12, 17, 24, 68, 69], "df_collaps": 24, "df_origin": 24, "df_sort": 24, "df_w_rgb": 15, "di": 91, "diagon": 45, "dict": [23, 29], "dictionari": [23, 29], "diff": 0, "differ": [0, 5, 12, 17, 49, 68, 104], "difference_of_gaussian": [49, 62, 82], "diffus": 0, "dilat": [52, 91], "dilate_mask": [82, 91, 97], "dimens": [30, 39, 61, 91, 105], "dir": [1, 5, 17, 19, 22, 24, 26, 33, 39, 65, 68, 73, 74, 75, 77, 78, 82, 84, 86, 88, 89, 99], "dir_nam": [0, 22, 87, 90], "direct": [0, 5, 10, 12, 45, 72, 91], "directioanl": 0, "directli": [25, 82], "directori": [0, 5, 10, 13, 14, 15, 16, 18, 22, 30, 33, 34, 39, 46, 65, 69, 73, 74, 75, 77, 78, 79, 82, 84, 86, 87, 89, 103], "dirnam": [0, 22], "displai": [0, 27, 28, 33], "distrobut": 2, "distrubut": 0, "do": [0, 30, 58, 69, 104], "doc": 0, "document": [0, 2, 83], "doe": [0, 1, 2, 5, 12], "dog": [1, 62, 82], "don": [0, 30, 69], "done": 0, "doubl": [0, 69], "download": 2, "dr": 1, "drag": 0, "draw": 0, "drive": 2, "drop": 0, "drug": 0, "drug_sample01_atlas_space_z": 0, "dry_run": 88, "dsi": [0, 3], "dsi_studio": 3, "dtype": [38, 44, 91, 103], "dunnett": 69, "durat": 33, "dure": 0, "dynam": 24, "e": [0, 2, 5, 6, 7, 8, 10, 11, 18, 21, 22, 26, 27, 28, 33, 36, 39, 44, 45, 49, 50, 55, 60, 67, 68, 69, 73, 74, 75, 79, 82, 84, 86, 90, 97, 98, 99, 103, 104, 107], "each": [0, 3, 5, 6, 7, 8, 10, 13, 14, 17, 22, 23, 24, 26, 33, 36, 39, 44, 60, 61, 62, 65, 66, 67, 68, 69, 73, 74, 82], "earli": 1, "earliest": 24, "easi": 0, "easier": 0, "echo": [0, 2], "edg": [49, 61], "edit": [0, 2], "editor": 0, "edu": [1, 2], "effect": [0, 5, 6, 7, 8, 10], "effect_s": [0, 1, 25, 82], "effect_sizes_by_sex__absolut": [9, 25, 82], "effect_sizes_by_sex__rel": [9, 25, 82], "effect_sizes_sex_ab": [0, 7], "effect_sizes_sex_rel": [0, 8], "effici": 0, "either": [2, 30, 34, 45, 46], "elaps": 33, "elapsed_when_finish": 33, "element": 0, "els": 0, "empti": [0, 27, 28], "enabl": [2, 33, 86], "end": [0, 33], "enhanc": [27, 28, 33], "enough": [0, 49], "ensur": [0, 24, 44, 49], "enter": [0, 7, 8], "entri": 0, "environ": 2, "environment": 0, "epilog": [27, 28], "error": [5, 6, 7, 8, 71], "essenti": 2, "establish": 24, "etc": [1, 2, 5, 10, 107], "ev": 0, "ev1": 0, "ev2": 0, "ev3": 0, "ev4": 0, "eval": 2, "everi": 38, "exact": [5, 6, 7, 8], "exactli": [5, 6, 7, 8], "exampl": [1, 2, 5, 12, 13, 16, 19, 23, 27, 28, 29, 33, 45, 69, 75, 83, 87, 99, 103], "exce": 44, "exclud": [0, 44, 60, 79, 82, 97], "exec": [0, 22], "execut": [0, 33], "exist": [0, 30], "exlud": 0, "exp": [1, 22, 75, 77], "exp1": 33, "exp2": 33, "exp_dir": 0, "exp_dir_path": 33, "exp_path": 39, "expand": 0, "expect": 5, "expected_higher_mean_group": 12, "expected_lower_mean_group": 12, "experi": [1, 18, 26, 33, 39, 67, 73, 74, 75, 77, 86], "explicit": 33, "explor": 1, "export": 2, "extend": [0, 1, 29, 62, 82], "extend_one_side_3d_arrai": [55, 62, 82], "extens": [0, 55, 61, 86], "extern": 0, "extra": [0, 2], "extract": [0, 30, 47, 82], "extract_resolut": [30, 32, 82], "extract_unique_regions_from_fil": [15, 25, 82], "extrem": 0, "ey": 0, "f": [0, 7, 8, 14, 17, 22, 68, 71, 72, 83, 87, 104, 107], "f1": 0, "f2": 0, "f3": 0, "face": 0, "factor": 72, "fall": 44, "fals": [23, 24, 29, 30, 31, 33, 34, 45, 46, 64, 68, 72, 78, 84, 88, 105, 107], "fast": 0, "faster": [0, 70, 82], "fdr": [0, 1, 11, 25, 82, 95, 98], "fdr_path": 10, "fdr_rang": [0, 1, 25, 82], "featur": [0, 1, 49, 58, 79], "featurenam": 2, "few": 2, "fiber": 0, "field": 72, "file": [0, 2, 5, 13, 14, 15, 17, 18, 19, 20, 22, 23, 26, 29, 30, 31, 33, 34, 35, 36, 39, 44, 45, 46, 49, 52, 54, 56, 58, 60, 65, 66, 67, 68, 78, 79, 80, 82, 85, 86, 87, 89, 90, 100, 107], "file_path": [15, 20, 30, 33, 56], "filenam": [0, 17, 33, 68, 87, 88], "fill": 0, "fill_na_with_last_known": [24, 25, 82], "filter": [0, 44, 61, 68, 83], "filter_datafram": [6, 7, 8, 9, 25], "filter_func": 61, "filter_region_id": [68, 70, 82], "final": [0, 107], "find": [0, 12, 21, 22, 31, 34, 46, 52, 56, 83], "find_and_copy_fil": [82, 85, 89], "find_bounding_box": [31, 32, 82], "find_incongruent_clust": [1, 25, 82], "find_largest_h5_fil": [34, 47, 82], "find_largest_tif_fil": [46, 47, 82], "find_matching_directori": [18, 25, 82], "find_max_intens": [56, 62, 82], "finder": 0, "first": [0, 2, 5, 17, 19, 22, 33, 34, 45, 49, 68], "fisher": 95, "fix": [0, 38, 102, 103, 104, 107], "fixed_imag": 71, "fixed_image_path": 71, "fixed_img_path": [104, 107], "fixed_reg_in": [103, 104, 105], "fixed_scal": 38, "fixed_scale_rang": 38, "flag": [0, 23, 29, 98], "flank": 69, "flip": [0, 93], "float": [0, 10, 11, 30, 38, 44, 59, 60, 65], "float32": [30, 38, 101], "float64": 38, "flourish": 23, "fluoresc": 1, "fo": [0, 91], "focu": 27, "folder": [1, 13, 39, 67, 75, 79, 86, 87, 104, 107], "follow": [0, 2, 13, 19, 22, 87, 90], "form": 0, "form_cod": 45, "format": [0, 11, 22, 27, 28, 30, 90], "formatter_class": [27, 28], "forward": [82, 104, 106], "forward_warp": [82, 104, 106], "fos_seg_ilastik": 91, "fos_seg_ilastik_2": 91, "fos_wo_halo": 91, "found": [2, 5, 6, 7, 8, 17, 30, 33, 68], "fragment": 98, "frequent": 0, "fri": [102, 104], "from": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 82, 84, 85, 86, 87, 88, 90, 92, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 107], "front": 55, "fsl": [0, 1, 2, 98], "fslconf": 2, "fslcpgeom": 0, "fsldir": 2, "fsley": 0, "fsleyes_lut": 0, "fslmath": 0, "fslpy": 1, "fslroi": 0, "fslstat": 0, "fstat": 0, "fstat1": 0, "fstat2": 0, "fstat3": 0, "full": [0, 30, 33, 34, 46, 67, 75, 81, 82, 91, 104, 105], "full_res_dim": [91, 105], "full_res_img": [0, 39], "func": 33, "function": [0, 5, 6, 7, 8, 31, 32, 33, 44, 61, 82], "fund": 1, "fuse": 0, "futur": [2, 49], "fuzzi": 0, "fzf": 0, "g": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 21, 22, 33, 36, 44, 45, 49, 50, 60, 68, 69, 79, 82, 97, 98, 103, 104, 107], "g1": 49, "g2": 49, "gap": 0, "gaussian": [0, 49], "gener": [0, 10, 16, 17, 23, 36, 52, 68], "general_region": [3, 69], "generate_summary_t": [19, 25, 82], "generate_sunburst": [16, 25, 82], "generate_wirefram": [51, 52, 62], "get": [0, 26, 30, 31, 33, 37, 41, 45, 65, 94], "get_all_region_id": [68, 70, 82], "get_atlas_region_at_coord": [65, 70, 82], "get_dims_from_tif": [39, 47, 82], "get_dir_name_from_arg": [32, 33, 82], "get_fill_color": [24, 25, 82], "get_groups_info": [82, 97, 98], "get_max_region_id_from_csv": [68, 70, 82], "get_region_detail": [68, 69, 70, 82], "get_sampl": [32, 33, 82], "get_top_regions_and_percent_vol": [24, 25, 82], "git": [0, 2], "github": [1, 2, 79, 83, 98], "given": [10, 16, 29, 33, 52, 65, 91], "glm": 0, "glob": [0, 30, 33, 39, 75, 85, 99, 103], "glob_pattern": 33, "global": [0, 29], "go": [0, 2], "googl": [0, 2], "gov": [0, 6], "gradient": 0, "greater": [5, 36, 64, 91], "green": 33, "gregori": 1, "grep": 0, "grid": 44, "group": [0, 5, 6, 7, 8, 10, 12, 17, 22, 24, 65, 68, 69, 98], "group1": [0, 5, 10, 14, 17, 22, 68, 69], "group1_avg": 10, "group1_siz": 98, "group2": [0, 5, 10, 14, 17, 22, 68, 69], "group2_avg": 10, "group2_siz": 98, "group3": [5, 14, 17, 68], "group4": 5, "group_1": [14, 17, 68], "group_2": [14, 17, 68], "group_3": [14, 17, 68], "group_bilateral_data": [1, 25, 82], "group_column": 69, "group_hemisphere_data": [13, 25, 82], "groupa": 12, "groupb": 12, "gubra": [20, 93], "gui": 0, "guid": [1, 2, 79, 98], "guidanc": 1, "gz": [0, 3, 4, 5, 10, 11, 14, 16, 20, 23, 26, 30, 31, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 50, 52, 53, 54, 56, 57, 59, 60, 61, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 77, 80, 84, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 105, 107], "h": [0, 83], "h5": [0, 30, 34, 36, 37, 39, 44, 60, 61, 75, 99, 103], "h5_to_tif": [1, 47, 82], "ha": [0, 3, 5, 12, 15, 19, 24, 34, 44, 45, 68, 69, 102], "handl": [0, 5, 6, 7, 8, 27, 28, 30, 33], "has_hemispher": 5, "have": [0, 1, 10, 22, 33, 36, 49, 72, 87, 90], "hdf5": [30, 34], "hdf5_path": [30, 34], "head": 0, "header": [0, 40, 59, 103], "headless": 0, "hedg": [6, 7, 8], "hedges_g": [6, 7, 9, 25], "heifet": [0, 1, 2, 79, 83, 98], "heifetslab": [1, 2], "help": [1, 12, 27, 28, 49, 79, 83], "helper": [32, 82], "helpformatt": 27, "hemi": [0, 69], "hemi_to_lr_avg": [0, 1, 82, 97], "hemispher": [0, 3, 5, 10, 13, 60, 92, 101], "here": [0, 2, 6], "hex": 69, "hg": [5, 22], "hidden": [0, 33], "hide": 0, "hierarchi": [0, 23, 25, 82], "higher": [0, 44], "higher_group": 22, "higher_mean_group": [5, 12], "highest": 34, "highlight": 49, "histori": [0, 2], "hit": 0, "hold": 29, "home": [0, 2], "hot": 1, "how": [0, 98], "hsd": 5, "html": [79, 98], "http": [0, 2, 6, 23, 79, 83, 98], "hypothesi": 5, "i": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 17, 22, 23, 24, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 70, 72, 75, 77, 78, 79, 82, 83, 86, 89, 90, 91, 93, 95, 98, 99, 101, 102, 103, 104, 105, 107], "iba1_rb20": 91, "iba1_rb20_clust": 91, "iba1_seg_ilastik_2": 91, "ic": 50, "icon": 2, "id": [0, 3, 10, 12, 16, 19, 23, 31, 44, 50, 52, 60, 65, 68, 69], "id_path": [3, 65, 69], "ideal": [0, 49], "identifi": 24, "idisco": [0, 1], "ie": [77, 79], "if_img": 67, "if_outli": [82, 96, 97], "ignor": 30, "ilastik": [1, 2, 31, 75, 77, 78, 79, 80], "ilastik_execut": [0, 31, 77, 79], "ilastik_pixel_classif": [0, 1, 81, 82], "ilastik_project": [31, 79], "ilastik_segment": [0, 78], "ilastiksegment": 80, "ilp": [0, 77, 79], "imag": [3, 4, 10, 14, 16, 23, 26, 30, 31, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 48, 49, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 72, 75, 79, 80, 81, 82, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 104, 105, 107], "image_io": [0, 1, 82], "image_nam": [14, 66], "image_path": 72, "image_pir": 45, "image_pir_appli": 45, "image_to_warp_from_atlas_spac": 105, "image_tool": [0, 1, 82], "img": [0, 4, 14, 16, 20, 23, 30, 36, 38, 40, 41, 43, 44, 48, 49, 54, 58, 59, 63, 91, 93, 101, 103, 105], "img_1": 0, "img_1_bin": 0, "img_1_bin_inv": 0, "img_2": 0, "img_avg": [1, 10, 53], "img_bbox": [0, 54], "img_crop": 4, "img_dog": [0, 49], "img_extend": [0, 55], "img_in_atlas_spac": 103, "img_io": [1, 32, 82], "img_max": [0, 56], "img_pad": [0, 57], "img_path": [30, 43, 48], "img_rb": [0, 58], "img_resampl": [0, 59, 75], "img_resample_point": [0, 60], "img_spatial_avg": [0, 61], "img_to_npi": [1, 47, 82], "img_to_point": [1, 47, 82], "img_tool": [1, 32, 82], "img_transpos": [0, 63], "img_uniqu": [0, 64, 68], "img_wb": 3, "immunofluo": [0, 99], "immunofluoresc": [0, 1, 14, 66, 67, 81, 82], "immunolabel": 0, "immunostain": 10, "implement": 49, "import": [0, 27, 28, 29, 33, 71, 105], "improv": [0, 2, 27], "inactiv": 90, "includ": [0, 14, 30, 33, 44, 75], "incongru": 12, "increas": [0, 3, 12, 33, 86], "increment": [2, 44], "indent": [27, 28], "indent_incr": [27, 28], "index": [0, 1, 3, 10, 14, 25, 26, 31, 82], "indic": [0, 5, 10, 12, 20, 36, 38, 45], "individu": 24, "inferior": 45, "info": [1, 18, 21, 33, 79, 98, 103], "info_csv_path": [16, 23], "inform": [0, 2, 6, 10, 65], "inherit": [27, 28], "ini": [0, 22, 29, 33], "init": 2, "initi": [0, 1, 27, 28, 29, 31, 33], "initialize_progress_bar": [32, 33, 82], "inlin": 29, "innacuraci": 0, "inp": [72, 102, 107], "input": [0, 3, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 17, 19, 23, 34, 36, 37, 38, 39, 44, 45, 46, 49, 50, 58, 60, 61, 64, 68, 69, 72, 75, 77, 92, 98, 99, 100, 101, 102, 103, 104, 107], "input_imag": 59, "input_image_path": 98, "input_img": [64, 101], "input_img_lh": 92, "input_img_lravg": [92, 100], "input_img_rh": 92, "input_img_s100_lravg": 92, "input_name_rev_cluster_index": 10, "input_path": [10, 11, 23], "input_sunburst": 23, "insensit": 83, "insert": 2, "insid": 52, "inspir": 1, "instal": [0, 1], "instead": [30, 49], "institut": 1, "instruct": [0, 2], "int": [28, 30, 31, 45, 59, 61, 64, 65, 72, 93], "int16": 38, "int32": 38, "int64": 38, "int8": 38, "integ": 38, "intend": [0, 49], "intenisti": 0, "intens": [0, 10, 12, 14, 17, 31, 36, 38, 50, 52, 56, 62, 65, 66, 67, 68, 82, 94, 97, 101], "interact": 0, "interest": [0, 1, 5, 6, 7, 8, 49, 58], "interior": [0, 72], "intern": 52, "interpol": [31, 59, 91, 103, 104, 105, 107], "interpret": 0, "introduc": 12, "inv": 107, "invers": [82, 106], "invert": 0, "invoc": [27, 28], "involv": 86, "io": [60, 79, 83, 98], "io_h5_to_tif": [0, 34], "io_img": [0, 1, 47, 82], "io_img_to_npi": [0, 35], "io_img_to_point": [0, 36, 44], "io_metadata": [0, 39, 105], "io_nii": [0, 1, 47, 82], "io_nii_hd": [0, 40], "io_nii_info": [0, 41], "io_nii_to_tif": [0, 42], "io_nii_to_zarr": [0, 43], "io_points_to_img": [0, 44], "io_reorient_nii": [0, 45], "io_tif_to_tif": [0, 46], "io_zarr_to_nii": [0, 48], "is_fil": 30, "isol": 0, "isotrop": [30, 60], "issu": 2, "item": [0, 33], "iter": [33, 91], "its": [29, 40, 41, 45, 52, 56, 61, 99, 100], "j": 0, "just": 0, "k": [0, 92, 98, 100], "keep": [0, 49], "kei": [23, 29, 87], "kernel": [0, 61, 92, 100], "kernel_s": 61, "keyboard": 0, "keyword": 33, "kill": [0, 71], "know": 0, "kwarg": [27, 28, 33], "l": [0, 12, 45, 72], "lab": [0, 1], "label": [0, 1, 5, 12, 14, 15, 17, 18, 19, 23, 26, 50, 65, 68, 77, 79, 80], "label_dens": [5, 19, 26, 65], "label_volum": [5, 19], "labels_to_mask": [1, 81, 82], "larg": [0, 6, 7, 8], "larger": [0, 24, 49, 58], "largest": [0, 10, 34, 46, 52], "last": [0, 5, 65, 98], "latest": 2, "launch": 0, "layer": [0, 15, 24], "learn": 0, "least": 49, "leav": 58, "left": [0, 2, 3, 13, 45, 55, 60, 72], "legaci": 31, "legend": [0, 1, 22, 25, 82], "len": 33, "less": [0, 5, 58, 91], "letter": [31, 41, 45, 72], "level": [0, 23, 24], "lh": [0, 5], "lh_file": 92, "libbz2": 2, "libffi": 2, "liblzma": 2, "libncurses5": 2, "libncursesw5": 2, "librari": [27, 28], "libreadlin": 2, "libsqlite3": 2, "libssl": 2, "lightsheet": [0, 1], "like": [29, 41], "likewis": 22, "line": [0, 1, 27, 33, 67, 83], "linear": [59, 72, 103, 107], "link": [0, 2], "linux": [0, 1], "list": [1, 5, 6, 7, 8, 11, 18, 26, 31, 33, 36, 52, 64, 65, 69, 73, 74, 75, 78, 83, 90], "list_of_exp_dir_path": 90, "live": 0, "ll": 0, "llvm": 2, "load": [0, 4, 26, 30, 33, 34, 37, 40, 41, 44, 46, 49, 54, 55, 56, 58, 61, 64, 75, 91, 93, 94, 99], "load_3d_img": [30, 32, 82], "load_3d_tif": [46, 47, 82], "load_and_prepare_point": [44, 47, 82], "load_config": [32, 33, 82], "load_czi": [30, 32, 82], "load_data": [17, 25, 68, 70, 82], "load_h5": [30, 32, 34, 47, 82], "load_image_metadata_from_txt": [30, 32, 82], "load_mask": [82, 91, 97], "load_nii": [30, 32, 82], "load_nii_subset": [30, 32, 82], "load_text_from_fil": [32, 33, 82], "load_tif": [30, 32, 49, 58, 62, 82], "load_zarr": [30, 32, 82], "local": 2, "locat": [0, 22, 36, 60], "log": [1, 33], "log_command": [32, 33, 82], "long": 0, "long_nam": 18, "longer": 0, "look": 68, "loop": [0, 5], "lower": [0, 75], "lp": 45, "lsfm": [0, 1], "lut": [0, 68], "m": [0, 2, 3, 7, 8, 20, 26, 64, 65, 71, 72, 83, 86, 91, 94, 104, 105, 107], "m2": 72, "ma": [0, 10, 11, 91, 98], "maco": 0, "mai": [0, 12, 58, 100], "main": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "main_effect_": 0, "maintain": [1, 24], "mainten": 1, "make": [1, 2, 10, 22, 88], "make_par": 30, "malenka": 1, "man": 0, "manag": [0, 2, 27, 28], "mani": 0, "manipul": 0, "manual": 0, "map": [0, 1, 10, 11, 12, 95], "mask": [0, 10, 11, 26, 52, 72, 74, 77, 80, 82, 92, 94, 97, 98, 100], "mask_ccfv3_2020_30um_rh_wo_root_ventricles_fibers_ob": 0, "mask_condit": 91, "mask_ndarrai": 91, "mask_path": [10, 11, 72, 91, 98], "mat_fil": 98, "match": [0, 1, 5, 6, 7, 8, 12, 18, 21, 31, 33, 75, 82, 85, 87, 91, 94, 99, 102, 103, 105, 107], "mathemat": 0, "matrix": [0, 41, 45, 98], "max": [0, 1, 38, 62, 82], "max_cluster_id": 10, "max_decim": 11, "max_help_posit": [27, 28], "max_region_id": 68, "max_valu": 24, "maximum": [44, 56, 68], "md": 102, "mdma": [0, 69, 90], "mdma_sample01": [0, 69], "mean": [0, 3, 12, 14, 17, 61, 66, 67, 68, 82, 94, 97, 101], "mean_if": [1, 25, 82], "mean_if_in_seg": 67, "mean_if_intens": [14, 17, 19, 68], "mean_if_summari": [1, 25, 82], "mean_intensities_dict": 67, "mean_intensity_in_brain": [82, 91, 97], "mean_intensity_within_mask": [94, 96, 97], "mean_std_count": [8, 9, 25], "meandiff": 69, "meaning": 24, "means_in_mask_plot": 94, "measur": [0, 14, 26, 66, 67], "medium": [6, 7, 8], "meet": 24, "mehrdad": 1, "member": 0, "memori": 33, "menu": 2, "messag": [27, 28, 71], "met": 24, "metacel": 1, "metadata": [0, 1, 30, 32, 34, 37, 46, 47, 82, 102, 105], "metadata_from_3d_tif": [46, 47, 82], "metadata_from_h5": [34, 47, 82], "metadata_path": 39, "metadata_rel_path": 105, "metavar": [27, 28], "meth": [0, 69], "meth_sample23": [0, 69], "method": [27, 28, 29, 49], "mi": [102, 103], "microglia": [82, 97], "micromet": [30, 59, 60], "micron": [0, 16, 23, 30, 31, 34, 39, 46, 65, 75], "microscopi": 1, "microsoft": 2, "mid": 0, "middl": 0, "might": 49, "millimet": 30, "mimic": [31, 75], "min": [2, 38, 62, 82], "min_cluster_size_in_voxel": [0, 10], "min_ext": [31, 64], "min_siz": 10, "minext": 31, "minim": 0, "minimum": 24, "minu": 0, "miracl": [1, 31, 75, 105], "mirror": [0, 1, 10, 20, 82, 92, 97, 100], "misc": 0, "miss": 0, "mkdir": 0, "mm": [0, 23, 30], "mode": [0, 31, 33], "model": 0, "modif": 0, "modifi": [27, 28], "modul": [0, 1, 9, 25, 32, 47, 51, 62, 70, 76, 81, 89, 96, 97, 106], "mofncompletecolumn": 33, "more": [2, 58], "most": 0, "mous": 0, "move": [0, 13, 24, 86, 104], "movement": 0, "moving_imag": 71, "moving_image_path": 71, "moving_img": [26, 104], "moving_img_path": [104, 105, 107], "much": 0, "mul": 0, "multi": 0, "multilabel": [103, 104, 107], "multipl": [22, 27, 28, 31, 36, 44, 98], "multipli": 3, "must": [0, 61], "mv": 0, "n": [44, 88, 101], "n4": 72, "name": [1, 5, 6, 7, 8, 10, 13, 14, 15, 17, 18, 19, 22, 26, 33, 65, 68, 69, 82, 86, 89, 90, 102, 103], "namespac": [27, 28, 67], "nano": 0, "narg": [27, 28], "nativ": [0, 31, 70, 82, 102, 103, 105], "native_": 105, "native_atlas_split": [0, 65], "native_cluster_index": 26, "native_cluster_index_crop": 26, "native_img": 105, "native_spac": 107, "navig": [0, 2], "ncbi": [0, 6], "ndarrai": [10, 14, 16, 23, 30, 31, 34, 35, 36, 38, 43, 44, 45, 46, 48, 49, 52, 55, 58, 59, 60, 61, 63, 65, 67, 72, 75, 80, 91, 93, 95, 101, 105], "ndarray_axis_ord": [30, 34, 46], "ndimag": 75, "nearest": [59, 91, 105], "nearestneighbor": [102, 103, 107], "necessari": 33, "need": [0, 10, 14, 19, 22, 29, 47, 49, 68, 82, 87, 104], "neg": 45, "neighbor": [0, 59, 61, 91, 105], "neither": [5, 6, 7, 8], "new": [0, 1, 2, 13, 18, 20, 24, 45, 59], "new_affin": 45, "new_imag": 50, "new_img": 103, "new_nii": 45, "new_text": 88, "new_valu": 91, "next": [0, 10, 14, 26, 34, 39, 46, 65, 66, 67, 72, 75, 77, 98, 99, 100, 101], "ngregori": 1, "nib": 30, "nibabel": [1, 40, 41, 45, 59], "nick": 1, "nida": 1, "nifti": [0, 16, 30, 31, 41, 45, 52, 53, 56, 59], "nifti1": [45, 59], "nifti1imag": [30, 45, 59], "nih": [0, 6], "nii": [0, 3, 4, 5, 10, 11, 14, 16, 20, 23, 26, 30, 31, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 50, 52, 53, 54, 56, 57, 59, 60, 61, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 77, 80, 84, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 105, 107], "nii_axis_cod": [41, 47, 82], "nii_hd": [1, 47, 82], "nii_img": 103, "nii_info": [1, 47, 82], "nii_path": [30, 42, 45], "nii_path_or_nii": [30, 32, 82], "nii_to_ndarrai": [30, 32, 43, 47, 82], "nii_to_tif": [1, 47, 82], "nii_to_zarr": [1, 47, 82], "nii_voxel_s": [30, 32, 82], "nlm": [0, 6], "node": 0, "nois": [0, 49, 58], "non": [0, 10, 12, 36, 45, 62, 82, 86], "none": [4, 5, 10, 14, 17, 24, 27, 28, 30, 31, 33, 36, 38, 44, 45, 60, 66, 68, 72, 91, 92, 100, 104, 105], "nor": [5, 6, 7, 8], "notabl": 0, "note": [1, 2, 27, 28, 29, 30, 48, 102], "now": 69, "np": [30, 44, 45, 52, 61, 67, 75, 93, 95, 105], "npy": 35, "nuclei": [0, 49], "nullifi": 0, "num_contrast": 98, "num_group": 69, "num_of_items_to_iter": 33, "number": [0, 15, 24, 26, 36, 44, 60, 61, 62, 65, 78, 79, 82, 91, 93, 98], "numpi": [0, 1, 30, 31, 36, 38, 44, 52, 59, 60, 61, 65], "o": [0, 4, 10, 21, 22, 26, 35, 36, 37, 42, 43, 44, 48, 50, 53, 54, 55, 59, 61, 71, 78, 79, 80, 88, 91, 94, 99, 103, 104, 105, 107], "object": [0, 5, 26, 29, 30, 33, 59, 65], "obtain": 60, "oc": 50, "occurr": 0, "ochann": [55, 99], "ochann_extend": 55, "odt": [0, 50], "off": 0, "offer": 0, "often": [0, 77], "ok": [0, 2, 22], "old": 0, "old_imag": 50, "old_text": 88, "om": [36, 37, 44, 60, 61, 86], "one": [0, 5, 12, 22, 44, 49, 55], "onewordcondit": 69, "onli": [22, 24], "onlin": [0, 2], "op": 98, "open": [2, 71], "opencv": [31, 49, 58], "openpyxl": 15, "openssl": 2, "oper": [0, 88], "optim": 0, "option": [1, 2, 5, 18, 23, 27, 28, 30, 31, 34, 36, 38, 44, 46, 60, 64, 65, 69, 72, 82, 91, 97], "option_str": [27, 28], "orang": 33, "order": [0, 14, 17, 19, 22, 24, 30, 31, 59, 68, 72, 75, 83, 105], "org_data": [1, 25, 82], "organ": [0, 5, 13, 18, 19, 79, 83], "organize_validation_data": [18, 25, 82], "orient": [30, 31, 41, 45, 48, 72], "orientation_str": 31, "origin": [13, 31, 45, 59, 93], "original_dimens": [104, 105], "original_dir": 0, "original_res_in_um": 59, "ort": [0, 72], "ort_cod": 72, "other": [0, 1, 2, 10, 20, 22, 34, 38, 46, 58, 80, 82, 97], "other_abbrevi": [15, 24], "other_abbreviation_defin": [15, 24], "other_mask": 91, "otherwis": [0, 24], "our": 2, "out": [0, 1, 2, 71, 82, 97], "out_dir": 69, "outer": 26, "outer_bound": 26, "outer_xmax": 26, "outer_xmin": 26, "outer_ymax": 26, "outer_ymin": 26, "outer_zmax": 26, "outer_zmin": 26, "outlier": 94, "outlin": 52, "output": [0, 1, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 26, 28, 30, 34, 36, 37, 39, 44, 45, 46, 48, 52, 60, 61, 66, 67, 68, 69, 72, 75, 77, 92, 95, 99, 100, 101, 102, 103, 104, 105], "output_dir": [10, 16, 31, 42, 72], "output_fil": [14, 66], "output_file_path": 31, "output_imag": 59, "output_img": 4, "output_img_path": 60, "output_index": 10, "output_nam": [79, 80, 98], "output_path": [23, 26, 30, 43, 48, 49, 58, 67, 107], "output_prefix": 98, "output_rgb_lut": [16, 23], "outsid": [0, 44, 52], "outward": 0, "over": 0, "overrid": 23, "p": [0, 5, 10, 11, 12, 18, 45, 69, 72, 85, 94, 95, 98], "p50": 1, "p_val_txt": 18, "p_value_threshold": [0, 10], "packag": [0, 1, 83], "pad": [0, 1, 31, 32, 61, 62, 72, 82, 104, 107], "pad_fract": [104, 105], "pad_width": 31, "page": [0, 1, 2], "pai": 0, "paint": 0, "pan": 0, "panda": [1, 44, 60], "parallel": [0, 26, 30, 31, 61], "parallel_load": 30, "param": [6, 7, 8], "paramet": [0, 5, 6, 7, 8, 10, 11, 15, 16, 18, 23, 24, 28, 31, 34, 38, 39, 45, 46, 52, 61, 64, 67, 69, 72, 75, 78, 86, 88, 91, 93, 101, 102, 103, 105, 107], "parent": [0, 24, 30, 86], "parenthes": 0, "pars": [27, 29], "parse_arg": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "parse_color_argu": [69, 70, 82], "parser": [27, 28], "part": 0, "partial": 0, "pass": [0, 33, 98], "password": 2, "past": [0, 2, 23], "path": [1, 2, 4, 10, 11, 14, 16, 18, 21, 22, 23, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 50, 52, 54, 56, 60, 61, 63, 64, 65, 66, 67, 68, 72, 75, 77, 78, 79, 85, 86, 87, 90, 94, 95, 98, 99, 101, 103, 104, 105, 107], "path_or_pattern": 30, "path_to_tif_dir": 86, "pathlib": 33, "pattern": [0, 18, 30, 33, 39, 84, 85, 94], "pattern1": 0, "pattern2": 0, "pd": [5, 6, 7, 8, 36], "pdf": [17, 68, 94], "pearson": 95, "pennmedicin": 1, "per": [33, 79], "percent": 57, "percent_vol": 24, "percent_vol_threshold": 24, "percentag": [24, 31], "perform": [0, 5, 10, 11, 17, 58, 68, 72, 88, 100, 101], "perform_t_test": [17, 25, 68, 70, 82], "perform_tukey_test": [5, 25, 82], "period": 2, "permiss": 0, "permut": 98, "permutations_per_frag": 98, "physic": 44, "pi": 1, "pip": [0, 1, 2], "pipe": 0, "pir": 45, "pixel": [0, 31, 49, 61, 77, 79, 101], "pixel_classif": [31, 32, 82], "place": 11, "placehold": 0, "plane": [30, 65], "plaqu": 0, "pleas": [1, 2], "plot": [0, 14, 16, 17, 19, 22, 23, 68, 69, 94], "plot_data": [17, 25, 68, 70, 82], "plote": 0, "point": [0, 36, 38, 44, 60, 102], "points_csv_input_path": 60, "points_csv_output_path": 60, "points_csv_path": 44, "points_df": [36, 44], "points_ndarrai": [36, 44], "points_resampled_df": 60, "points_resampled_img": 60, "points_to_atla": [1, 82, 106], "points_to_img": [1, 47, 82], "pool": [5, 6, 7, 8, 13, 19], "popul": 0, "posit": [0, 45, 72], "possibl": 38, "posterior": [0, 45, 72], "powershel": 2, "pre": 0, "precis": 91, "predict": 0, "prefix": [0, 5, 6, 7, 8, 17, 68, 87], "prep": [3, 81, 82], "prepar": [0, 44, 75], "prepend": [0, 33, 82, 87, 89, 90], "prepend_condit": [0, 1, 82, 89], "preprocess": [0, 75], "prereq": [14, 17, 23, 24, 65, 68, 72, 77, 98, 99, 100, 101, 102, 103, 105, 107], "present": [0, 5, 6, 7, 8, 30, 62, 82], "preser": 83, "preserv": [0, 48, 82, 97], "press": 0, "prevent": 0, "preview": [0, 23], "previou": [0, 24], "print": [0, 1, 2, 18, 29, 31, 33, 40, 41, 44, 56, 62, 72, 82, 88], "print_dir": 33, "print_func_name_args_tim": [32, 33, 82], "print_id": 31, "print_metadata": [39, 47, 82], "print_siz": [31, 64], "prior": 0, "priorit": 24, "prism": [0, 1, 22, 25, 82], "probability_threshold": 10, "probabl": 10, "process": [0, 5, 10, 14, 20, 22, 31, 33, 52, 61, 71, 75, 99, 103], "process_and_plot_data": [69, 70, 82], "process_fdr_and_clust": [10, 25, 82], "process_fil": [20, 25, 82], "process_files_with_glob": [32, 33, 82], "process_intens": [51, 52, 62], "process_slic": [31, 32, 82], "processing_func": 33, "profil": 0, "prog": [27, 28], "program": 0, "progress": 33, "progresscolumn": 33, "project": [1, 77, 79], "promot": 44, "prompt": [0, 2], "properti": [0, 2], "provid": [0, 1, 3, 10, 15, 24, 26, 29, 30, 33, 36, 38, 39, 44, 60, 68, 69, 75, 86, 91, 105], "psilocybin": [5, 6, 7, 8], "psilocybin_v_saline_tstat1_q": 22, "public": 1, "pubm": [0, 6], "pull": [0, 2], "punctat": 0, "pwd": 0, "py": [0, 21, 80, 94, 95], "pyenv": 2, "pyenv_root": 2, "pypi": [1, 2], "pyproject": 0, "python": [0, 1, 2, 76, 82, 106], "python3": 2, "q": [0, 10, 11], "q_valu": [0, 10, 11], "qc": [73, 74], "qform": 45, "qualiti": 0, "quantif": 1, "quantifi": [0, 26, 65], "question": [1, 2], "queue": 71, "quick": 0, "quicker": 0, "quickli": 0, "quot": 69, "r": [0, 3, 28, 45, 69, 72, 77, 87, 88, 102, 104], "r_to_p": [82, 96, 97], "r_to_z": [95, 96, 97], "ra": [30, 31, 41, 45, 48], "radii": 58, "radiu": [0, 31, 49, 58], "rais": [5, 6, 7, 8], "random": 0, "randomis": [0, 98], "randomise_parallel": [0, 98], "rang": [0, 38], "rate": 5, "ratio": 49, "raw": [1, 22, 67], "raw_data_for_t": 22, "raw_tif_dir": [0, 78], "rawconfigpars": 29, "rb": [0, 1, 62, 82, 99], "re": [0, 30, 31, 34, 46, 59, 75, 91], "reach": 1, "read": 29, "readabl": 27, "readi": 10, "recommend": [0, 2], "rectangl": 0, "recurs": [0, 20, 21, 87, 88], "recursively_mirror_rev_cluster_indic": [0, 1, 25, 82], "recus": 85, "red": [0, 33], "ref_imag": [44, 60], "ref_img": [44, 60], "refer": [0, 30, 44, 60, 107], "reference_img": 30, "refin": [0, 1], "reflect": [5, 12], "reg": [1, 65, 75, 76, 77, 82, 99, 102, 103, 107], "reg_affine_initi": [0, 71], "reg_check": [1, 72, 76, 82], "reg_check_brain_mask": [0, 1, 76, 82], "reg_input": [0, 57, 72, 75, 77, 78, 102, 104], "reg_output": [0, 71, 72, 102, 104, 105, 107], "reg_outputs_path": [71, 104, 107], "reg_prep": [1, 34, 39, 46, 65, 72, 76, 77, 82], "reg_r": [75, 105], "reg_result": 0, "regard": 65, "regex": 83, "region": [1, 3, 12, 15, 23, 24, 31, 44, 52, 60, 65, 66, 67, 68, 69], "region_": [0, 68], "region_abbr": [68, 69], "region_counts_df": 65, "region_id": [0, 3, 36, 44, 60, 65, 67, 68, 69], "region_info_df": 65, "region_intens": 68, "region_mask": 0, "region_nam": 69, "region_stat": [0, 1, 82], "regional_cell_dens": 0, "regional_cell_densities_al": 69, "regional_cell_densities_summari": 0, "regional_data_df": 65, "regional_stat": [65, 69, 102], "regional_volumes_df": 65, "regist": [0, 1, 82], "registr": [1, 31, 34, 39, 46, 73, 75, 76, 77, 82, 102, 103, 107], "reinstal": 0, "rel": [0, 8, 12, 26, 30, 39, 75, 99, 103], "rel_path": [0, 39, 65], "rel_path_to_src_fil": 84, "relabel": 0, "relabel_nii": [51, 62, 82], "relat": 0, "related": 83, "relative_hedges_g": [8, 9, 25], "releas": 2, "relev": 22, "reli": [27, 28], "reload": 0, "remain": [0, 33], "remot": [0, 2], "remov": [0, 13, 44, 58, 68, 90], "remove_zero_intensity_region": [68, 70, 82], "renam": [0, 1, 25, 70, 82, 87, 89], "rename_dir": 87, "rename_fil": [82, 87, 88, 89], "rename_item": [82, 87, 89], "rename_typ": 88, "render": 33, "reopen": 0, "reorder": [25, 70, 82], "reorient": [0, 31, 45, 75], "reorient_for_raw_to_nii_conv": [31, 32, 82], "reorient_ndarrai": [31, 32, 82], "reorient_ndarray2": [31, 32, 82], "reorient_nii": [1, 47, 82], "replac": [0, 10, 82, 86, 88, 97], "repo": [0, 1, 2], "repo_root_dir": 0, "repositori": [0, 1, 2], "repres": [0, 24, 33, 36, 44, 60, 82, 97], "reproduc": 2, "request": 30, "requir": 61, "rerun": 22, "resampl": [0, 1, 31, 32, 44, 60, 62, 72, 75, 82], "resample_and_convert_point": [60, 62, 82], "resample_point": [1, 62, 82], "resampled_imag": 60, "resampled_nii": 59, "resampled_point": 60, "resolut": [0, 16, 23, 30, 31, 34, 46, 59, 60, 61, 65, 67, 75, 81, 82, 104, 105], "resolv": [30, 33], "resolve_path": [30, 32, 82], "respect": [0, 22], "restart": 2, "restrict": 91, "result": [0, 5, 13, 22, 26, 65, 69, 94], "retriev": 68, "return": [5, 6, 7, 8, 10, 23, 24, 26, 29, 31, 33, 34, 38, 41, 45, 46, 49, 52, 58, 61, 64, 67, 69, 72, 75, 91, 105], "return_3d_img": [30, 32, 82], "return_metadata": 30, "return_r": [30, 34, 46], "rev_cluster_index": [0, 5, 14, 16, 18, 23], "rev_cluster_index_img": 10, "rev_cluster_index_to_warp_from_atlas_spac": [0, 26], "rev_cluster_index_valid_clust": 16, "revers": [0, 10], "reverse_clust": [10, 25, 82], "reverse_reorient_for_raw_to_nii_conv": [31, 32, 82], "review": 2, "rf": [0, 22], "rgb": [15, 23], "rgba": 3, "rh": [0, 5, 20], "rh_file": 92, "rh_mask": 101, "rhz": 101, "ri": [44, 60], "rich": [28, 33], "rich_argpars": 28, "richhelpformatt": 28, "right": [0, 2, 13, 45, 55, 60, 72], "rijsket": 1, "rlapsi": 31, "rm": [0, 22], "ro": [104, 107], "roll": [0, 31, 49, 58], "rolling_ball_subtract": [58, 62, 82], "rolling_ball_subtraction_opencv_parallel": [31, 32, 82], "root": [0, 22], "roughli": [0, 83], "row": [0, 5, 6, 7, 8, 24, 36, 44, 45, 60, 87], "rp": 0, "rstat": [1, 44, 70, 82, 102], "rstats_if_mean": 68, "rstats_if_mean_in_seg": 68, "rstats_mean_if": [0, 1, 70, 82], "rstats_mean_if_in_seg": [0, 67], "rstats_mean_if_in_segmented_voxel": [1, 70, 82], "rstats_mean_if_summari": [0, 1, 66, 67, 70, 82], "rstats_summari": [1, 65, 70, 82], "run": [2, 10, 13, 14, 20, 24, 25, 39, 44, 63, 67, 71, 75, 77, 79, 82, 83, 86, 98, 99, 100, 101, 102, 104], "run_randomise_parallel": [82, 97, 98], "run_script": [22, 25, 82], "run_with_timeout": [71, 76, 82], "ryskamp": 1, "sa": 3, "salin": [0, 5, 6, 7, 8, 65, 69, 90], "saline_sample06": [0, 69], "saline_sample07": [0, 69], "same": [0, 3, 15, 24, 44, 61, 68, 69], "sampl": [1, 5, 6, 7, 8, 14, 17, 18, 19, 26, 33, 39, 65, 67, 73, 74, 75, 78, 79, 82, 86, 89, 91, 99, 101, 102, 103], "sample01": [22, 87, 90], "sample01_cfos_correlation_map": 95, "sample01_fil": 87, "sample01_slice_0000": 0, "sample01_slice_0005": 0, "sample01_slice_0050": 0, "sample02": [22, 87, 90], "sample02_fil": 87, "sample03": 0, "sample04": 0, "sample04_slice_0050": 0, "sample14": [0, 65], "sample36": [0, 65], "sample_dir_list": 33, "sample_dir_pattern": 33, "sample_kei": [1, 14, 17, 22, 68, 87, 90], "sample_nam": [19, 65], "sample_path": [18, 33, 65, 78, 84, 103, 105], "save": [0, 4, 10, 14, 19, 20, 26, 30, 34, 35, 37, 39, 46, 49, 54, 55, 57, 58, 59, 60, 61, 70, 72, 77, 80, 82, 93, 107], "save_3d_img": [30, 32, 82], "save_as_h5": [30, 32, 82], "save_as_nii": [30, 32, 47, 48, 82], "save_as_tif": [30, 32, 34, 46, 47, 82], "save_as_zarr": [30, 32, 43, 47, 82], "save_cropped_img": [4, 25, 82], "save_labels_as_mask": [79, 80, 81, 82], "save_metadata": 30, "save_metadata_to_fil": [30, 32, 82], "save_tif": [49, 58, 62, 82], "scale": [0, 44, 47, 48, 82, 91, 104, 105], "scale_bool_to_full_r": [82, 91, 97], "scale_mod": 38, "scale_to_full_r": [82, 105, 106], "scanner": 45, "scienc": 1, "scipi": [1, 31, 59, 75], "score": [0, 12, 47, 82, 91, 95, 97, 100], "script": [1, 2, 5, 22, 27, 28, 29, 33, 44, 102, 104], "script_arg": 22, "script_nam": 22, "scroll": 0, "sd": 94, "se": [6, 7, 8], "search": [0, 1, 2, 31, 33, 88], "second": [0, 5, 10, 19, 22, 45, 49, 91], "section": [0, 29], "sed": 0, "see": [0, 2, 79, 98], "seed": 98, "seg_brain_mask": [1, 72, 75, 77, 81, 82, 101], "seg_copy_tif": [1, 72, 75, 78, 79], "seg_crop": 26, "seg_dir": [0, 26, 67], "seg_ilastik": [1, 65, 67, 79, 81, 82], "seg_ilastik_1": 80, "seg_img": 65, "seg_in_clust": 26, "seg_labels_to_mask": 0, "seg_mask": 91, "seg_volume_in_cubic_mm": 26, "segment": [1, 26, 31, 65, 67, 82, 97], "segmentation_dir": [79, 80], "segmentation_imag": [0, 65], "select": [0, 2, 5, 6, 7, 8, 33, 78, 88], "selector": [5, 6, 7, 8], "send": 2, "sensit": 0, "separ": [0, 17, 22, 31, 33, 64, 98], "seper": 71, "sequenc": 0, "sequenti": 0, "seri": [0, 5, 6, 7, 8, 30, 31, 34, 36, 37, 39, 42, 44, 46, 54, 60, 61, 75, 77, 80, 86], "server": 0, "session": 0, "set": [1, 27, 28, 29, 30, 33, 36, 44, 45, 60, 98], "setup": 0, "sex": [0, 7, 8], "sform": 45, "sh": [2, 22], "shamloo": 1, "shape": [41, 44, 60], "share": [0, 24], "shell": [1, 2], "shift": [0, 2, 92, 93, 100], "short": 0, "shortcut": 0, "shortnam": 0, "should": [0, 2, 5, 6, 7, 8, 22, 24, 33, 39, 44, 49, 58, 87, 90, 98], "show": [0, 2, 33], "show_plot": 68, "shrink": 72, "shrink_factor": 72, "side": [0, 5, 17, 20, 31, 45, 55, 65, 68, 69, 72, 82, 97], "sigma1": 49, "sigma2": 49, "sign": 38, "signal": [0, 1, 82, 97], "signifi": 0, "signific": [0, 5, 12, 17, 23, 49, 68], "simga2": 49, "similar": 0, "sinc": [0, 5, 44, 45], "singl": [0, 27, 28, 30, 49, 52, 58, 60, 61], "size": [1, 6, 7, 8, 23, 30, 31, 39, 41, 49, 58, 61, 62, 82], "sk": [0, 14, 17, 22, 68, 87], "slack": 0, "slice": [0, 31, 33, 61, 78, 79], "slice_": [34, 46, 77], "slice_numb": 78, "slicer": 0, "slow": 91, "slowli": 0, "sm": [0, 27, 28, 32, 72, 82], "small": [0, 6, 7, 8], "smaller": [0, 49, 52, 58], "smallest": 52, "smart_float_format": [11, 25, 82], "smooth": [0, 92, 100], "so": [0, 2, 10, 45], "some": 58, "sort": [17, 25, 52, 68, 82], "sort_sampl": [19, 25, 82], "sort_sunburst_hierarchi": [24, 25, 82], "sourc": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 105, 107], "source_dir": [33, 78], "source_img": 103, "space": [0, 1, 17, 26, 31, 44, 64, 66, 70, 82, 86, 97, 99, 102, 103, 104, 105, 106], "sparser": 0, "spatial": [0, 30, 45, 49, 61, 91], "spatial_averag": [0, 1, 62, 82], "spatial_average_2d": [61, 62, 82], "spatial_average_3d": [61, 62, 82], "spatial_avg": 61, "specif": [0, 1, 28, 31, 33, 82, 97], "specifi": [0, 5, 6, 7, 8, 24, 26, 27, 28, 29, 30, 31, 33, 37, 38, 39, 61, 78, 87, 88, 91, 93, 98], "speed": [0, 33], "split": [3, 10], "split_clusters_based_on_effect": [10, 25, 82], "spool": [6, 7, 8], "spot": 1, "spread": 0, "squar": 0, "src": 18, "src_dir": 85, "ssd": 0, "stack": 1, "stain": [1, 14, 66, 67], "standard": [38, 49, 101], "stanford": [1, 2], "start": [0, 5, 6, 7, 8, 15, 24, 33], "startup": 2, "stat": [1, 10, 11, 14, 22, 98, 100, 101], "static": 29, "statist": [0, 69], "stats_df": 5, "stats_info_g1_v_g2": 10, "stats_tabl": [1, 25, 82], "statu": 0, "stderr": 71, "step": [1, 2, 24, 65, 67, 72, 75, 98, 99, 100, 101], "stick": 0, "stitch": 1, "storag": 0, "store": 2, "str": [5, 6, 7, 8, 10, 28, 30, 31, 33, 44, 45, 60, 65, 72, 86, 107], "stream": 0, "string": [0, 1, 27, 28, 31, 33, 82, 98], "string_in_fil": 0, "strip": [11, 29], "struct_el": 31, "structur": [1, 13], "structure_id_path": [15, 24], "studio": [0, 3, 23], "style": [28, 29], "sub": 0, "subclass": 29, "subdir": [0, 5, 33, 86], "subdirectori": [79, 86], "subfold": 0, "subject": 0, "subpackag": 1, "subprocess": [22, 71], "subset": [0, 30, 78], "subshel": 0, "substitut": 0, "substr": 83, "subsystem": 1, "subtract": [31, 49, 58, 99], "succinctli": 0, "sudo": 2, "suggest": [0, 1], "sum": 24, "summar": [0, 15, 21, 24, 65, 69], "summari": [0, 1, 14, 25, 69, 82], "summarize_signific": [69, 70, 82], "summary_df": 69, "sunburst": [0, 1, 15, 16, 22, 24, 25, 82], "sunburst_csv_path": [16, 23, 24], "sunburst_idpath_abbrv": [16, 23], "sunburst_rgb": 23, "superior": [0, 45, 72], "supplement": 6, "support": [0, 58], "suppress": [27, 28, 71], "suppressmetavar": [27, 28, 32, 82], "surfac": 52, "switch": 0, "symbol": 0, "system": [0, 2, 22, 98], "t": [0, 6, 7, 8, 14, 22, 25, 30, 34, 45, 46, 69, 70, 71, 79, 80, 82, 86, 88, 90, 98], "tab": [0, 23], "tabl": [0, 1, 14, 25, 68, 82], "table_column": 33, "tag": 1, "tail": [0, 95], "target": [0, 18, 33, 38, 45, 59, 60, 73, 74, 78, 84], "target_dir": [13, 18, 33, 78, 84], "target_ort": 45, "target_output_dir": [73, 74], "target_r": [31, 59, 60, 105], "target_rang": 38, "task": 33, "task_id": 33, "task_messag": 33, "td": [0, 18, 73, 74], "templat": [0, 1, 2, 76, 82], "template1": 72, "template2": 72, "tensoranalyt": 1, "terastitch": 0, "termin": [2, 28], "test": [0, 14, 22, 25, 49, 69, 70, 82, 98], "test_df": 69, "test_pool": 22, "test_result": 22, "test_typ": [17, 68], "text": [0, 27, 28, 30, 33, 34, 46, 88], "than": [0, 36, 49, 64], "thei": [0, 5, 24, 30, 44], "them": [0, 23, 24, 27, 28, 29, 31, 33, 44, 60, 88], "thi": [0, 1, 2, 5, 6, 7, 8, 12, 13, 14, 20, 22, 24, 27, 28, 29, 30, 31, 33, 34, 39, 44, 49, 60, 67, 69, 71, 75, 87, 91, 92, 100, 102, 104, 107], "thin": [0, 52], "thing": 0, "third": [0, 45], "those": [5, 6, 7, 8, 83], "though": 22, "thr": [0, 44, 60, 102], "thread": [31, 61], "three": 41, "thresh": [44, 60], "threshold": [0, 10, 18, 44, 60], "threshold_points_by_region_id": [44, 47, 82], "through": [0, 5], "tif": [1, 30, 31, 33, 34, 36, 37, 39, 42, 44, 46, 49, 54, 55, 58, 60, 61, 75, 77, 78, 80, 86, 99, 103], "tif_dir": [0, 31, 37, 39, 61, 79], "tif_dir_out": [30, 34, 46], "tif_folder_nam": 86, "tif_path": [30, 46, 49, 58], "tif_to_tif": [1, 47, 82], "tiff": [0, 58], "tifs_path": 39, "tild": 0, "tile": 0, "time": [22, 33, 49, 58, 71], "timeelapsedcolumn": 33, "timeout": 71, "timeremainingcolumn": 33, "timeseri": 0, "tip": 0, "tissu": [0, 26, 31, 76, 77, 82, 97, 104, 105, 106], "tissue_in_atlas_spac": 107, "tissue_mask": 91, "tk": 2, "tl": 1, "to_atla": [1, 82, 106], "to_fix": [1, 82, 106], "to_n": [1, 82, 104, 106], "togeth": [0, 93, 101], "toggl": [0, 82, 89], "toggle_sampl": [1, 82, 89], "toml": 0, "tool": [0, 1, 2], "top": [24, 55], "top_n": 24, "top_region": 24, "total": [0, 24, 33, 98], "total_permutations_per_contrast": 98, "touch": 0, "tp": [0, 92, 100], "tr": 60, "track": 0, "tract": 0, "trail": 11, "train": [1, 75, 77, 78, 79], "trained_ilastik_project": 0, "transform": [0, 30, 45, 95, 107], "transform_nii_affin": [45, 47, 82], "transpar": 0, "transpos": [0, 63], "transpose_ax": [1, 62, 82], "transpose_img": [62, 63, 82], "treat": 5, "treatment": [0, 14, 17, 22, 68, 87, 90], "treatment_sample02_fil": 87, "treatment_sample03_cell_density_data": 0, "treatment_sample03_rb4_atlas_space_z": 0, "treatment_sample04_cell_density_data": 0, "treatment_sample04_rb4_atlas_space_z": 0, "treatment_sample04_regional_cell_dens": 0, "triangl": 0, "trim": 0, "true": [30, 33, 34, 45, 46, 88, 107], "tstat1": 0, "tstat2": 0, "ttest": [14, 17, 68], "ttest_result": 12, "tukei": [14, 25, 70, 82], "tukey_result": 12, "tupl": [27, 28, 30, 34, 38, 46, 52, 60, 61], "turn": 0, "tutori": [0, 2], "two": [0, 5, 6, 7, 8, 17, 44, 68, 87, 95, 98], "txt": [3, 4, 10, 19, 24, 26, 30, 33, 39, 54, 85, 102, 105], "type": [0, 5, 6, 7, 8, 10, 16, 18, 23, 30, 31, 33, 36, 37, 38, 41, 44, 45, 52, 58, 60, 61, 64, 65, 67, 69, 75, 88, 91, 103, 107], "typic": 1, "u": 0, "ubuntu": 2, "uc": 83, "uint16": [38, 44, 50, 52, 103], "uint32": 38, "uint64": 38, "uint8": [38, 44, 52, 103], "um": [20, 30, 34, 46, 75, 77, 93], "um_brain_mask": [0, 77], "um_mask": [0, 77], "um_masked_fixed_reg_input": [0, 73], "um_tif": [0, 75, 77], "um_tifs_ilastik_brain_seg": 77, "unbias": [6, 7, 8], "uncorrect": 0, "undefin": 0, "under": 0, "underscor": [17, 86], "undo_fill_with_origin": [24, 25, 82], "unfamilar": 2, "unfamiliar": [0, 2], "unilater": [0, 5, 10, 19], "uniq_intens": [62, 64, 82], "uniqu": [0, 5, 6, 7, 8, 31, 52, 62, 82], "unique_condit": [5, 6, 7, 8], "unique_intens": [1, 52, 62, 82], "unnecessari": 11, "unpack": [44, 102], "unpad": [0, 107], "unpair": [5, 98], "unravel": 0, "unravel_command": [0, 1, 2, 82], "unsign": [0, 38], "until": 24, "up": [1, 11, 24, 68, 86, 98], "updat": [0, 2, 59], "upenn": 1, "upgrad": 2, "upper": [0, 2, 44], "upper_thresh": [44, 60], "upstream_path": 30, "us": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 72, 73, 74, 75, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 105, 107], "usag": [0, 1, 7, 9, 25, 27, 28, 29, 33, 47, 51, 55, 62, 70, 76, 81, 82, 89, 96, 97, 106], "use_um": 30, "user": [0, 1, 2], "usernam": [2, 29], "usr": 2, "uthr": [0, 44, 60, 102], "util": [0, 1, 2, 32, 82], "utils_agg_fil": [1, 65, 67, 68, 84, 99, 101], "utils_agg_files_rec": [0, 85], "utils_clean_tif": 86, "utils_points_compressor": [44, 102], "utils_prepend": [1, 14, 17, 19, 22, 68, 87], "utils_renam": [0, 87, 88], "utils_toggl": [0, 90], "v": [0, 2, 3, 4, 10, 18, 20, 22, 23, 26, 36, 44, 55, 59, 60, 61, 75, 77, 80, 84, 86, 90, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 107], "valid": [5, 6, 7, 8, 10, 16, 18, 21, 22, 23, 25, 82], "valid_clust": [16, 24], "valid_cluster_ids_sorted_by_anatomi": 19, "valid_clusters_dir": 19, "valid_clusters_sunburst": 22, "valid_clusters_t_test": [5, 25, 82], "valid_clusters_tables_and_legend": 22, "validation_dir": 18, "validation_dir_pattern": 18, "valu": [0, 3, 5, 10, 11, 12, 15, 18, 23, 24, 27, 28, 29, 30, 38, 44, 45, 52, 56, 60, 64, 69, 94, 95], "valud": 45, "variabl": 1, "variou": 30, "vd": [0, 18, 22], "ventricl": 0, "venv": 2, "verbos": [24, 29, 33, 72, 78, 84, 86, 98], "verbose_end_msg": [32, 33, 82], "verbose_start_msg": [32, 33, 82], "version": [0, 3, 49, 91, 100], "very_general_region": [15, 24], "via": [0, 1, 2, 95], "video": [0, 1, 2], "view": [0, 2], "virtual": 2, "virtualenv": 2, "visit": 2, "visual": [0, 3], "vizual": 3, "volum": [0, 23, 25, 26, 61, 65, 82], "volume_summari": 50, "volumes_dict": 23, "vox_p": 0, "vox_p_": [10, 11], "vox_p_fstat1": [0, 10], "vox_p_fstat2": 0, "vox_p_fstat3": 0, "vox_p_tstat1": [0, 10, 11], "vox_p_tstat2": 0, "voxel": [1, 23, 26, 30, 31, 36, 39, 41, 44, 55, 60, 61, 62, 65, 67, 82, 93, 94, 97, 98, 100, 101], "voxel_stat": [0, 1, 82], "voxl": 0, "vstat": [1, 10, 11, 14, 18, 82, 97, 99, 100, 101], "vstats_apply_mask": [0, 91], "vstats_dir": [0, 18, 22], "vstats_hemi_to_avg": [0, 92, 101], "vstats_mirror": [0, 93], "vstats_path": 18, "vstats_prep": [1, 49, 72, 75, 82, 97, 98, 100, 101], "vstats_whole_to_avg": [1, 98, 100, 101], "vstats_z_scor": [1, 77, 98, 100, 101], "w": [0, 3, 5, 6, 7, 8, 14, 15, 23, 25, 26, 62, 69, 70, 71, 75, 77, 82, 86, 97], "wa": [0, 1, 12], "wai": 0, "want": [0, 2, 22, 49], "warp": [0, 1, 26, 31, 82, 97, 99], "warp_points_to_atla": [0, 102], "warp_to_atla": [0, 103, 107], "warp_to_fix": [0, 104, 107], "warp_to_n": [0, 70, 82, 105], "warped_img": 104, "wc": 0, "we": [0, 1, 2, 24], "web": 1, "websit": 2, "well": 39, "were": [0, 1], "weslei": 1, "weszhao": 1, "wget": 2, "what": [0, 88], "whatev": 0, "wheel": 0, "when": [0, 2, 22, 47, 82, 89, 93], "where": [0, 2, 5, 6, 7, 8, 12, 24, 33, 36, 44, 52, 60, 78, 82, 97, 107], "whether": [5, 30, 88], "which": [0, 33, 44], "while": 0, "whole": [10, 101], "whole_to_lr_avg": [0, 1, 82, 97], "whose": [5, 6, 7, 8], "wide": 1, "width": [27, 28], "win": 2, "window": [0, 1], "windowsoptionalfeatur": 2, "wirefram": [0, 51, 62, 82], "wireframe_imag": 52, "wireframe_image_id": 52, "wise": [1, 98, 100, 101], "within": [0, 24, 31, 33, 44, 68], "without": [0, 88], "withs": [17, 68], "word": [0, 5, 17, 19, 68], "work": [0, 2, 5, 15, 17, 19, 22, 24, 28, 68, 73, 74], "workflow": [1, 83], "worksheet": 15, "would": 0, "write": [0, 14, 31, 66, 67], "write_to_csv": [14, 25, 66, 67, 70, 82], "wsl": 1, "x": [1, 4, 24, 30, 31, 36, 39, 44, 45, 55, 60, 65, 72, 75, 91, 95, 103, 105], "x_dim": 30, "x_re": [30, 60], "xlsx": [14, 15, 22], "xmax": [26, 30, 31], "xmin": [26, 30, 31], "xy": [0, 4, 30, 61, 65], "xy_r": [4, 26, 30, 31, 34, 46, 65, 75, 105], "xy_voxel_s": [34, 46], "xyz": [30, 34, 46, 72], "xyz_res_in_um": 16, "xz": 2, "y": [1, 2, 30, 31, 36, 39, 44, 45, 60, 65, 72, 75, 91, 105], "y_dim": 30, "y_re": [30, 60], "yeild": [0, 11], "yellow": 0, "yield": 0, "ymax": [26, 30, 31], "ymin": [26, 30, 31], "you": [0, 1, 2, 22, 49], "your": [0, 1, 2, 33], "z": [1, 4, 12, 30, 31, 36, 39, 44, 45, 47, 60, 61, 65, 72, 75, 82, 91, 95, 97, 100, 103, 105], "z_dim": 30, "z_map": 95, "z_re": [4, 26, 30, 31, 34, 46, 60, 65, 75, 105], "z_score": [0, 1, 82, 97], "z_to_p": [95, 96, 97], "z_voxel_s": [34, 46], "zarr": [0, 30, 36, 37, 43, 44, 48, 60, 61, 91, 99, 103, 105], "zarr_path": 30, "zarr_to_ndarrai": [47, 48, 82], "zarr_to_nii": [1, 47, 82], "zeiss": 0, "zen": 0, "zero": [0, 11, 36, 44, 45, 61, 62, 82, 97], "zero_origin": 45, "zetastitch": 0, "zhao": 1, "zlib1g": 2, "zmax": [26, 30, 31], "zmin": [26, 30, 31], "zo": 59, "zoom": [0, 31, 59, 75], "zoom_ord": [31, 59, 75, 105], "zscore": 38, "zscore_rang": 38, "zsh": 0, "zshrc": [0, 2], "zyx": [34, 46], "\u00b5m": 0}, "titles": ["Guide", "UN-biased high-Resolution Analysis and Validation of Ensembles using Light sheet images", "Installation", "unravel.cluster_stats.brain_model module", "unravel.cluster_stats.crop module", "unravel.cluster_stats.cstats module", "unravel.cluster_stats.effect_sizes.effect_sizes module", "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute module", "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative module", "unravel.cluster_stats.effect_sizes package", "unravel.cluster_stats.fdr module", "unravel.cluster_stats.fdr_range module", "unravel.cluster_stats.find_incongruent_clusters module", "unravel.cluster_stats.group_bilateral_data module", "unravel.cluster_stats.mean_IF module", "unravel.cluster_stats.legend module", "unravel.cluster_stats.index module", "unravel.cluster_stats.mean_IF_summary module", "unravel.cluster_stats.org_data module", "unravel.cluster_stats.prism module", "unravel.cluster_stats.recursively_mirror_rev_cluster_indices module", "unravel.cluster_stats.stats_table module", "unravel.cluster_stats.summary module", "unravel.cluster_stats.sunburst module", "unravel.cluster_stats.table module", "unravel.cluster_stats package", "unravel.cluster_stats.validation module", "unravel.core.argparse_utils module", "unravel.core.argparse_utils_rich module", "unravel.core.config module", "unravel.core.img_io module", "unravel.core.img_tools module", "unravel.core package", "unravel.core.utils module", "unravel.image_io.h5_to_tifs module", "unravel.image_io.img_to_npy module", "unravel.image_io.img_to_points module", "unravel.image_io.io_img module", "unravel.image_io.io_nii module", "unravel.image_io.metadata module", "unravel.image_io.nii_hd module", "unravel.image_io.nii_info module", "unravel.image_io.nii_to_tifs module", "unravel.image_io.nii_to_zarr module", "unravel.image_io.points_to_img module", "unravel.image_io.reorient_nii module", "unravel.image_io.tif_to_tifs module", "unravel.image_io package", "unravel.image_io.zarr_to_nii module", "unravel.image_tools.DoG module", "unravel.image_tools.atlas.relabel_nii module", "unravel.image_tools.atlas package", "unravel.image_tools.atlas.wireframe module", "unravel.image_tools.avg module", "unravel.image_tools.bbox module", "unravel.image_tools.extend module", "unravel.image_tools.max module", "unravel.image_tools.pad module", "unravel.image_tools.rb module", "unravel.image_tools.resample module", "unravel.image_tools.resample_points module", "unravel.image_tools.spatial_averaging module", "unravel.image_tools package", "unravel.image_tools.transpose_axes module", "unravel.image_tools.unique_intensities module", "unravel.region_stats.rstats module", "unravel.region_stats.rstats_mean_IF module", "unravel.region_stats.rstats_mean_IF_in_segmented_voxels module", "unravel.region_stats.rstats_mean_IF_summary module", "unravel.region_stats.rstats_summary module", "unravel.region_stats package", "unravel.register.affine_initializer module", "unravel.register.reg module", "unravel.register.reg_check module", "unravel.register.reg_check_brain_mask module", "unravel.register.reg_prep module", "unravel.register package", "unravel.segment.brain_mask module", "unravel.segment.copy_tifs module", "unravel.segment.ilastik_pixel_classification module", "unravel.segment.labels_to_masks module", "unravel.segment package", "unravel package", "unravel.unravel_commands module", "unravel.utilities.aggregate_files_from_sample_dirs module", "unravel.utilities.aggregate_files_recursively module", "unravel.utilities.clean_tif_dirs module", "unravel.utilities.prepend_conditions module", "unravel.utilities.rename module", "unravel.utilities package", "unravel.utilities.toggle_samples module", "unravel.voxel_stats.apply_mask module", "unravel.voxel_stats.hemi_to_LR_avg module", "unravel.voxel_stats.mirror module", "unravel.voxel_stats.other.IF_outliers module", "unravel.voxel_stats.other.r_to_p module", "unravel.voxel_stats.other package", "unravel.voxel_stats package", "unravel.voxel_stats.vstats module", "unravel.voxel_stats.vstats_prep module", "unravel.voxel_stats.whole_to_LR_avg module", "unravel.voxel_stats.z_score module", "unravel.warp.points_to_atlas module", "unravel.warp.to_atlas module", "unravel.warp.to_fixed module", "unravel.warp.to_native module", "unravel.warp package", "unravel.warp.warp module"], "titleterms": {"": [5, 17, 68], "0": 91, "1": 91, "100": 64, "3": 0, "8": 38, "If": 0, "across": 0, "activ": 90, "add": 0, "addit": [1, 98], "affine_initi": 71, "after": [0, 22], "aggregate_files_from_sample_dir": 84, "aggregate_files_recurs": 85, "all": [0, 64, 83, 90], "allen": 0, "alreadi": [65, 84], "an": [0, 101], "analysi": [0, 1, 2], "apply_mask": 91, "argparse_util": 27, "argparse_utils_rich": 28, "artifact": 91, "atla": [0, 50, 51, 52, 65, 68, 72, 101, 107], "automat": 0, "avail": 65, "avg": 53, "back": 0, "background": 0, "batch": 0, "bbox": 54, "being": 84, "between": 2, "bias": 1, "bit": 38, "both": 101, "brain": [0, 91], "brain_mask": 77, "brain_model": 3, "can": 0, "certain": 90, "chang": 2, "cheat": 0, "check": 2, "clean": 0, "clean_tif_dir": 86, "cli": 105, "cluster": [0, 64, 91], "cluster_stat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "code": 0, "color": 0, "command": [0, 83], "common": [0, 83], "condit": [17, 68, 90], "config": 29, "contact": 1, "content": [1, 82], "contribut": 1, "copi": 84, "copy_tif": 78, "core": [27, 28, 29, 30, 31, 32, 33], "correct": 0, "crop": 4, "cstat": 5, "cstats_fdr": 0, "cstats_fdr_rang": 0, "cstats_mirror_indic": 0, "cstats_org_data": 22, "cstats_summari": 0, "cstats_valid": [0, 22], "csv": 0, "custom": 68, "data": 0, "defin": 0, "depend": 1, "descript": 83, "develop": 1, "dir": [0, 90], "directli": 22, "directori": 88, "distribut": 0, "dog": 49, "dr": 2, "drive": 0, "e": 91, "each": 64, "effect_s": [6, 7, 8, 9], "effect_sizes_by_sex__absolut": 7, "effect_sizes_by_sex__rel": 8, "ensembl": 1, "env_var": 0, "etc": 0, "exampl": [0, 44], "exclud": 91, "exp": 0, "exp_not": 0, "experi": 0, "extend": 55, "extract": 39, "faster": 65, "fdr": 10, "fdr_rang": 11, "file": [84, 88], "find_incongruent_clust": 12, "folder": 0, "forward": 107, "from": [1, 65, 91], "full": 78, "function": 30, "g": 91, "get": [1, 2], "group_bilateral_data": 13, "guid": 0, "h5_to_tif": 34, "help": 0, "helper": 30, "hemi_to_lr_avg": 92, "hierarchi": 24, "high": 1, "i": [1, 38, 39, 64, 65, 84], "if_outli": 94, "ilastik": 0, "ilastik_pixel_classif": 79, "imag": [0, 1, 78, 91], "image_io": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48], "image_tool": [49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "img_avg": 0, "img_io": 30, "img_to_npi": 35, "img_to_point": 36, "img_tool": 31, "immunofluoresc": 78, "index": 16, "indic": 1, "info": 0, "instal": 2, "intens": [64, 91], "invers": 107, "io_img": 37, "io_nii": 38, "labels_to_mask": 80, "legend": 15, "letter": 0, "light": 1, "like": 0, "linux": 2, "list": 0, "log": 0, "main": [1, 30], "make": 0, "mask": [91, 101], "match": 83, "max": 56, "mean": 91, "mean_if": 14, "mean_if_summari": 17, "metadata": 39, "microglia": 91, "min": 64, "mirror": 93, "modul": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 105, 107], "more": 0, "multipl": 0, "name": [0, 83, 84], "nativ": 65, "need": 38, "nii_hd": 40, "nii_info": 41, "nii_to_tif": 42, "nii_to_zarr": 43, "non": 64, "note": [0, 36, 44], "number": 64, "open": 0, "option": [0, 98], "org_data": 18, "orient": 0, "other": [94, 95, 96], "out": 91, "output": 65, "overview": 0, "packag": [9, 25, 32, 47, 51, 62, 70, 76, 81, 82, 89, 96, 97, 106], "pad": 57, "paramet": [30, 33, 36, 44, 59, 60, 65], "path": 0, "points_to_atla": 102, "points_to_img": 44, "prep": 78, "prepend": 84, "prepend_condit": 87, "present": 64, "preserv": 91, "print": [64, 83], "prism": 19, "project": 0, "python": [71, 105], "r_to_p": 95, "raw": 0, "rb": 58, "recursively_mirror_rev_cluster_indic": 20, "reg": [0, 72], "reg_check": [0, 73], "reg_check_brain_mask": 74, "reg_prep": [0, 75], "region": 0, "region_stat": [65, 66, 67, 68, 69, 70], "regist": [71, 72, 73, 74, 75, 76], "registr": [0, 72], "relabel_nii": 50, "renam": [17, 68, 88], "reorder": [17, 68], "reorient_nii": 45, "replac": 91, "repres": 91, "resampl": 59, "resample_point": 60, "resolut": [1, 78], "return": [30, 36, 44, 59, 60, 65], "rstat": [0, 65], "rstats_mean_if": 66, "rstats_mean_if_in_segmented_voxel": 67, "rstats_mean_if_summari": 68, "rstats_summari": [0, 69], "run": [0, 22], "sampl": [0, 84, 90], "sample01": 0, "sample02": 0, "sample_kei": 0, "save": 65, "scale": 38, "score": [38, 101], "script": 0, "seg_brain_mask": [0, 78], "seg_copy_tif": 0, "seg_ilastik": [0, 78], "segment": [0, 77, 78, 79, 80, 81, 91], "set": [0, 2], "sh": 0, "sheet": [0, 1], "shell": 0, "side": 101, "signal": 91, "size": [0, 64], "sort": 24, "sourc": 0, "space": [65, 101, 107], "spatial_averag": 61, "specif": [83, 101], "stack": 0, "start": [1, 2], "stat": 0, "stats_tabl": 21, "step": 0, "stitch": 0, "string": 83, "structur": 0, "subpackag": 82, "subsystem": 2, "subtract": 0, "summari": 22, "sunburst": 23, "support": 1, "syntax": 0, "t": [5, 17, 68], "tabl": 24, "templat": 72, "termin": 0, "test": [5, 17, 68], "tif": 0, "tif_to_tif": 46, "tissu": [72, 101, 107], "tl": 2, "to_atla": 103, "to_fix": 104, "to_n": 105, "todo": 0, "toggl": 90, "toggle_sampl": 90, "train": 0, "transpose_ax": 63, "tukei": [5, 17, 68], "txt": 0, "typic": 0, "u": 1, "un": 1, "uniqu": 64, "unique_intens": 64, "unravel": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "unravel_command": 83, "up": [0, 2], "us": 1, "usag": [3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 98, 99, 100, 101, 102, 103, 104, 105, 107], "util": [33, 84, 85, 86, 87, 88, 89, 90], "utils_agg_fil": 0, "utils_clean_tif": 0, "utils_prepend": 0, "valid": [0, 1, 26], "vari": 0, "variabl": 0, "version": 2, "visual": 1, "volum": 24, "voxel": [0, 64, 91], "voxel_stat": [91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101], "vstat": [0, 98], "vstats_prep": [0, 99], "vstats_whole_to_avg": 0, "vstats_z_scor": 0, "w": [17, 64, 68, 98, 101], "warp": [101, 102, 103, 104, 105, 106, 107], "warp_to_n": 65, "welcom": 1, "when": [39, 84], "where": 91, "whole_to_lr_avg": 100, "window": 2, "wirefram": 52, "wise": 0, "workflow": 0, "wsl": 2, "x": 0, "y": 0, "z": [0, 38, 101], "z_score": 101, "zarr_to_nii": 48, "zero": [64, 91]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"3 letter orientation code": [[0, null]], "Add images to sample?? dirs": [[0, "add-images-to-sample-dirs"]], "Additional contributions from": [[1, "additional-contributions-from"]], "All commands": [[0, null]], "Allen brain atlas coloring": [[0, null]], "Analysis steps": [[0, "analysis-steps"]], "Automatic logging of scripts": [[0, null]], "Back up raw data": [[0, "back-up-raw-data"]], "Background subtraction": [[0, null]], "Batch stitching settings": [[0, null]], "CLI usage:": [[106, "cli-usage"]], "Checking changes between versions": [[2, null]], "Cluster correction": [[0, "cluster-correction"]], "Cluster validation": [[0, "cluster-validation"]], "Common commands": [[0, "common-commands"]], "Contact us": [[1, "contact-us"]], "Contents:": [[1, null]], "Data can be distributed across multiple drives": [[0, null]], "Define common variables in a shell script": [[0, "define-common-variables-in-a-shell-script"]], "Developers": [[1, "developers"]], "Example experiment folder structure after analysis": [[0, "example-experiment-folder-structure-after-analysis"]], "Example sample?? folder structure after analysis": [[0, "example-sample-folder-structure-after-analysis"]], "Example:": [[44, "example"]], "Get started with analysis": [[2, "get-started-with-analysis"]], "Getting started": [[1, "getting-started"]], "Guide": [[0, "guide"]], "Help on commands": [[0, "help-on-commands"]], "Helper Functions:": [[30, "helper-functions"]], "If sample orientations vary": [[0, null]], "Indices": [[1, "indices"]], "Installation": [[2, "installation"]], "Installing UNRAVEL on Linux or WSL": [[2, "installing-unravel-on-linux-or-wsl"]], "Installing WSL:": [[2, "installing-wsl"]], "Listing commands": [[0, "listing-commands"]], "Log exp paths, commands, etc.": [[0, "log-exp-paths-commands-etc"]], "Main Functions:": [[30, "main-functions"]], "Main dependencies": [[1, "main-dependencies"]], "Make a sample_key.csv:": [[0, "make-a-sample-key-csv"]], "Make an exp_notes.txt": [[0, null]], "Make sample folders": [[0, "make-sample-folders"]], "Module contents": [[82, "module-contents"]], "More info on commands": [[0, null]], "Name sample folders like sample01, sample02, \u2026": [[0, null]], "Note x/y and z voxel sizes": [[0, "note-x-y-and-z-voxel-sizes"]], "Notes:": [[36, "notes"], [44, "notes"]], "Open source options for stitching": [[0, null]], "Optional: clean tifs": [[0, "optional-clean-tifs"]], "Output:": [[65, "output"], [65, "id3"], [65, "id5"]], "Overview and steps for voxel-wise stats": [[0, null]], "Parameters:": [[30, "parameters"], [30, "id1"], [30, "id3"], [33, "parameters"], [36, "parameters"], [44, "parameters"], [44, "id1"], [44, "id3"], [59, "parameters"], [60, "parameters"], [65, "parameters"], [65, "id1"], [65, "id4"], [87, "parameters"], [87, "id1"], [87, "id3"], [87, "id5"]], "Python usage:": [[71, "python-usage"], [106, "python-usage"]], "Region-wise stats": [[0, "region-wise-stats"]], "Registration": [[0, "registration"]], "Returns:": [[30, "returns"], [30, "id2"], [30, "id4"], [36, "returns"], [44, "returns"], [44, "id2"], [44, "id4"], [59, "returns"], [60, "returns"], [65, "returns"], [65, "id2"], [87, "returns"], [87, "id2"], [87, "id4"]], "Running batch stitching": [[0, null]], "Segmentation": [[0, "segmentation"]], "Set up": [[0, "set-up"]], "Setting Up Windows Subsystem for Linux (WSL)": [[2, "setting-up-windows-subsystem-for-linux-wsl"]], "Sorting by hierarchy and volume:": [[24, "sorting-by-hierarchy-and-volume"]], "Stitch z-stacks": [[0, "stitch-z-stacks"]], "Subpackages": [[82, "subpackages"]], "Support is welcome for": [[1, "support-is-welcome-for"]], "Syntax": [[0, null]], "T-test usage:": [[5, "t-test-usage"]], "TL;DR": [[2, "tl-dr"]], "Terminal command cheat sheet": [[0, null]], "Todo": [[0, "id1"], [0, "id3"]], "Train an Ilastik project": [[0, "train-an-ilastik-project"], [0, null]], "Tukey\u2019s test usage:": [[5, "tukey-s-test-usage"]], "Typical workflow": [[0, "typical-workflow"]], "UN-biased high-Resolution Analysis and Validation of Ensembles using Light sheet images": [[1, "un-biased-high-resolution-analysis-and-validation-of-ensembles-using-light-sheet-images"]], "UNRAVEL visualizer": [[1, "unravel-visualizer"]], "Usage": [[4, "usage"], [6, "usage"], [8, "usage"], [10, "usage"], [11, "usage"], [12, "usage"], [13, "usage"], [16, "usage"], [18, "usage"], [19, "usage"], [20, "usage"], [67, "usage"]], "Usage for Tukey\u2019s tests w/ reordering and renaming of conditions:": [[17, "usage-for-tukey-s-tests-w-reordering-and-renaming-of-conditions"], [68, "usage-for-tukey-s-tests-w-reordering-and-renaming-of-conditions"]], "Usage for activating sample?? dirs for certain conditions:": [[91, "usage-for-activating-sample-dirs-for-certain-conditions"]], "Usage for atlas to atlas registration:": [[72, "usage-for-atlas-to-atlas-registration"]], "Usage for forward warping atlas to tissue space:": [[108, "usage-for-forward-warping-atlas-to-tissue-space"]], "Usage for inverse warping tissue to atlas space:": [[108, "usage-for-inverse-warping-tissue-to-atlas-space"]], "Usage for printing all non-zero intensities:": [[64, "usage-for-printing-all-non-zero-intensities"]], "Usage for printing the number of voxels for each intensity that is present:": [[64, "usage-for-printing-the-number-of-voxels-for-each-intensity-that-is-present"]], "Usage for printing unique intensities w/ a min cluster size > 100 voxels:": [[64, "usage-for-printing-unique-intensities-w-a-min-cluster-size-100-voxels"]], "Usage for renaming directories:": [[89, "usage-for-renaming-directories"]], "Usage for renaming files:": [[89, "usage-for-renaming-files"]], "Usage for t-tests:": [[17, "usage-for-t-tests"], [68, "usage-for-t-tests"]], "Usage for template to template registration:": [[72, "usage-for-template-to-template-registration"]], "Usage for tissue registration:": [[72, "usage-for-tissue-registration"]], "Usage for toggling all sample?? dirs to active:": [[91, "usage-for-toggling-all-sample-dirs-to-active"]], "Usage for when metadata is extractable:": [[39, "usage-for-when-metadata-is-extractable"]], "Usage for when metadata is not extractable:": [[39, "usage-for-when-metadata-is-not-extractable"]], "Usage for when sample?? is already in the name of files being copied:": [[84, "usage-for-when-sample-is-already-in-the-name-of-files-being-copied"]], "Usage for z-score scaling (if 8 bit is needed):": [[38, "usage-for-z-score-scaling-if-8-bit-is-needed"]], "Usage if running after cstats_validation and cstats_org_data:": [[22, "usage-if-running-after-cstats-validation-and-cstats-org-data"]], "Usage if running directly after cstats_validation:": [[22, "usage-if-running-directly-after-cstats-validation"]], "Usage if the atlas is already in native space from warp_to_native:": [[65, "usage-if-the-atlas-is-already-in-native-space-from-warp-to-native"]], "Usage if the native atlas is not available; it is not saved (faster):": [[65, "usage-if-the-native-atlas-is-not-available-it-is-not-saved-faster"]], "Usage to prep for seg_brain_mask:": [[78, "usage-to-prep-for-seg-brain-mask"]], "Usage to prep for seg_ilastik to segment full resolution immunofluorescence images:": [[78, "usage-to-prep-for-seg-ilastik-to-segment-full-resolution-immunofluorescence-images"]], "Usage to prepend sample?? to the name of files being copied:": [[84, "usage-to-prepend-sample-to-the-name-of-files-being-copied"]], "Usage to print all commands and module names:": [[83, "usage-to-print-all-commands-and-module-names"]], "Usage to print commands matching a specific string:": [[83, "usage-to-print-commands-matching-a-specific-string"]], "Usage to print common commands and descriptions:": [[83, "usage-to-print-common-commands-and-descriptions"]], "Usage to replace voxels in image with the mean intensity in the brain where mask > 0:": [[92, "usage-to-replace-voxels-in-image-with-the-mean-intensity-in-the-brain-where-mask-0"]], "Usage to zero out voxels in image where mask < 1 (e.g., to preserve signal from segmented microglia clusters):": [[92, "usage-to-zero-out-voxels-in-image-where-mask-1-e-g-to-preserve-signal-from-segmented-microglia-clusters"]], "Usage to zero out voxels in image where mask > 0 (e.g., to exclude voxels representing artifacts):": [[92, "usage-to-zero-out-voxels-in-image-where-mask-0-e-g-to-exclude-voxels-representing-artifacts"]], "Usage w/ a tissue mask (warped to atlas space):": [[102, "usage-w-a-tissue-mask-warped-to-atlas-space"]], "Usage w/ additional options:": [[99, "usage-w-additional-options"]], "Usage w/ an atlas mask (warped to atlas space):": [[102, "usage-w-an-atlas-mask-warped-to-atlas-space"]], "Usage w/ both masks for side-specific z-scoring:": [[102, "usage-w-both-masks-for-side-specific-z-scoring"]], "Usage with a custom atlas:": [[68, "usage-with-a-custom-atlas"]], "Usage:": [[3, "usage"], [14, "usage"], [15, "usage"], [21, "usage"], [23, "usage"], [24, "usage"], [26, "usage"], [34, "usage"], [35, "usage"], [36, "usage"], [37, "usage"], [38, "usage"], [40, "usage"], [41, "usage"], [42, "usage"], [43, "usage"], [44, "usage"], [45, "usage"], [46, "usage"], [48, "usage"], [49, "usage"], [50, "usage"], [52, "usage"], [53, "usage"], [54, "usage"], [56, "usage"], [57, "usage"], [58, "usage"], [59, "usage"], [60, "usage"], [61, "usage"], [63, "usage"], [66, "usage"], [69, "usage"], [71, "usage"], [73, "usage"], [74, "usage"], [75, "usage"], [77, "usage"], [79, "usage"], [80, "usage"], [85, "usage"], [86, "usage"], [87, "usage"], [88, "usage"], [93, "usage"], [94, "usage"], [95, "usage"], [96, "usage"], [99, "usage"], [100, "usage"], [101, "usage"], [103, "usage"], [104, "usage"], [105, "usage"]], "Voxel-wise stats": [[0, "voxel-wise-stats"]], "cstats_fdr": [[0, "cstats-fdr"]], "cstats_fdr_range": [[0, "cstats-fdr-range"]], "cstats_mirror_indices": [[0, "cstats-mirror-indices"]], "cstats_summary": [[0, "cstats-summary"]], "cstats_validation": [[0, "cstats-validation"]], "env_var.sh": [[0, null]], "img_avg": [[0, "img-avg"]], "reg": [[0, "reg"]], "reg_check": [[0, "reg-check"]], "reg_prep": [[0, "reg-prep"]], "rstats": [[0, "rstats"]], "rstats_summary": [[0, "rstats-summary"]], "seg_brain_mask": [[0, "seg-brain-mask"]], "seg_copy_tifs": [[0, "seg-copy-tifs"], [0, "id2"]], "seg_ilastik": [[0, "seg-ilastik"]], "unravel package": [[82, "unravel-package"]], "unravel.cluster_stats package": [[25, "unravel-cluster-stats-package"]], "unravel.cluster_stats.brain_model module": [[3, "module-unravel.cluster_stats.brain_model"]], "unravel.cluster_stats.crop module": [[4, "module-unravel.cluster_stats.crop"]], "unravel.cluster_stats.cstats module": [[5, "module-unravel.cluster_stats.cstats"]], "unravel.cluster_stats.effect_sizes package": [[9, "unravel-cluster-stats-effect-sizes-package"]], "unravel.cluster_stats.effect_sizes.effect_sizes module": [[6, "module-unravel.cluster_stats.effect_sizes.effect_sizes"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute module": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative module": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative"]], "unravel.cluster_stats.fdr module": [[10, "module-unravel.cluster_stats.fdr"]], "unravel.cluster_stats.fdr_range module": [[11, "module-unravel.cluster_stats.fdr_range"]], "unravel.cluster_stats.find_incongruent_clusters module": [[12, "module-unravel.cluster_stats.find_incongruent_clusters"]], "unravel.cluster_stats.group_bilateral_data module": [[13, "module-unravel.cluster_stats.group_bilateral_data"]], "unravel.cluster_stats.index module": [[16, "module-unravel.cluster_stats.index"]], "unravel.cluster_stats.legend module": [[15, "module-unravel.cluster_stats.legend"]], "unravel.cluster_stats.mean_IF module": [[14, "module-unravel.cluster_stats.mean_IF"]], "unravel.cluster_stats.mean_IF_summary module": [[17, "module-unravel.cluster_stats.mean_IF_summary"]], "unravel.cluster_stats.org_data module": [[18, "module-unravel.cluster_stats.org_data"]], "unravel.cluster_stats.prism module": [[19, "module-unravel.cluster_stats.prism"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices module": [[20, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices"]], "unravel.cluster_stats.stats_table module": [[21, "module-unravel.cluster_stats.stats_table"]], "unravel.cluster_stats.summary module": [[22, "module-unravel.cluster_stats.summary"]], "unravel.cluster_stats.sunburst module": [[23, "module-unravel.cluster_stats.sunburst"]], "unravel.cluster_stats.table module": [[24, "module-unravel.cluster_stats.table"]], "unravel.cluster_stats.validation module": [[26, "module-unravel.cluster_stats.validation"]], "unravel.core package": [[32, "unravel-core-package"]], "unravel.core.argparse_utils module": [[27, "module-unravel.core.argparse_utils"]], "unravel.core.argparse_utils_rich module": [[28, "module-unravel.core.argparse_utils_rich"]], "unravel.core.config module": [[29, "module-unravel.core.config"]], "unravel.core.img_io module": [[30, "module-unravel.core.img_io"]], "unravel.core.img_tools module": [[31, "module-unravel.core.img_tools"]], "unravel.core.utils module": [[33, "module-unravel.core.utils"]], "unravel.image_io package": [[47, "unravel-image-io-package"]], "unravel.image_io.h5_to_tifs module": [[34, "module-unravel.image_io.h5_to_tifs"]], "unravel.image_io.img_to_npy module": [[35, "module-unravel.image_io.img_to_npy"]], "unravel.image_io.img_to_points module": [[36, "module-unravel.image_io.img_to_points"]], "unravel.image_io.io_img module": [[37, "module-unravel.image_io.io_img"]], "unravel.image_io.io_nii module": [[38, "module-unravel.image_io.io_nii"]], "unravel.image_io.metadata module": [[39, "module-unravel.image_io.metadata"]], "unravel.image_io.nii_hd module": [[40, "module-unravel.image_io.nii_hd"]], "unravel.image_io.nii_info module": [[41, "module-unravel.image_io.nii_info"]], "unravel.image_io.nii_to_tifs module": [[42, "module-unravel.image_io.nii_to_tifs"]], "unravel.image_io.nii_to_zarr module": [[43, "module-unravel.image_io.nii_to_zarr"]], "unravel.image_io.points_to_img module": [[44, "module-unravel.image_io.points_to_img"]], "unravel.image_io.reorient_nii module": [[45, "module-unravel.image_io.reorient_nii"]], "unravel.image_io.tif_to_tifs module": [[46, "module-unravel.image_io.tif_to_tifs"]], "unravel.image_io.zarr_to_nii module": [[48, "module-unravel.image_io.zarr_to_nii"]], "unravel.image_tools package": [[62, "unravel-image-tools-package"]], "unravel.image_tools.DoG module": [[49, "module-unravel.image_tools.DoG"]], "unravel.image_tools.atlas package": [[51, "unravel-image-tools-atlas-package"]], "unravel.image_tools.atlas.relabel_nii module": [[50, "module-unravel.image_tools.atlas.relabel_nii"]], "unravel.image_tools.atlas.wireframe module": [[52, "module-unravel.image_tools.atlas.wireframe"]], "unravel.image_tools.avg module": [[53, "module-unravel.image_tools.avg"]], "unravel.image_tools.bbox module": [[54, "module-unravel.image_tools.bbox"]], "unravel.image_tools.extend module": [[55, "module-unravel.image_tools.extend"]], "unravel.image_tools.max module": [[56, "module-unravel.image_tools.max"]], "unravel.image_tools.pad module": [[57, "module-unravel.image_tools.pad"]], "unravel.image_tools.rb module": [[58, "module-unravel.image_tools.rb"]], "unravel.image_tools.resample module": [[59, "module-unravel.image_tools.resample"]], "unravel.image_tools.resample_points module": [[60, "module-unravel.image_tools.resample_points"]], "unravel.image_tools.spatial_averaging module": [[61, "module-unravel.image_tools.spatial_averaging"]], "unravel.image_tools.transpose_axes module": [[63, "module-unravel.image_tools.transpose_axes"]], "unravel.image_tools.unique_intensities module": [[64, "module-unravel.image_tools.unique_intensities"]], "unravel.region_stats package": [[70, "unravel-region-stats-package"]], "unravel.region_stats.rstats module": [[65, "module-unravel.region_stats.rstats"]], "unravel.region_stats.rstats_mean_IF module": [[66, "module-unravel.region_stats.rstats_mean_IF"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels module": [[67, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels"]], "unravel.region_stats.rstats_mean_IF_summary module": [[68, "module-unravel.region_stats.rstats_mean_IF_summary"]], "unravel.region_stats.rstats_summary module": [[69, "module-unravel.region_stats.rstats_summary"]], "unravel.register package": [[76, "unravel-register-package"]], "unravel.register.affine_initializer module": [[71, "module-unravel.register.affine_initializer"]], "unravel.register.reg module": [[72, "module-unravel.register.reg"]], "unravel.register.reg_check module": [[73, "module-unravel.register.reg_check"]], "unravel.register.reg_check_brain_mask module": [[74, "module-unravel.register.reg_check_brain_mask"]], "unravel.register.reg_prep module": [[75, "module-unravel.register.reg_prep"]], "unravel.segment package": [[81, "unravel-segment-package"]], "unravel.segment.brain_mask module": [[77, "module-unravel.segment.brain_mask"]], "unravel.segment.copy_tifs module": [[78, "module-unravel.segment.copy_tifs"]], "unravel.segment.ilastik_pixel_classification module": [[79, "module-unravel.segment.ilastik_pixel_classification"]], "unravel.segment.labels_to_masks module": [[80, "module-unravel.segment.labels_to_masks"]], "unravel.unravel_commands module": [[83, "module-unravel.unravel_commands"]], "unravel.utilities package": [[90, "unravel-utilities-package"]], "unravel.utilities.aggregate_files_from_sample_dirs module": [[84, "module-unravel.utilities.aggregate_files_from_sample_dirs"]], "unravel.utilities.aggregate_files_recursively module": [[85, "module-unravel.utilities.aggregate_files_recursively"]], "unravel.utilities.clean_tif_dirs module": [[86, "module-unravel.utilities.clean_tif_dirs"]], "unravel.utilities.points_compressor module": [[87, "module-unravel.utilities.points_compressor"]], "unravel.utilities.prepend_conditions module": [[88, "module-unravel.utilities.prepend_conditions"]], "unravel.utilities.rename module": [[89, "module-unravel.utilities.rename"]], "unravel.utilities.toggle_samples module": [[91, "module-unravel.utilities.toggle_samples"]], "unravel.voxel_stats package": [[98, "unravel-voxel-stats-package"]], "unravel.voxel_stats.apply_mask module": [[92, "module-unravel.voxel_stats.apply_mask"]], "unravel.voxel_stats.hemi_to_LR_avg module": [[93, "module-unravel.voxel_stats.hemi_to_LR_avg"]], "unravel.voxel_stats.mirror module": [[94, "module-unravel.voxel_stats.mirror"]], "unravel.voxel_stats.other package": [[97, "unravel-voxel-stats-other-package"]], "unravel.voxel_stats.other.IF_outliers module": [[95, "module-unravel.voxel_stats.other.IF_outliers"]], "unravel.voxel_stats.other.r_to_p module": [[96, "module-unravel.voxel_stats.other.r_to_p"]], "unravel.voxel_stats.vstats module": [[99, "module-unravel.voxel_stats.vstats"]], "unravel.voxel_stats.vstats_prep module": [[100, "module-unravel.voxel_stats.vstats_prep"]], "unravel.voxel_stats.whole_to_LR_avg module": [[101, "module-unravel.voxel_stats.whole_to_LR_avg"]], "unravel.voxel_stats.z_score module": [[102, "module-unravel.voxel_stats.z_score"]], "unravel.warp package": [[107, "unravel-warp-package"]], "unravel.warp.points_to_atlas module": [[103, "module-unravel.warp.points_to_atlas"]], "unravel.warp.to_atlas module": [[104, "module-unravel.warp.to_atlas"]], "unravel.warp.to_fixed module": [[105, "module-unravel.warp.to_fixed"]], "unravel.warp.to_native module": [[106, "module-unravel.warp.to_native"]], "unravel.warp.warp module": [[108, "module-unravel.warp.warp"]], "utils_agg_files": [[0, "utils-agg-files"]], "utils_clean_tifs": [[0, null]], "utils_prepend": [[0, "utils-prepend"]], "vstats": [[0, "vstats"]], "vstats_prep": [[0, "vstats-prep"]], "vstats_whole_to_avg": [[0, "vstats-whole-to-avg"]], "vstats_z_score": [[0, "vstats-z-score"]]}, "docnames": ["guide", "index", "installation", "unravel/cluster_stats/brain_model", "unravel/cluster_stats/crop", "unravel/cluster_stats/cstats", "unravel/cluster_stats/effect_sizes/effect_sizes", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative", "unravel/cluster_stats/effect_sizes/toc", "unravel/cluster_stats/fdr", "unravel/cluster_stats/fdr_range", "unravel/cluster_stats/find_incongruent_clusters", "unravel/cluster_stats/group_bilateral_data", "unravel/cluster_stats/index", "unravel/cluster_stats/legend", "unravel/cluster_stats/mean_IF", "unravel/cluster_stats/mean_IF_summary", "unravel/cluster_stats/org_data", "unravel/cluster_stats/prism", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices", "unravel/cluster_stats/stats_table", "unravel/cluster_stats/summary", "unravel/cluster_stats/sunburst", "unravel/cluster_stats/table", "unravel/cluster_stats/toc", "unravel/cluster_stats/validation", "unravel/core/argparse_utils", "unravel/core/argparse_utils_rich", "unravel/core/config", "unravel/core/img_io", "unravel/core/img_tools", "unravel/core/toc", "unravel/core/utils", "unravel/image_io/h5_to_tifs", "unravel/image_io/img_to_npy", "unravel/image_io/img_to_points", "unravel/image_io/io_img", "unravel/image_io/io_nii", "unravel/image_io/metadata", "unravel/image_io/nii_hd", "unravel/image_io/nii_info", "unravel/image_io/nii_to_tifs", "unravel/image_io/nii_to_zarr", "unravel/image_io/points_to_img", "unravel/image_io/reorient_nii", "unravel/image_io/tif_to_tifs", "unravel/image_io/toc", "unravel/image_io/zarr_to_nii", "unravel/image_tools/DoG", "unravel/image_tools/atlas/relabel_nii", "unravel/image_tools/atlas/toc", "unravel/image_tools/atlas/wireframe", "unravel/image_tools/avg", "unravel/image_tools/bbox", "unravel/image_tools/extend", "unravel/image_tools/max", "unravel/image_tools/pad", "unravel/image_tools/rb", "unravel/image_tools/resample", "unravel/image_tools/resample_points", "unravel/image_tools/spatial_averaging", "unravel/image_tools/toc", "unravel/image_tools/transpose_axes", "unravel/image_tools/unique_intensities", "unravel/region_stats/rstats", "unravel/region_stats/rstats_mean_IF", "unravel/region_stats/rstats_mean_IF_in_segmented_voxels", "unravel/region_stats/rstats_mean_IF_summary", "unravel/region_stats/rstats_summary", "unravel/region_stats/toc", "unravel/register/affine_initializer", "unravel/register/reg", "unravel/register/reg_check", "unravel/register/reg_check_brain_mask", "unravel/register/reg_prep", "unravel/register/toc", "unravel/segment/brain_mask", "unravel/segment/copy_tifs", "unravel/segment/ilastik_pixel_classification", "unravel/segment/labels_to_masks", "unravel/segment/toc", "unravel/toc", "unravel/unravel_commands", "unravel/utilities/aggregate_files_from_sample_dirs", "unravel/utilities/aggregate_files_recursively", "unravel/utilities/clean_tif_dirs", "unravel/utilities/points_compressor", "unravel/utilities/prepend_conditions", "unravel/utilities/rename", "unravel/utilities/toc", "unravel/utilities/toggle_samples", "unravel/voxel_stats/apply_mask", "unravel/voxel_stats/hemi_to_LR_avg", "unravel/voxel_stats/mirror", "unravel/voxel_stats/other/IF_outliers", "unravel/voxel_stats/other/r_to_p", "unravel/voxel_stats/other/toc", "unravel/voxel_stats/toc", "unravel/voxel_stats/vstats", "unravel/voxel_stats/vstats_prep", "unravel/voxel_stats/whole_to_LR_avg", "unravel/voxel_stats/z_score", "unravel/warp/points_to_atlas", "unravel/warp/to_atlas", "unravel/warp/to_fixed", "unravel/warp/to_native", "unravel/warp/toc", "unravel/warp/warp"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["guide.md", "index.rst", "installation.md", "unravel/cluster_stats/brain_model.rst", "unravel/cluster_stats/crop.rst", "unravel/cluster_stats/cstats.rst", "unravel/cluster_stats/effect_sizes/effect_sizes.rst", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute.rst", "unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative.rst", "unravel/cluster_stats/effect_sizes/toc.rst", "unravel/cluster_stats/fdr.rst", "unravel/cluster_stats/fdr_range.rst", "unravel/cluster_stats/find_incongruent_clusters.rst", "unravel/cluster_stats/group_bilateral_data.rst", "unravel/cluster_stats/index.rst", "unravel/cluster_stats/legend.rst", "unravel/cluster_stats/mean_IF.rst", "unravel/cluster_stats/mean_IF_summary.rst", "unravel/cluster_stats/org_data.rst", "unravel/cluster_stats/prism.rst", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices.rst", "unravel/cluster_stats/stats_table.rst", "unravel/cluster_stats/summary.rst", "unravel/cluster_stats/sunburst.rst", "unravel/cluster_stats/table.rst", "unravel/cluster_stats/toc.rst", "unravel/cluster_stats/validation.rst", "unravel/core/argparse_utils.rst", "unravel/core/argparse_utils_rich.rst", "unravel/core/config.rst", "unravel/core/img_io.rst", "unravel/core/img_tools.rst", "unravel/core/toc.rst", "unravel/core/utils.rst", "unravel/image_io/h5_to_tifs.rst", "unravel/image_io/img_to_npy.rst", "unravel/image_io/img_to_points.rst", "unravel/image_io/io_img.rst", "unravel/image_io/io_nii.rst", "unravel/image_io/metadata.rst", "unravel/image_io/nii_hd.rst", "unravel/image_io/nii_info.rst", "unravel/image_io/nii_to_tifs.rst", "unravel/image_io/nii_to_zarr.rst", "unravel/image_io/points_to_img.rst", "unravel/image_io/reorient_nii.rst", "unravel/image_io/tif_to_tifs.rst", "unravel/image_io/toc.rst", "unravel/image_io/zarr_to_nii.rst", "unravel/image_tools/DoG.rst", "unravel/image_tools/atlas/relabel_nii.rst", "unravel/image_tools/atlas/toc.rst", "unravel/image_tools/atlas/wireframe.rst", "unravel/image_tools/avg.rst", "unravel/image_tools/bbox.rst", "unravel/image_tools/extend.rst", "unravel/image_tools/max.rst", "unravel/image_tools/pad.rst", "unravel/image_tools/rb.rst", "unravel/image_tools/resample.rst", "unravel/image_tools/resample_points.rst", "unravel/image_tools/spatial_averaging.rst", "unravel/image_tools/toc.rst", "unravel/image_tools/transpose_axes.rst", "unravel/image_tools/unique_intensities.rst", "unravel/region_stats/rstats.rst", "unravel/region_stats/rstats_mean_IF.rst", "unravel/region_stats/rstats_mean_IF_in_segmented_voxels.rst", "unravel/region_stats/rstats_mean_IF_summary.rst", "unravel/region_stats/rstats_summary.rst", "unravel/region_stats/toc.rst", "unravel/register/affine_initializer.rst", "unravel/register/reg.rst", "unravel/register/reg_check.rst", "unravel/register/reg_check_brain_mask.rst", "unravel/register/reg_prep.rst", "unravel/register/toc.rst", "unravel/segment/brain_mask.rst", "unravel/segment/copy_tifs.rst", "unravel/segment/ilastik_pixel_classification.rst", "unravel/segment/labels_to_masks.rst", "unravel/segment/toc.rst", "unravel/toc.rst", "unravel/unravel_commands.rst", "unravel/utilities/aggregate_files_from_sample_dirs.rst", "unravel/utilities/aggregate_files_recursively.rst", "unravel/utilities/clean_tif_dirs.rst", "unravel/utilities/points_compressor.rst", "unravel/utilities/prepend_conditions.rst", "unravel/utilities/rename.rst", "unravel/utilities/toc.rst", "unravel/utilities/toggle_samples.rst", "unravel/voxel_stats/apply_mask.rst", "unravel/voxel_stats/hemi_to_LR_avg.rst", "unravel/voxel_stats/mirror.rst", "unravel/voxel_stats/other/IF_outliers.rst", "unravel/voxel_stats/other/r_to_p.rst", "unravel/voxel_stats/other/toc.rst", "unravel/voxel_stats/toc.rst", "unravel/voxel_stats/vstats.rst", "unravel/voxel_stats/vstats_prep.rst", "unravel/voxel_stats/whole_to_LR_avg.rst", "unravel/voxel_stats/z_score.rst", "unravel/warp/points_to_atlas.rst", "unravel/warp/to_atlas.rst", "unravel/warp/to_fixed.rst", "unravel/warp/to_native.rst", "unravel/warp/toc.rst", "unravel/warp/warp.rst"], "indexentries": {"affine_initializer_wrapper() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.affine_initializer_wrapper", false]], "aggregate_files_from_sample_dirs() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[84, "unravel.utilities.aggregate_files_from_sample_dirs.aggregate_files_from_sample_dirs", false]], "apply_2d_mean_filter() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.apply_2D_mean_filter", false]], "apply_mask_to_ndarray() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.apply_mask_to_ndarray", false]], "apply_rgb_to_cell() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.apply_rgb_to_cell", false]], "attrdict (class in unravel.core.config)": [[29, "unravel.core.config.AttrDict", false]], "averagetimeperiterationcolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.AverageTimePerIterationColumn", false]], "bias_correction() (in module unravel.register.reg)": [[72, "unravel.register.reg.bias_correction", false]], "calculate_fragments() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.calculate_fragments", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.calculate_mean_intensity", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.calculate_mean_intensity", false]], "calculate_mean_intensity_in_clusters() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.calculate_mean_intensity_in_clusters", false]], "calculate_padded_dimensions() (in module unravel.warp.to_fixed)": [[105, "unravel.warp.to_fixed.calculate_padded_dimensions", false]], "calculate_regional_densities() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.calculate_regional_densities", false]], "calculate_regional_volumes() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.calculate_regional_volumes", false]], "calculate_regional_volumes() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.calculate_regional_volumes", false]], "calculate_resampled_padded_dimensions() (in module unravel.warp.to_native)": [[106, "unravel.warp.to_native.calculate_resampled_padded_dimensions", false]], "calculate_top_regions() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.calculate_top_regions", false]], "can_collapse() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.can_collapse", false]], "check_fdr_command() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.check_fdr_command", false]], "clean_tifs_dir() (in module unravel.utilities.clean_tif_dirs)": [[86, "unravel.utilities.clean_tif_dirs.clean_tifs_dir", false]], "cluster_bbox() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.cluster_bbox", false]], "cluster_bbox_parallel() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.cluster_bbox_parallel", false]], "cluster_ids() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.cluster_IDs", false]], "cluster_index() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.cluster_index", false]], "cluster_summary() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.cluster_summary", false]], "cluster_validation_data_df() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.cluster_validation_data_df", false]], "collapse_hierarchy() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.collapse_hierarchy", false]], "condition_selector() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.condition_selector", false]], "config (class in unravel.core.config)": [[29, "unravel.core.config.Config", false]], "configuration (class in unravel.core.config)": [[29, "unravel.core.config.Configuration", false]], "convert_dtype() (in module unravel.image_io.io_nii)": [[38, "unravel.image_io.io_nii.convert_dtype", false]], "copy_files() (in module unravel.core.utils)": [[33, "unravel.core.utils.copy_files", false]], "copy_nii_header() (in module unravel.warp.to_atlas)": [[104, "unravel.warp.to_atlas.copy_nii_header", false]], "copy_specific_slices() (in module unravel.segment.copy_tifs)": [[78, "unravel.segment.copy_tifs.copy_specific_slices", false]], "copy_stats_files() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.copy_stats_files", false]], "count_cells() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.count_cells", false]], "count_cells_in_regions() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.count_cells_in_regions", false]], "count_files() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.count_files", false]], "cp() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.cp", false]], "create_design_ttest2() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.create_design_ttest2", false]], "create_resampled_nii() (in module unravel.image_tools.resample)": [[59, "unravel.image_tools.resample.create_resampled_nii", false]], "crop() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.crop", false]], "crop_outer_space() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.crop_outer_space", false]], "custommofncompletecolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.CustomMofNCompleteColumn", false]], "customtimeelapsedcolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.CustomTimeElapsedColumn", false]], "customtimeremainingcolumn (class in unravel.core.utils)": [[33, "unravel.core.utils.CustomTimeRemainingColumn", false]], "define_zarr_to_nii_output() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.define_zarr_to_nii_output", false]], "density_in_cluster() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.density_in_cluster", false]], "density_in_cluster_parallel() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.density_in_cluster_parallel", false]], "detect_outliers() (in module unravel.voxel_stats.other.if_outliers)": [[95, "unravel.voxel_stats.other.IF_outliers.detect_outliers", false]], "difference_of_gaussians() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.difference_of_gaussians", false]], "dilate_mask() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.dilate_mask", false]], "extend_one_side_3d_array() (in module unravel.image_tools.extend)": [[55, "unravel.image_tools.extend.extend_one_side_3d_array", false]], "extract_resolution() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.extract_resolution", false]], "extract_unique_regions_from_file() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.extract_unique_regions_from_file", false]], "fdr() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.fdr", false]], "fdr_range() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.fdr_range", false]], "fill_na_with_last_known() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.fill_na_with_last_known", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.filter_dataframe", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.filter_dataframe", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.filter_dataframe", false]], "filter_region_ids() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.filter_region_ids", false]], "find_and_copy_files() (in module unravel.utilities.aggregate_files_recursively)": [[85, "unravel.utilities.aggregate_files_recursively.find_and_copy_files", false]], "find_bounding_box() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.find_bounding_box", false]], "find_incongruent_clusters() (in module unravel.cluster_stats.find_incongruent_clusters)": [[12, "unravel.cluster_stats.find_incongruent_clusters.find_incongruent_clusters", false]], "find_largest_h5_file() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.find_largest_h5_file", false]], "find_largest_tif_file() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.find_largest_tif_file", false]], "find_matching_directory() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.find_matching_directory", false]], "find_max_intensity() (in module unravel.image_tools.max)": [[56, "unravel.image_tools.max.find_max_intensity", false]], "forward_warp() (in module unravel.warp.to_fixed)": [[105, "unravel.warp.to_fixed.forward_warp", false]], "generate_summary_table() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.generate_summary_table", false]], "generate_sunburst() (in module unravel.cluster_stats.index)": [[16, "unravel.cluster_stats.index.generate_sunburst", false]], "generate_wireframe() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.generate_wireframe", false]], "get_all_region_ids() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.get_all_region_ids", false]], "get_atlas_region_at_coords() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.get_atlas_region_at_coords", false]], "get_dims_from_tifs() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.get_dims_from_tifs", false]], "get_dir_name_from_args() (in module unravel.core.utils)": [[33, "unravel.core.utils.get_dir_name_from_args", false]], "get_fill_color() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.get_fill_color", false]], "get_groups_info() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.get_groups_info", false]], "get_max_region_id_from_csvs() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.get_max_region_id_from_csvs", false]], "get_region_details() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.get_region_details", false]], "get_region_details() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.get_region_details", false]], "get_samples() (in module unravel.core.utils)": [[33, "unravel.core.utils.get_samples", false]], "get_top_regions_and_percent_vols() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.get_top_regions_and_percent_vols", false]], "group_hemisphere_data() (in module unravel.cluster_stats.group_bilateral_data)": [[13, "unravel.cluster_stats.group_bilateral_data.group_hemisphere_data", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.hedges_g", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.hedges_g", false]], "hemi_to_lr_avg() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[93, "unravel.voxel_stats.hemi_to_LR_avg.hemi_to_LR_avg", false]], "img_to_points() (in module unravel.image_io.img_to_points)": [[36, "unravel.image_io.img_to_points.img_to_points", false]], "initialize_progress_bar() (in module unravel.core.utils)": [[33, "unravel.core.utils.initialize_progress_bar", false]], "load_3d_img() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_3D_img", false]], "load_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.load_3D_tif", false]], "load_and_prepare_points() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.load_and_prepare_points", false]], "load_config() (in module unravel.core.utils)": [[33, "unravel.core.utils.load_config", false]], "load_czi() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_czi", false]], "load_data() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.load_data", false]], "load_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.load_data", false]], "load_h5() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_h5", false]], "load_h5() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.load_h5", false]], "load_image_metadata_from_txt() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_image_metadata_from_txt", false]], "load_mask() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.load_mask", false]], "load_nii() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_nii", false]], "load_nii_subset() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_nii_subset", false]], "load_text_from_file() (in module unravel.core.utils)": [[33, "unravel.core.utils.load_text_from_file", false]], "load_tif() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.load_tif", false]], "load_tif() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.load_tif", false]], "load_tifs() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_tifs", false]], "load_zarr() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.load_zarr", false]], "log_command() (in module unravel.core.utils)": [[33, "unravel.core.utils.log_command", false]], "main() (in module unravel.cluster_stats.brain_model)": [[3, "unravel.cluster_stats.brain_model.main", false]], "main() (in module unravel.cluster_stats.crop)": [[4, "unravel.cluster_stats.crop.main", false]], "main() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.main", false]], "main() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.main", false]], "main() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.main", false]], "main() (in module unravel.cluster_stats.find_incongruent_clusters)": [[12, "unravel.cluster_stats.find_incongruent_clusters.main", false]], "main() (in module unravel.cluster_stats.group_bilateral_data)": [[13, "unravel.cluster_stats.group_bilateral_data.main", false]], "main() (in module unravel.cluster_stats.index)": [[16, "unravel.cluster_stats.index.main", false]], "main() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.main", false]], "main() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.main", false]], "main() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.main", false]], "main() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.main", false]], "main() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.main", false]], "main() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[20, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.main", false]], "main() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.main", false]], "main() (in module unravel.cluster_stats.summary)": [[22, "unravel.cluster_stats.summary.main", false]], "main() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.main", false]], "main() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.main", false]], "main() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.main", false]], "main() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.main", false]], "main() (in module unravel.image_io.img_to_npy)": [[35, "unravel.image_io.img_to_npy.main", false]], "main() (in module unravel.image_io.img_to_points)": [[36, "unravel.image_io.img_to_points.main", false]], "main() (in module unravel.image_io.io_img)": [[37, "unravel.image_io.io_img.main", false]], "main() (in module unravel.image_io.io_nii)": [[38, "unravel.image_io.io_nii.main", false]], "main() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.main", false]], "main() (in module unravel.image_io.nii_hd)": [[40, "unravel.image_io.nii_hd.main", false]], "main() (in module unravel.image_io.nii_info)": [[41, "unravel.image_io.nii_info.main", false]], "main() (in module unravel.image_io.nii_to_tifs)": [[42, "unravel.image_io.nii_to_tifs.main", false]], "main() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.main", false]], "main() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.main", false]], "main() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.main", false]], "main() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.main", false]], "main() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.main", false]], "main() (in module unravel.image_tools.atlas.relabel_nii)": [[50, "unravel.image_tools.atlas.relabel_nii.main", false]], "main() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.main", false]], "main() (in module unravel.image_tools.avg)": [[53, "unravel.image_tools.avg.main", false]], "main() (in module unravel.image_tools.bbox)": [[54, "unravel.image_tools.bbox.main", false]], "main() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.main", false]], "main() (in module unravel.image_tools.extend)": [[55, "unravel.image_tools.extend.main", false]], "main() (in module unravel.image_tools.max)": [[56, "unravel.image_tools.max.main", false]], "main() (in module unravel.image_tools.pad)": [[57, "unravel.image_tools.pad.main", false]], "main() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.main", false]], "main() (in module unravel.image_tools.resample)": [[59, "unravel.image_tools.resample.main", false]], "main() (in module unravel.image_tools.resample_points)": [[60, "unravel.image_tools.resample_points.main", false]], "main() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.main", false]], "main() (in module unravel.image_tools.transpose_axes)": [[63, "unravel.image_tools.transpose_axes.main", false]], "main() (in module unravel.image_tools.unique_intensities)": [[64, "unravel.image_tools.unique_intensities.main", false]], "main() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.main", false]], "main() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.main", false]], "main() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.main", false]], "main() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.main", false]], "main() (in module unravel.register.reg)": [[72, "unravel.register.reg.main", false]], "main() (in module unravel.register.reg_check)": [[73, "unravel.register.reg_check.main", false]], "main() (in module unravel.register.reg_check_brain_mask)": [[74, "unravel.register.reg_check_brain_mask.main", false]], "main() (in module unravel.register.reg_prep)": [[75, "unravel.register.reg_prep.main", false]], "main() (in module unravel.segment.brain_mask)": [[77, "unravel.segment.brain_mask.main", false]], "main() (in module unravel.segment.copy_tifs)": [[78, "unravel.segment.copy_tifs.main", false]], "main() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.main", false]], "main() (in module unravel.segment.labels_to_masks)": [[80, "unravel.segment.labels_to_masks.main", false]], "main() (in module unravel.unravel_commands)": [[83, "unravel.unravel_commands.main", false]], "main() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[84, "unravel.utilities.aggregate_files_from_sample_dirs.main", false]], "main() (in module unravel.utilities.aggregate_files_recursively)": [[85, "unravel.utilities.aggregate_files_recursively.main", false]], "main() (in module unravel.utilities.clean_tif_dirs)": [[86, "unravel.utilities.clean_tif_dirs.main", false]], "main() (in module unravel.utilities.points_compressor)": [[87, "unravel.utilities.points_compressor.main", false]], "main() (in module unravel.utilities.prepend_conditions)": [[88, "unravel.utilities.prepend_conditions.main", false]], "main() (in module unravel.utilities.rename)": [[89, "unravel.utilities.rename.main", false]], "main() (in module unravel.utilities.toggle_samples)": [[91, "unravel.utilities.toggle_samples.main", false]], "main() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.main", false]], "main() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[93, "unravel.voxel_stats.hemi_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.mirror)": [[94, "unravel.voxel_stats.mirror.main", false]], "main() (in module unravel.voxel_stats.other.if_outliers)": [[95, "unravel.voxel_stats.other.IF_outliers.main", false]], "main() (in module unravel.voxel_stats.other.r_to_p)": [[96, "unravel.voxel_stats.other.r_to_p.main", false]], "main() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.main", false]], "main() (in module unravel.voxel_stats.vstats_prep)": [[100, "unravel.voxel_stats.vstats_prep.main", false]], "main() (in module unravel.voxel_stats.whole_to_lr_avg)": [[101, "unravel.voxel_stats.whole_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.z_score)": [[102, "unravel.voxel_stats.z_score.main", false]], "main() (in module unravel.warp.points_to_atlas)": [[103, "unravel.warp.points_to_atlas.main", false]], "main() (in module unravel.warp.to_atlas)": [[104, "unravel.warp.to_atlas.main", false]], "main() (in module unravel.warp.to_fixed)": [[105, "unravel.warp.to_fixed.main", false]], "main() (in module unravel.warp.to_native)": [[106, "unravel.warp.to_native.main", false]], "main() (in module unravel.warp.warp)": [[108, "unravel.warp.warp.main", false]], "mean_intensity_in_brain() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.mean_intensity_in_brain", false]], "mean_intensity_within_mask() (in module unravel.voxel_stats.other.if_outliers)": [[95, "unravel.voxel_stats.other.IF_outliers.mean_intensity_within_mask", false]], "mean_std_count() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.mean_std_count", false]], "metadata() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.metadata", false]], "metadata_from_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.metadata_from_3D_tif", false]], "metadata_from_h5() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.metadata_from_h5", false]], "mirror() (in module unravel.voxel_stats.mirror)": [[94, "unravel.voxel_stats.mirror.mirror", false]], "module": [[3, "module-unravel.cluster_stats.brain_model", false], [4, "module-unravel.cluster_stats.crop", false], [5, "module-unravel.cluster_stats.cstats", false], [6, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false], [7, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false], [8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false], [10, "module-unravel.cluster_stats.fdr", false], [11, "module-unravel.cluster_stats.fdr_range", false], [12, "module-unravel.cluster_stats.find_incongruent_clusters", false], [13, "module-unravel.cluster_stats.group_bilateral_data", false], [14, "module-unravel.cluster_stats.mean_IF", false], [15, "module-unravel.cluster_stats.legend", false], [16, "module-unravel.cluster_stats.index", false], [17, "module-unravel.cluster_stats.mean_IF_summary", false], [18, "module-unravel.cluster_stats.org_data", false], [19, "module-unravel.cluster_stats.prism", false], [20, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false], [21, "module-unravel.cluster_stats.stats_table", false], [22, "module-unravel.cluster_stats.summary", false], [23, "module-unravel.cluster_stats.sunburst", false], [24, "module-unravel.cluster_stats.table", false], [26, "module-unravel.cluster_stats.validation", false], [27, "module-unravel.core.argparse_utils", false], [28, "module-unravel.core.argparse_utils_rich", false], [29, "module-unravel.core.config", false], [30, "module-unravel.core.img_io", false], [31, "module-unravel.core.img_tools", false], [33, "module-unravel.core.utils", false], [34, "module-unravel.image_io.h5_to_tifs", false], [35, "module-unravel.image_io.img_to_npy", false], [36, "module-unravel.image_io.img_to_points", false], [37, "module-unravel.image_io.io_img", false], [38, "module-unravel.image_io.io_nii", false], [39, "module-unravel.image_io.metadata", false], [40, "module-unravel.image_io.nii_hd", false], [41, "module-unravel.image_io.nii_info", false], [42, "module-unravel.image_io.nii_to_tifs", false], [43, "module-unravel.image_io.nii_to_zarr", false], [44, "module-unravel.image_io.points_to_img", false], [45, "module-unravel.image_io.reorient_nii", false], [46, "module-unravel.image_io.tif_to_tifs", false], [48, "module-unravel.image_io.zarr_to_nii", false], [49, "module-unravel.image_tools.DoG", false], [50, "module-unravel.image_tools.atlas.relabel_nii", false], [52, "module-unravel.image_tools.atlas.wireframe", false], [53, "module-unravel.image_tools.avg", false], [54, "module-unravel.image_tools.bbox", false], [55, "module-unravel.image_tools.extend", false], [56, "module-unravel.image_tools.max", false], [57, "module-unravel.image_tools.pad", false], [58, "module-unravel.image_tools.rb", false], [59, "module-unravel.image_tools.resample", false], [60, "module-unravel.image_tools.resample_points", false], [61, "module-unravel.image_tools.spatial_averaging", false], [63, "module-unravel.image_tools.transpose_axes", false], [64, "module-unravel.image_tools.unique_intensities", false], [65, "module-unravel.region_stats.rstats", false], [66, "module-unravel.region_stats.rstats_mean_IF", false], [67, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false], [68, "module-unravel.region_stats.rstats_mean_IF_summary", false], [69, "module-unravel.region_stats.rstats_summary", false], [71, "module-unravel.register.affine_initializer", false], [72, "module-unravel.register.reg", false], [73, "module-unravel.register.reg_check", false], [74, "module-unravel.register.reg_check_brain_mask", false], [75, "module-unravel.register.reg_prep", false], [77, "module-unravel.segment.brain_mask", false], [78, "module-unravel.segment.copy_tifs", false], [79, "module-unravel.segment.ilastik_pixel_classification", false], [80, "module-unravel.segment.labels_to_masks", false], [83, "module-unravel.unravel_commands", false], [84, "module-unravel.utilities.aggregate_files_from_sample_dirs", false], [85, "module-unravel.utilities.aggregate_files_recursively", false], [86, "module-unravel.utilities.clean_tif_dirs", false], [87, "module-unravel.utilities.points_compressor", false], [88, "module-unravel.utilities.prepend_conditions", false], [89, "module-unravel.utilities.rename", false], [91, "module-unravel.utilities.toggle_samples", false], [92, "module-unravel.voxel_stats.apply_mask", false], [93, "module-unravel.voxel_stats.hemi_to_LR_avg", false], [94, "module-unravel.voxel_stats.mirror", false], [95, "module-unravel.voxel_stats.other.IF_outliers", false], [96, "module-unravel.voxel_stats.other.r_to_p", false], [99, "module-unravel.voxel_stats.vstats", false], [100, "module-unravel.voxel_stats.vstats_prep", false], [101, "module-unravel.voxel_stats.whole_to_LR_avg", false], [102, "module-unravel.voxel_stats.z_score", false], [103, "module-unravel.warp.points_to_atlas", false], [104, "module-unravel.warp.to_atlas", false], [105, "module-unravel.warp.to_fixed", false], [106, "module-unravel.warp.to_native", false], [108, "module-unravel.warp.warp", false]], "nii_axis_codes() (in module unravel.image_io.nii_info)": [[41, "unravel.image_io.nii_info.nii_axis_codes", false]], "nii_path_or_nii() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.nii_path_or_nii", false]], "nii_to_ndarray() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.nii_to_ndarray", false]], "nii_to_ndarray() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.nii_to_ndarray", false]], "nii_to_tifs() (in module unravel.image_io.nii_to_tifs)": [[42, "unravel.image_io.nii_to_tifs.nii_to_tifs", false]], "nii_voxel_size() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.nii_voxel_size", false]], "organize_validation_data() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.organize_validation_data", false]], "pack_points() (in module unravel.utilities.points_compressor)": [[87, "unravel.utilities.points_compressor.pack_points", false]], "pad() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.pad", false]], "parse_args() (in module unravel.cluster_stats.brain_model)": [[3, "unravel.cluster_stats.brain_model.parse_args", false]], "parse_args() (in module unravel.cluster_stats.crop)": [[4, "unravel.cluster_stats.crop.parse_args", false]], "parse_args() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[6, "unravel.cluster_stats.effect_sizes.effect_sizes.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.parse_args", false]], "parse_args() (in module unravel.cluster_stats.find_incongruent_clusters)": [[12, "unravel.cluster_stats.find_incongruent_clusters.parse_args", false]], "parse_args() (in module unravel.cluster_stats.group_bilateral_data)": [[13, "unravel.cluster_stats.group_bilateral_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.index)": [[16, "unravel.cluster_stats.index.parse_args", false]], "parse_args() (in module unravel.cluster_stats.legend)": [[15, "unravel.cluster_stats.legend.parse_args", false]], "parse_args() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.parse_args", false]], "parse_args() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.parse_args", false]], "parse_args() (in module unravel.cluster_stats.org_data)": [[18, "unravel.cluster_stats.org_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.parse_args", false]], "parse_args() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[20, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.parse_args", false]], "parse_args() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.parse_args", false]], "parse_args() (in module unravel.cluster_stats.summary)": [[22, "unravel.cluster_stats.summary.parse_args", false]], "parse_args() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.parse_args", false]], "parse_args() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.parse_args", false]], "parse_args() (in module unravel.cluster_stats.validation)": [[26, "unravel.cluster_stats.validation.parse_args", false]], "parse_args() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.img_to_npy)": [[35, "unravel.image_io.img_to_npy.parse_args", false]], "parse_args() (in module unravel.image_io.img_to_points)": [[36, "unravel.image_io.img_to_points.parse_args", false]], "parse_args() (in module unravel.image_io.io_img)": [[37, "unravel.image_io.io_img.parse_args", false]], "parse_args() (in module unravel.image_io.io_nii)": [[38, "unravel.image_io.io_nii.parse_args", false]], "parse_args() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.parse_args", false]], "parse_args() (in module unravel.image_io.nii_hd)": [[40, "unravel.image_io.nii_hd.parse_args", false]], "parse_args() (in module unravel.image_io.nii_info)": [[41, "unravel.image_io.nii_info.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_tifs)": [[42, "unravel.image_io.nii_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.parse_args", false]], "parse_args() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.parse_args", false]], "parse_args() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.parse_args", false]], "parse_args() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.relabel_nii)": [[50, "unravel.image_tools.atlas.relabel_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.parse_args", false]], "parse_args() (in module unravel.image_tools.avg)": [[53, "unravel.image_tools.avg.parse_args", false]], "parse_args() (in module unravel.image_tools.bbox)": [[54, "unravel.image_tools.bbox.parse_args", false]], "parse_args() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.parse_args", false]], "parse_args() (in module unravel.image_tools.extend)": [[55, "unravel.image_tools.extend.parse_args", false]], "parse_args() (in module unravel.image_tools.max)": [[56, "unravel.image_tools.max.parse_args", false]], "parse_args() (in module unravel.image_tools.pad)": [[57, "unravel.image_tools.pad.parse_args", false]], "parse_args() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.parse_args", false]], "parse_args() (in module unravel.image_tools.resample)": [[59, "unravel.image_tools.resample.parse_args", false]], "parse_args() (in module unravel.image_tools.resample_points)": [[60, "unravel.image_tools.resample_points.parse_args", false]], "parse_args() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.parse_args", false]], "parse_args() (in module unravel.image_tools.transpose_axes)": [[63, "unravel.image_tools.transpose_axes.parse_args", false]], "parse_args() (in module unravel.image_tools.unique_intensities)": [[64, "unravel.image_tools.unique_intensities.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats)": [[65, "unravel.region_stats.rstats.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.parse_args", false]], "parse_args() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.parse_args", false]], "parse_args() (in module unravel.register.reg)": [[72, "unravel.register.reg.parse_args", false]], "parse_args() (in module unravel.register.reg_check)": [[73, "unravel.register.reg_check.parse_args", false]], "parse_args() (in module unravel.register.reg_check_brain_mask)": [[74, "unravel.register.reg_check_brain_mask.parse_args", false]], "parse_args() (in module unravel.register.reg_prep)": [[75, "unravel.register.reg_prep.parse_args", false]], "parse_args() (in module unravel.segment.brain_mask)": [[77, "unravel.segment.brain_mask.parse_args", false]], "parse_args() (in module unravel.segment.copy_tifs)": [[78, "unravel.segment.copy_tifs.parse_args", false]], "parse_args() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.parse_args", false]], "parse_args() (in module unravel.segment.labels_to_masks)": [[80, "unravel.segment.labels_to_masks.parse_args", false]], "parse_args() (in module unravel.unravel_commands)": [[83, "unravel.unravel_commands.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[84, "unravel.utilities.aggregate_files_from_sample_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_recursively)": [[85, "unravel.utilities.aggregate_files_recursively.parse_args", false]], "parse_args() (in module unravel.utilities.clean_tif_dirs)": [[86, "unravel.utilities.clean_tif_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.points_compressor)": [[87, "unravel.utilities.points_compressor.parse_args", false]], "parse_args() (in module unravel.utilities.prepend_conditions)": [[88, "unravel.utilities.prepend_conditions.parse_args", false]], "parse_args() (in module unravel.utilities.rename)": [[89, "unravel.utilities.rename.parse_args", false]], "parse_args() (in module unravel.utilities.toggle_samples)": [[91, "unravel.utilities.toggle_samples.parse_args", false]], "parse_args() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.parse_args", false]], "parse_args() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[93, "unravel.voxel_stats.hemi_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.mirror)": [[94, "unravel.voxel_stats.mirror.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.if_outliers)": [[95, "unravel.voxel_stats.other.IF_outliers.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.r_to_p)": [[96, "unravel.voxel_stats.other.r_to_p.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats_prep)": [[100, "unravel.voxel_stats.vstats_prep.parse_args", false]], "parse_args() (in module unravel.voxel_stats.whole_to_lr_avg)": [[101, "unravel.voxel_stats.whole_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.z_score)": [[102, "unravel.voxel_stats.z_score.parse_args", false]], "parse_args() (in module unravel.warp.points_to_atlas)": [[103, "unravel.warp.points_to_atlas.parse_args", false]], "parse_args() (in module unravel.warp.to_atlas)": [[104, "unravel.warp.to_atlas.parse_args", false]], "parse_args() (in module unravel.warp.to_fixed)": [[105, "unravel.warp.to_fixed.parse_args", false]], "parse_args() (in module unravel.warp.to_native)": [[106, "unravel.warp.to_native.parse_args", false]], "parse_args() (in module unravel.warp.warp)": [[108, "unravel.warp.warp.parse_args", false]], "parse_color_argument() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.parse_color_argument", false]], "perform_t_tests() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.perform_t_tests", false]], "perform_t_tests() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.perform_t_tests", false]], "perform_tukey_test() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.perform_tukey_test", false]], "pixel_classification() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.pixel_classification", false]], "plot_data() (in module unravel.cluster_stats.mean_if_summary)": [[17, "unravel.cluster_stats.mean_IF_summary.plot_data", false]], "plot_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.plot_data", false]], "points_compressor() (in module unravel.utilities.points_compressor)": [[87, "unravel.utilities.points_compressor.points_compressor", false]], "points_to_img() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.points_to_img", false]], "prepend_conditions() (in module unravel.utilities.prepend_conditions)": [[88, "unravel.utilities.prepend_conditions.prepend_conditions", false]], "print_func_name_args_times() (in module unravel.core.utils)": [[33, "unravel.core.utils.print_func_name_args_times", false]], "print_metadata() (in module unravel.image_io.metadata)": [[39, "unravel.image_io.metadata.print_metadata", false]], "process_and_plot_data() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.process_and_plot_data", false]], "process_fdr_and_clusters() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.process_fdr_and_clusters", false]], "process_file() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[20, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.process_file", false]], "process_files_with_glob() (in module unravel.core.utils)": [[33, "unravel.core.utils.process_files_with_glob", false]], "process_intensity() (in module unravel.image_tools.atlas.wireframe)": [[52, "unravel.image_tools.atlas.wireframe.process_intensity", false]], "process_slice() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.process_slice", false]], "r_to_z() (in module unravel.voxel_stats.other.r_to_p)": [[96, "unravel.voxel_stats.other.r_to_p.r_to_z", false]], "reg_prep() (in module unravel.register.reg_prep)": [[75, "unravel.register.reg_prep.reg_prep", false]], "relative_hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[8, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.relative_hedges_g", false]], "remove_zero_intensity_regions() (in module unravel.region_stats.rstats_mean_if_summary)": [[68, "unravel.region_stats.rstats_mean_IF_summary.remove_zero_intensity_regions", false]], "rename_files() (in module unravel.utilities.rename)": [[89, "unravel.utilities.rename.rename_files", false]], "rename_items() (in module unravel.utilities.prepend_conditions)": [[88, "unravel.utilities.prepend_conditions.rename_items", false]], "render() (unravel.core.utils.averagetimeperiterationcolumn method)": [[33, "unravel.core.utils.AverageTimePerIterationColumn.render", false]], "render() (unravel.core.utils.custommofncompletecolumn method)": [[33, "unravel.core.utils.CustomMofNCompleteColumn.render", false]], "render() (unravel.core.utils.customtimeelapsedcolumn method)": [[33, "unravel.core.utils.CustomTimeElapsedColumn.render", false]], "render() (unravel.core.utils.customtimeremainingcolumn method)": [[33, "unravel.core.utils.CustomTimeRemainingColumn.render", false]], "reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reorient_for_raw_to_nii_conv", false]], "reorient_ndarray() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reorient_ndarray", false]], "reorient_ndarray2() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reorient_ndarray2", false]], "reorient_nii() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.reorient_nii", false]], "resample() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.resample", false]], "resample_and_convert_points() (in module unravel.image_tools.resample_points)": [[60, "unravel.image_tools.resample_points.resample_and_convert_points", false]], "resolve_path() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.resolve_path", false]], "return_3d_img() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.return_3D_img", false]], "reverse_clusters() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.reverse_clusters", false]], "reverse_reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.reverse_reorient_for_raw_to_nii_conv", false]], "rolling_ball_subtraction() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.rolling_ball_subtraction", false]], "rolling_ball_subtraction_opencv_parallel() (in module unravel.core.img_tools)": [[31, "unravel.core.img_tools.rolling_ball_subtraction_opencv_parallel", false]], "run_randomise_parallel() (in module unravel.voxel_stats.vstats)": [[99, "unravel.voxel_stats.vstats.run_randomise_parallel", false]], "run_script() (in module unravel.cluster_stats.summary)": [[22, "unravel.cluster_stats.summary.run_script", false]], "run_with_timeout() (in module unravel.register.affine_initializer)": [[71, "unravel.register.affine_initializer.run_with_timeout", false]], "save_3d_img() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_3D_img", false]], "save_as_h5() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_h5", false]], "save_as_nii() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_nii", false]], "save_as_nii() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.save_as_nii", false]], "save_as_tifs() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.h5_to_tifs)": [[34, "unravel.image_io.h5_to_tifs.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.tif_to_tifs)": [[46, "unravel.image_io.tif_to_tifs.save_as_tifs", false]], "save_as_zarr() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_as_zarr", false]], "save_as_zarr() (in module unravel.image_io.nii_to_zarr)": [[43, "unravel.image_io.nii_to_zarr.save_as_zarr", false]], "save_cropped_img() (in module unravel.cluster_stats.crop)": [[4, "unravel.cluster_stats.crop.save_cropped_img", false]], "save_labels_as_masks() (in module unravel.segment.ilastik_pixel_classification)": [[79, "unravel.segment.ilastik_pixel_classification.save_labels_as_masks", false]], "save_labels_as_masks() (in module unravel.segment.labels_to_masks)": [[80, "unravel.segment.labels_to_masks.save_labels_as_masks", false]], "save_metadata_to_file() (in module unravel.core.img_io)": [[30, "unravel.core.img_io.save_metadata_to_file", false]], "save_tif() (in module unravel.image_tools.dog)": [[49, "unravel.image_tools.DoG.save_tif", false]], "save_tif() (in module unravel.image_tools.rb)": [[58, "unravel.image_tools.rb.save_tif", false]], "scale_bool_to_full_res() (in module unravel.voxel_stats.apply_mask)": [[92, "unravel.voxel_stats.apply_mask.scale_bool_to_full_res", false]], "scale_to_full_res() (in module unravel.warp.to_native)": [[106, "unravel.warp.to_native.scale_to_full_res", false]], "sm (class in unravel.core.argparse_utils)": [[27, "unravel.core.argparse_utils.SM", false]], "sm (class in unravel.core.argparse_utils_rich)": [[28, "unravel.core.argparse_utils_rich.SM", false]], "smart_float_format() (in module unravel.cluster_stats.fdr_range)": [[11, "unravel.cluster_stats.fdr_range.smart_float_format", false]], "sort_samples() (in module unravel.cluster_stats.prism)": [[19, "unravel.cluster_stats.prism.sort_samples", false]], "sort_sunburst_hierarchy() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.sort_sunburst_hierarchy", false]], "spatial_average_2d() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.spatial_average_2D", false]], "spatial_average_3d() (in module unravel.image_tools.spatial_averaging)": [[61, "unravel.image_tools.spatial_averaging.spatial_average_3D", false]], "split_clusters_based_on_effect() (in module unravel.cluster_stats.fdr)": [[10, "unravel.cluster_stats.fdr.split_clusters_based_on_effect", false]], "summarize_points() (in module unravel.utilities.points_compressor)": [[87, "unravel.utilities.points_compressor.summarize_points", false]], "summarize_significance() (in module unravel.region_stats.rstats_summary)": [[69, "unravel.region_stats.rstats_summary.summarize_significance", false]], "sunburst() (in module unravel.cluster_stats.sunburst)": [[23, "unravel.cluster_stats.sunburst.sunburst", false]], "suppressmetavar (class in unravel.core.argparse_utils)": [[27, "unravel.core.argparse_utils.SuppressMetavar", false]], "suppressmetavar (class in unravel.core.argparse_utils_rich)": [[28, "unravel.core.argparse_utils_rich.SuppressMetavar", false]], "threshold_points_by_region_id() (in module unravel.image_io.points_to_img)": [[44, "unravel.image_io.points_to_img.threshold_points_by_region_id", false]], "to_atlas() (in module unravel.warp.to_atlas)": [[104, "unravel.warp.to_atlas.to_atlas", false]], "to_native() (in module unravel.warp.to_native)": [[106, "unravel.warp.to_native.to_native", false]], "transform_nii_affine() (in module unravel.image_io.reorient_nii)": [[45, "unravel.image_io.reorient_nii.transform_nii_affine", false]], "transpose_img() (in module unravel.image_tools.transpose_axes)": [[63, "unravel.image_tools.transpose_axes.transpose_img", false]], "undo_fill_with_original() (in module unravel.cluster_stats.table)": [[24, "unravel.cluster_stats.table.undo_fill_with_original", false]], "uniq_intensities() (in module unravel.image_tools.unique_intensities)": [[64, "unravel.image_tools.unique_intensities.uniq_intensities", false]], "unpack_points() (in module unravel.utilities.points_compressor)": [[87, "unravel.utilities.points_compressor.unpack_points", false]], "unravel.cluster_stats.brain_model": [[3, "module-unravel.cluster_stats.brain_model", false]], "unravel.cluster_stats.crop": [[4, "module-unravel.cluster_stats.crop", false]], "unravel.cluster_stats.cstats": [[5, "module-unravel.cluster_stats.cstats", false]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[6, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false]], "unravel.cluster_stats.fdr": [[10, "module-unravel.cluster_stats.fdr", false]], "unravel.cluster_stats.fdr_range": [[11, "module-unravel.cluster_stats.fdr_range", false]], "unravel.cluster_stats.find_incongruent_clusters": [[12, "module-unravel.cluster_stats.find_incongruent_clusters", false]], "unravel.cluster_stats.group_bilateral_data": [[13, "module-unravel.cluster_stats.group_bilateral_data", false]], "unravel.cluster_stats.index": [[16, "module-unravel.cluster_stats.index", false]], "unravel.cluster_stats.legend": [[15, "module-unravel.cluster_stats.legend", false]], "unravel.cluster_stats.mean_if": [[14, "module-unravel.cluster_stats.mean_IF", false]], "unravel.cluster_stats.mean_if_summary": [[17, "module-unravel.cluster_stats.mean_IF_summary", false]], "unravel.cluster_stats.org_data": [[18, "module-unravel.cluster_stats.org_data", false]], "unravel.cluster_stats.prism": [[19, "module-unravel.cluster_stats.prism", false]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[20, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false]], "unravel.cluster_stats.stats_table": [[21, "module-unravel.cluster_stats.stats_table", false]], "unravel.cluster_stats.summary": [[22, "module-unravel.cluster_stats.summary", false]], "unravel.cluster_stats.sunburst": [[23, "module-unravel.cluster_stats.sunburst", false]], "unravel.cluster_stats.table": [[24, "module-unravel.cluster_stats.table", false]], "unravel.cluster_stats.validation": [[26, "module-unravel.cluster_stats.validation", false]], "unravel.core.argparse_utils": [[27, "module-unravel.core.argparse_utils", false]], "unravel.core.argparse_utils_rich": [[28, "module-unravel.core.argparse_utils_rich", false]], "unravel.core.config": [[29, "module-unravel.core.config", false]], "unravel.core.img_io": [[30, "module-unravel.core.img_io", false]], "unravel.core.img_tools": [[31, "module-unravel.core.img_tools", false]], "unravel.core.utils": [[33, "module-unravel.core.utils", false]], "unravel.image_io.h5_to_tifs": [[34, "module-unravel.image_io.h5_to_tifs", false]], "unravel.image_io.img_to_npy": [[35, "module-unravel.image_io.img_to_npy", false]], "unravel.image_io.img_to_points": [[36, "module-unravel.image_io.img_to_points", false]], "unravel.image_io.io_img": [[37, "module-unravel.image_io.io_img", false]], "unravel.image_io.io_nii": [[38, "module-unravel.image_io.io_nii", false]], "unravel.image_io.metadata": [[39, "module-unravel.image_io.metadata", false]], "unravel.image_io.nii_hd": [[40, "module-unravel.image_io.nii_hd", false]], "unravel.image_io.nii_info": [[41, "module-unravel.image_io.nii_info", false]], "unravel.image_io.nii_to_tifs": [[42, "module-unravel.image_io.nii_to_tifs", false]], "unravel.image_io.nii_to_zarr": [[43, "module-unravel.image_io.nii_to_zarr", false]], "unravel.image_io.points_to_img": [[44, "module-unravel.image_io.points_to_img", false]], "unravel.image_io.reorient_nii": [[45, "module-unravel.image_io.reorient_nii", false]], "unravel.image_io.tif_to_tifs": [[46, "module-unravel.image_io.tif_to_tifs", false]], "unravel.image_io.zarr_to_nii": [[48, "module-unravel.image_io.zarr_to_nii", false]], "unravel.image_tools.atlas.relabel_nii": [[50, "module-unravel.image_tools.atlas.relabel_nii", false]], "unravel.image_tools.atlas.wireframe": [[52, "module-unravel.image_tools.atlas.wireframe", false]], "unravel.image_tools.avg": [[53, "module-unravel.image_tools.avg", false]], "unravel.image_tools.bbox": [[54, "module-unravel.image_tools.bbox", false]], "unravel.image_tools.dog": [[49, "module-unravel.image_tools.DoG", false]], "unravel.image_tools.extend": [[55, "module-unravel.image_tools.extend", false]], "unravel.image_tools.max": [[56, "module-unravel.image_tools.max", false]], "unravel.image_tools.pad": [[57, "module-unravel.image_tools.pad", false]], "unravel.image_tools.rb": [[58, "module-unravel.image_tools.rb", false]], "unravel.image_tools.resample": [[59, "module-unravel.image_tools.resample", false]], "unravel.image_tools.resample_points": [[60, "module-unravel.image_tools.resample_points", false]], "unravel.image_tools.spatial_averaging": [[61, "module-unravel.image_tools.spatial_averaging", false]], "unravel.image_tools.transpose_axes": [[63, "module-unravel.image_tools.transpose_axes", false]], "unravel.image_tools.unique_intensities": [[64, "module-unravel.image_tools.unique_intensities", false]], "unravel.region_stats.rstats": [[65, "module-unravel.region_stats.rstats", false]], "unravel.region_stats.rstats_mean_if": [[66, "module-unravel.region_stats.rstats_mean_IF", false]], "unravel.region_stats.rstats_mean_if_in_segmented_voxels": [[67, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false]], "unravel.region_stats.rstats_mean_if_summary": [[68, "module-unravel.region_stats.rstats_mean_IF_summary", false]], "unravel.region_stats.rstats_summary": [[69, "module-unravel.region_stats.rstats_summary", false]], "unravel.register.affine_initializer": [[71, "module-unravel.register.affine_initializer", false]], "unravel.register.reg": [[72, "module-unravel.register.reg", false]], "unravel.register.reg_check": [[73, "module-unravel.register.reg_check", false]], "unravel.register.reg_check_brain_mask": [[74, "module-unravel.register.reg_check_brain_mask", false]], "unravel.register.reg_prep": [[75, "module-unravel.register.reg_prep", false]], "unravel.segment.brain_mask": [[77, "module-unravel.segment.brain_mask", false]], "unravel.segment.copy_tifs": [[78, "module-unravel.segment.copy_tifs", false]], "unravel.segment.ilastik_pixel_classification": [[79, "module-unravel.segment.ilastik_pixel_classification", false]], "unravel.segment.labels_to_masks": [[80, "module-unravel.segment.labels_to_masks", false]], "unravel.unravel_commands": [[83, "module-unravel.unravel_commands", false]], "unravel.utilities.aggregate_files_from_sample_dirs": [[84, "module-unravel.utilities.aggregate_files_from_sample_dirs", false]], "unravel.utilities.aggregate_files_recursively": [[85, "module-unravel.utilities.aggregate_files_recursively", false]], "unravel.utilities.clean_tif_dirs": [[86, "module-unravel.utilities.clean_tif_dirs", false]], "unravel.utilities.points_compressor": [[87, "module-unravel.utilities.points_compressor", false]], "unravel.utilities.prepend_conditions": [[88, "module-unravel.utilities.prepend_conditions", false]], "unravel.utilities.rename": [[89, "module-unravel.utilities.rename", false]], "unravel.utilities.toggle_samples": [[91, "module-unravel.utilities.toggle_samples", false]], "unravel.voxel_stats.apply_mask": [[92, "module-unravel.voxel_stats.apply_mask", false]], "unravel.voxel_stats.hemi_to_lr_avg": [[93, "module-unravel.voxel_stats.hemi_to_LR_avg", false]], "unravel.voxel_stats.mirror": [[94, "module-unravel.voxel_stats.mirror", false]], "unravel.voxel_stats.other.if_outliers": [[95, "module-unravel.voxel_stats.other.IF_outliers", false]], "unravel.voxel_stats.other.r_to_p": [[96, "module-unravel.voxel_stats.other.r_to_p", false]], "unravel.voxel_stats.vstats": [[99, "module-unravel.voxel_stats.vstats", false]], "unravel.voxel_stats.vstats_prep": [[100, "module-unravel.voxel_stats.vstats_prep", false]], "unravel.voxel_stats.whole_to_lr_avg": [[101, "module-unravel.voxel_stats.whole_to_LR_avg", false]], "unravel.voxel_stats.z_score": [[102, "module-unravel.voxel_stats.z_score", false]], "unravel.warp.points_to_atlas": [[103, "module-unravel.warp.points_to_atlas", false]], "unravel.warp.to_atlas": [[104, "module-unravel.warp.to_atlas", false]], "unravel.warp.to_fixed": [[105, "module-unravel.warp.to_fixed", false]], "unravel.warp.to_native": [[106, "module-unravel.warp.to_native", false]], "unravel.warp.warp": [[108, "module-unravel.warp.warp", false]], "valid_clusters_t_test() (in module unravel.cluster_stats.cstats)": [[5, "unravel.cluster_stats.cstats.valid_clusters_t_test", false]], "verbose (unravel.core.config.configuration attribute)": [[29, "unravel.core.config.Configuration.verbose", false]], "verbose_end_msg() (in module unravel.core.utils)": [[33, "unravel.core.utils.verbose_end_msg", false]], "verbose_start_msg() (in module unravel.core.utils)": [[33, "unravel.core.utils.verbose_start_msg", false]], "warp() (in module unravel.warp.warp)": [[108, "unravel.warp.warp.warp", false]], "whole_to_lr_avg() (in module unravel.voxel_stats.whole_to_lr_avg)": [[101, "unravel.voxel_stats.whole_to_LR_avg.whole_to_LR_avg", false]], "write_to_csv() (in module unravel.cluster_stats.mean_if)": [[14, "unravel.cluster_stats.mean_IF.write_to_csv", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if)": [[66, "unravel.region_stats.rstats_mean_IF.write_to_csv", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[67, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.write_to_csv", false]], "z_score() (in module unravel.voxel_stats.z_score)": [[102, "unravel.voxel_stats.z_score.z_score", false]], "z_to_p() (in module unravel.voxel_stats.other.r_to_p)": [[96, "unravel.voxel_stats.other.r_to_p.z_to_p", false]], "zarr_to_ndarray() (in module unravel.image_io.zarr_to_nii)": [[48, "unravel.image_io.zarr_to_nii.zarr_to_ndarray", false]]}, "objects": {"unravel": [[83, 0, 0, "-", "unravel_commands"]], "unravel.cluster_stats": [[3, 0, 0, "-", "brain_model"], [4, 0, 0, "-", "crop"], [5, 0, 0, "-", "cstats"], [10, 0, 0, "-", "fdr"], [11, 0, 0, "-", "fdr_range"], [12, 0, 0, "-", "find_incongruent_clusters"], [13, 0, 0, "-", "group_bilateral_data"], [16, 0, 0, "-", "index"], [15, 0, 0, "-", "legend"], [14, 0, 0, "-", "mean_IF"], [17, 0, 0, "-", "mean_IF_summary"], [18, 0, 0, "-", "org_data"], [19, 0, 0, "-", "prism"], [20, 0, 0, "-", "recursively_mirror_rev_cluster_indices"], [21, 0, 0, "-", "stats_table"], [22, 0, 0, "-", "summary"], [23, 0, 0, "-", "sunburst"], [24, 0, 0, "-", "table"], [26, 0, 0, "-", "validation"]], "unravel.cluster_stats.brain_model": [[3, 1, 1, "", "main"], [3, 1, 1, "", "parse_args"]], "unravel.cluster_stats.crop": [[4, 1, 1, "", "main"], [4, 1, 1, "", "parse_args"], [4, 1, 1, "", "save_cropped_img"]], "unravel.cluster_stats.cstats": [[5, 1, 1, "", "cluster_validation_data_df"], [5, 1, 1, "", "condition_selector"], [5, 1, 1, "", "main"], [5, 1, 1, "", "parse_args"], [5, 1, 1, "", "perform_tukey_test"], [5, 1, 1, "", "valid_clusters_t_test"]], "unravel.cluster_stats.effect_sizes": [[6, 0, 0, "-", "effect_sizes"], [7, 0, 0, "-", "effect_sizes_by_sex__absolute"], [8, 0, 0, "-", "effect_sizes_by_sex__relative"]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[6, 1, 1, "", "condition_selector"], [6, 1, 1, "", "filter_dataframe"], [6, 1, 1, "", "hedges_g"], [6, 1, 1, "", "main"], [6, 1, 1, "", "parse_args"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute": [[7, 1, 1, "", "condition_selector"], [7, 1, 1, "", "filter_dataframe"], [7, 1, 1, "", "hedges_g"], [7, 1, 1, "", "main"], [7, 1, 1, "", "parse_args"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[8, 1, 1, "", "condition_selector"], [8, 1, 1, "", "filter_dataframe"], [8, 1, 1, "", "main"], [8, 1, 1, "", "mean_std_count"], [8, 1, 1, "", "parse_args"], [8, 1, 1, "", "relative_hedges_g"]], "unravel.cluster_stats.fdr": [[10, 1, 1, "", "cluster_index"], [10, 1, 1, "", "fdr"], [10, 1, 1, "", "main"], [10, 1, 1, "", "parse_args"], [10, 1, 1, "", "process_fdr_and_clusters"], [10, 1, 1, "", "reverse_clusters"], [10, 1, 1, "", "split_clusters_based_on_effect"]], "unravel.cluster_stats.fdr_range": [[11, 1, 1, "", "fdr_range"], [11, 1, 1, "", "main"], [11, 1, 1, "", "parse_args"], [11, 1, 1, "", "smart_float_format"]], "unravel.cluster_stats.find_incongruent_clusters": [[12, 1, 1, "", "find_incongruent_clusters"], [12, 1, 1, "", "main"], [12, 1, 1, "", "parse_args"]], "unravel.cluster_stats.group_bilateral_data": [[13, 1, 1, "", "group_hemisphere_data"], [13, 1, 1, "", "main"], [13, 1, 1, "", "parse_args"]], "unravel.cluster_stats.index": [[16, 1, 1, "", "generate_sunburst"], [16, 1, 1, "", "main"], [16, 1, 1, "", "parse_args"]], "unravel.cluster_stats.legend": [[15, 1, 1, "", "apply_rgb_to_cell"], [15, 1, 1, "", "extract_unique_regions_from_file"], [15, 1, 1, "", "main"], [15, 1, 1, "", "parse_args"]], "unravel.cluster_stats.mean_IF": [[14, 1, 1, "", "calculate_mean_intensity_in_clusters"], [14, 1, 1, "", "main"], [14, 1, 1, "", "parse_args"], [14, 1, 1, "", "write_to_csv"]], "unravel.cluster_stats.mean_IF_summary": [[17, 1, 1, "", "load_data"], [17, 1, 1, "", "main"], [17, 1, 1, "", "parse_args"], [17, 1, 1, "", "perform_t_tests"], [17, 1, 1, "", "plot_data"]], "unravel.cluster_stats.org_data": [[18, 1, 1, "", "copy_stats_files"], [18, 1, 1, "", "cp"], [18, 1, 1, "", "find_matching_directory"], [18, 1, 1, "", "main"], [18, 1, 1, "", "organize_validation_data"], [18, 1, 1, "", "parse_args"]], "unravel.cluster_stats.prism": [[19, 1, 1, "", "generate_summary_table"], [19, 1, 1, "", "main"], [19, 1, 1, "", "parse_args"], [19, 1, 1, "", "sort_samples"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[20, 1, 1, "", "main"], [20, 1, 1, "", "parse_args"], [20, 1, 1, "", "process_file"]], "unravel.cluster_stats.stats_table": [[21, 1, 1, "", "cluster_summary"], [21, 1, 1, "", "main"], [21, 1, 1, "", "parse_args"]], "unravel.cluster_stats.summary": [[22, 1, 1, "", "main"], [22, 1, 1, "", "parse_args"], [22, 1, 1, "", "run_script"]], "unravel.cluster_stats.sunburst": [[23, 1, 1, "", "calculate_regional_volumes"], [23, 1, 1, "", "main"], [23, 1, 1, "", "parse_args"], [23, 1, 1, "", "sunburst"]], "unravel.cluster_stats.table": [[24, 1, 1, "", "calculate_top_regions"], [24, 1, 1, "", "can_collapse"], [24, 1, 1, "", "collapse_hierarchy"], [24, 1, 1, "", "fill_na_with_last_known"], [24, 1, 1, "", "get_fill_color"], [24, 1, 1, "", "get_top_regions_and_percent_vols"], [24, 1, 1, "", "main"], [24, 1, 1, "", "parse_args"], [24, 1, 1, "", "sort_sunburst_hierarchy"], [24, 1, 1, "", "undo_fill_with_original"]], "unravel.cluster_stats.validation": [[26, 1, 1, "", "cluster_bbox"], [26, 1, 1, "", "cluster_bbox_parallel"], [26, 1, 1, "", "count_cells"], [26, 1, 1, "", "crop_outer_space"], [26, 1, 1, "", "density_in_cluster"], [26, 1, 1, "", "density_in_cluster_parallel"], [26, 1, 1, "", "main"], [26, 1, 1, "", "parse_args"]], "unravel.core": [[27, 0, 0, "-", "argparse_utils"], [28, 0, 0, "-", "argparse_utils_rich"], [29, 0, 0, "-", "config"], [30, 0, 0, "-", "img_io"], [31, 0, 0, "-", "img_tools"], [33, 0, 0, "-", "utils"]], "unravel.core.argparse_utils": [[27, 2, 1, "", "SM"], [27, 2, 1, "", "SuppressMetavar"]], "unravel.core.argparse_utils_rich": [[28, 2, 1, "", "SM"], [28, 2, 1, "", "SuppressMetavar"]], "unravel.core.config": [[29, 2, 1, "", "AttrDict"], [29, 2, 1, "", "Config"], [29, 2, 1, "", "Configuration"]], "unravel.core.config.Configuration": [[29, 3, 1, "", "verbose"]], "unravel.core.img_io": [[30, 1, 1, "", "extract_resolution"], [30, 1, 1, "", "load_3D_img"], [30, 1, 1, "", "load_czi"], [30, 1, 1, "", "load_h5"], [30, 1, 1, "", "load_image_metadata_from_txt"], [30, 1, 1, "", "load_nii"], [30, 1, 1, "", "load_nii_subset"], [30, 1, 1, "", "load_tifs"], [30, 1, 1, "", "load_zarr"], [30, 1, 1, "", "metadata"], [30, 1, 1, "", "nii_path_or_nii"], [30, 1, 1, "", "nii_to_ndarray"], [30, 1, 1, "", "nii_voxel_size"], [30, 1, 1, "", "resolve_path"], [30, 1, 1, "", "return_3D_img"], [30, 1, 1, "", "save_3D_img"], [30, 1, 1, "", "save_as_h5"], [30, 1, 1, "", "save_as_nii"], [30, 1, 1, "", "save_as_tifs"], [30, 1, 1, "", "save_as_zarr"], [30, 1, 1, "", "save_metadata_to_file"]], "unravel.core.img_tools": [[31, 1, 1, "", "cluster_IDs"], [31, 1, 1, "", "crop"], [31, 1, 1, "", "find_bounding_box"], [31, 1, 1, "", "pad"], [31, 1, 1, "", "pixel_classification"], [31, 1, 1, "", "process_slice"], [31, 1, 1, "", "reorient_for_raw_to_nii_conv"], [31, 1, 1, "", "reorient_ndarray"], [31, 1, 1, "", "reorient_ndarray2"], [31, 1, 1, "", "resample"], [31, 1, 1, "", "reverse_reorient_for_raw_to_nii_conv"], [31, 1, 1, "", "rolling_ball_subtraction_opencv_parallel"]], "unravel.core.utils": [[33, 2, 1, "", "AverageTimePerIterationColumn"], [33, 2, 1, "", "CustomMofNCompleteColumn"], [33, 2, 1, "", "CustomTimeElapsedColumn"], [33, 2, 1, "", "CustomTimeRemainingColumn"], [33, 1, 1, "", "copy_files"], [33, 1, 1, "", "get_dir_name_from_args"], [33, 1, 1, "", "get_samples"], [33, 1, 1, "", "initialize_progress_bar"], [33, 1, 1, "", "load_config"], [33, 1, 1, "", "load_text_from_file"], [33, 1, 1, "", "log_command"], [33, 1, 1, "", "print_func_name_args_times"], [33, 1, 1, "", "process_files_with_glob"], [33, 1, 1, "", "verbose_end_msg"], [33, 1, 1, "", "verbose_start_msg"]], "unravel.core.utils.AverageTimePerIterationColumn": [[33, 4, 1, "", "render"]], "unravel.core.utils.CustomMofNCompleteColumn": [[33, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeElapsedColumn": [[33, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeRemainingColumn": [[33, 4, 1, "", "render"]], "unravel.image_io": [[34, 0, 0, "-", "h5_to_tifs"], [35, 0, 0, "-", "img_to_npy"], [36, 0, 0, "-", "img_to_points"], [37, 0, 0, "-", "io_img"], [38, 0, 0, "-", "io_nii"], [39, 0, 0, "-", "metadata"], [40, 0, 0, "-", "nii_hd"], [41, 0, 0, "-", "nii_info"], [42, 0, 0, "-", "nii_to_tifs"], [43, 0, 0, "-", "nii_to_zarr"], [44, 0, 0, "-", "points_to_img"], [45, 0, 0, "-", "reorient_nii"], [46, 0, 0, "-", "tif_to_tifs"], [48, 0, 0, "-", "zarr_to_nii"]], "unravel.image_io.h5_to_tifs": [[34, 1, 1, "", "find_largest_h5_file"], [34, 1, 1, "", "load_h5"], [34, 1, 1, "", "main"], [34, 1, 1, "", "metadata_from_h5"], [34, 1, 1, "", "parse_args"], [34, 1, 1, "", "save_as_tifs"]], "unravel.image_io.img_to_npy": [[35, 1, 1, "", "main"], [35, 1, 1, "", "parse_args"]], "unravel.image_io.img_to_points": [[36, 1, 1, "", "img_to_points"], [36, 1, 1, "", "main"], [36, 1, 1, "", "parse_args"]], "unravel.image_io.io_img": [[37, 1, 1, "", "main"], [37, 1, 1, "", "parse_args"]], "unravel.image_io.io_nii": [[38, 1, 1, "", "convert_dtype"], [38, 1, 1, "", "main"], [38, 1, 1, "", "parse_args"]], "unravel.image_io.metadata": [[39, 1, 1, "", "get_dims_from_tifs"], [39, 1, 1, "", "main"], [39, 1, 1, "", "parse_args"], [39, 1, 1, "", "print_metadata"]], "unravel.image_io.nii_hd": [[40, 1, 1, "", "main"], [40, 1, 1, "", "parse_args"]], "unravel.image_io.nii_info": [[41, 1, 1, "", "main"], [41, 1, 1, "", "nii_axis_codes"], [41, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_tifs": [[42, 1, 1, "", "main"], [42, 1, 1, "", "nii_to_tifs"], [42, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_zarr": [[43, 1, 1, "", "main"], [43, 1, 1, "", "nii_to_ndarray"], [43, 1, 1, "", "parse_args"], [43, 1, 1, "", "save_as_zarr"]], "unravel.image_io.points_to_img": [[44, 1, 1, "", "load_and_prepare_points"], [44, 1, 1, "", "main"], [44, 1, 1, "", "parse_args"], [44, 1, 1, "", "points_to_img"], [44, 1, 1, "", "threshold_points_by_region_id"]], "unravel.image_io.reorient_nii": [[45, 1, 1, "", "main"], [45, 1, 1, "", "parse_args"], [45, 1, 1, "", "reorient_nii"], [45, 1, 1, "", "transform_nii_affine"]], "unravel.image_io.tif_to_tifs": [[46, 1, 1, "", "find_largest_tif_file"], [46, 1, 1, "", "load_3D_tif"], [46, 1, 1, "", "main"], [46, 1, 1, "", "metadata_from_3D_tif"], [46, 1, 1, "", "parse_args"], [46, 1, 1, "", "save_as_tifs"]], "unravel.image_io.zarr_to_nii": [[48, 1, 1, "", "define_zarr_to_nii_output"], [48, 1, 1, "", "main"], [48, 1, 1, "", "parse_args"], [48, 1, 1, "", "save_as_nii"], [48, 1, 1, "", "zarr_to_ndarray"]], "unravel.image_tools": [[49, 0, 0, "-", "DoG"], [53, 0, 0, "-", "avg"], [54, 0, 0, "-", "bbox"], [55, 0, 0, "-", "extend"], [56, 0, 0, "-", "max"], [57, 0, 0, "-", "pad"], [58, 0, 0, "-", "rb"], [59, 0, 0, "-", "resample"], [60, 0, 0, "-", "resample_points"], [61, 0, 0, "-", "spatial_averaging"], [63, 0, 0, "-", "transpose_axes"], [64, 0, 0, "-", "unique_intensities"]], "unravel.image_tools.DoG": [[49, 1, 1, "", "difference_of_gaussians"], [49, 1, 1, "", "load_tif"], [49, 1, 1, "", "main"], [49, 1, 1, "", "parse_args"], [49, 1, 1, "", "save_tif"]], "unravel.image_tools.atlas": [[50, 0, 0, "-", "relabel_nii"], [52, 0, 0, "-", "wireframe"]], "unravel.image_tools.atlas.relabel_nii": [[50, 1, 1, "", "main"], [50, 1, 1, "", "parse_args"]], "unravel.image_tools.atlas.wireframe": [[52, 1, 1, "", "generate_wireframe"], [52, 1, 1, "", "main"], [52, 1, 1, "", "parse_args"], [52, 1, 1, "", "process_intensity"]], "unravel.image_tools.avg": [[53, 1, 1, "", "main"], [53, 1, 1, "", "parse_args"]], "unravel.image_tools.bbox": [[54, 1, 1, "", "main"], [54, 1, 1, "", "parse_args"]], "unravel.image_tools.extend": [[55, 1, 1, "", "extend_one_side_3d_array"], [55, 1, 1, "", "main"], [55, 1, 1, "", "parse_args"]], "unravel.image_tools.max": [[56, 1, 1, "", "find_max_intensity"], [56, 1, 1, "", "main"], [56, 1, 1, "", "parse_args"]], "unravel.image_tools.pad": [[57, 1, 1, "", "main"], [57, 1, 1, "", "parse_args"]], "unravel.image_tools.rb": [[58, 1, 1, "", "load_tif"], [58, 1, 1, "", "main"], [58, 1, 1, "", "parse_args"], [58, 1, 1, "", "rolling_ball_subtraction"], [58, 1, 1, "", "save_tif"]], "unravel.image_tools.resample": [[59, 1, 1, "", "create_resampled_nii"], [59, 1, 1, "", "main"], [59, 1, 1, "", "parse_args"]], "unravel.image_tools.resample_points": [[60, 1, 1, "", "main"], [60, 1, 1, "", "parse_args"], [60, 1, 1, "", "resample_and_convert_points"]], "unravel.image_tools.spatial_averaging": [[61, 1, 1, "", "apply_2D_mean_filter"], [61, 1, 1, "", "main"], [61, 1, 1, "", "parse_args"], [61, 1, 1, "", "spatial_average_2D"], [61, 1, 1, "", "spatial_average_3D"]], "unravel.image_tools.transpose_axes": [[63, 1, 1, "", "main"], [63, 1, 1, "", "parse_args"], [63, 1, 1, "", "transpose_img"]], "unravel.image_tools.unique_intensities": [[64, 1, 1, "", "main"], [64, 1, 1, "", "parse_args"], [64, 1, 1, "", "uniq_intensities"]], "unravel.region_stats": [[65, 0, 0, "-", "rstats"], [66, 0, 0, "-", "rstats_mean_IF"], [67, 0, 0, "-", "rstats_mean_IF_in_segmented_voxels"], [68, 0, 0, "-", "rstats_mean_IF_summary"], [69, 0, 0, "-", "rstats_summary"]], "unravel.region_stats.rstats": [[65, 1, 1, "", "calculate_regional_densities"], [65, 1, 1, "", "calculate_regional_volumes"], [65, 1, 1, "", "count_cells_in_regions"], [65, 1, 1, "", "get_atlas_region_at_coords"], [65, 1, 1, "", "main"], [65, 1, 1, "", "parse_args"]], "unravel.region_stats.rstats_mean_IF": [[66, 1, 1, "", "calculate_mean_intensity"], [66, 1, 1, "", "main"], [66, 1, 1, "", "parse_args"], [66, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels": [[67, 1, 1, "", "calculate_mean_intensity"], [67, 1, 1, "", "main"], [67, 1, 1, "", "parse_args"], [67, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_summary": [[68, 1, 1, "", "filter_region_ids"], [68, 1, 1, "", "get_all_region_ids"], [68, 1, 1, "", "get_max_region_id_from_csvs"], [68, 1, 1, "", "get_region_details"], [68, 1, 1, "", "load_data"], [68, 1, 1, "", "main"], [68, 1, 1, "", "parse_args"], [68, 1, 1, "", "perform_t_tests"], [68, 1, 1, "", "plot_data"], [68, 1, 1, "", "remove_zero_intensity_regions"]], "unravel.region_stats.rstats_summary": [[69, 1, 1, "", "get_region_details"], [69, 1, 1, "", "main"], [69, 1, 1, "", "parse_args"], [69, 1, 1, "", "parse_color_argument"], [69, 1, 1, "", "process_and_plot_data"], [69, 1, 1, "", "summarize_significance"]], "unravel.register": [[71, 0, 0, "-", "affine_initializer"], [72, 0, 0, "-", "reg"], [73, 0, 0, "-", "reg_check"], [74, 0, 0, "-", "reg_check_brain_mask"], [75, 0, 0, "-", "reg_prep"]], "unravel.register.affine_initializer": [[71, 1, 1, "", "affine_initializer_wrapper"], [71, 1, 1, "", "main"], [71, 1, 1, "", "parse_args"], [71, 1, 1, "", "run_with_timeout"]], "unravel.register.reg": [[72, 1, 1, "", "bias_correction"], [72, 1, 1, "", "main"], [72, 1, 1, "", "parse_args"]], "unravel.register.reg_check": [[73, 1, 1, "", "main"], [73, 1, 1, "", "parse_args"]], "unravel.register.reg_check_brain_mask": [[74, 1, 1, "", "main"], [74, 1, 1, "", "parse_args"]], "unravel.register.reg_prep": [[75, 1, 1, "", "main"], [75, 1, 1, "", "parse_args"], [75, 1, 1, "", "reg_prep"]], "unravel.segment": [[77, 0, 0, "-", "brain_mask"], [78, 0, 0, "-", "copy_tifs"], [79, 0, 0, "-", "ilastik_pixel_classification"], [80, 0, 0, "-", "labels_to_masks"]], "unravel.segment.brain_mask": [[77, 1, 1, "", "main"], [77, 1, 1, "", "parse_args"]], "unravel.segment.copy_tifs": [[78, 1, 1, "", "copy_specific_slices"], [78, 1, 1, "", "main"], [78, 1, 1, "", "parse_args"]], "unravel.segment.ilastik_pixel_classification": [[79, 1, 1, "", "count_files"], [79, 1, 1, "", "main"], [79, 1, 1, "", "parse_args"], [79, 1, 1, "", "save_labels_as_masks"]], "unravel.segment.labels_to_masks": [[80, 1, 1, "", "main"], [80, 1, 1, "", "parse_args"], [80, 1, 1, "", "save_labels_as_masks"]], "unravel.unravel_commands": [[83, 1, 1, "", "main"], [83, 1, 1, "", "parse_args"]], "unravel.utilities": [[84, 0, 0, "-", "aggregate_files_from_sample_dirs"], [85, 0, 0, "-", "aggregate_files_recursively"], [86, 0, 0, "-", "clean_tif_dirs"], [87, 0, 0, "-", "points_compressor"], [88, 0, 0, "-", "prepend_conditions"], [89, 0, 0, "-", "rename"], [91, 0, 0, "-", "toggle_samples"]], "unravel.utilities.aggregate_files_from_sample_dirs": [[84, 1, 1, "", "aggregate_files_from_sample_dirs"], [84, 1, 1, "", "main"], [84, 1, 1, "", "parse_args"]], "unravel.utilities.aggregate_files_recursively": [[85, 1, 1, "", "find_and_copy_files"], [85, 1, 1, "", "main"], [85, 1, 1, "", "parse_args"]], "unravel.utilities.clean_tif_dirs": [[86, 1, 1, "", "clean_tifs_dir"], [86, 1, 1, "", "main"], [86, 1, 1, "", "parse_args"]], "unravel.utilities.points_compressor": [[87, 1, 1, "", "main"], [87, 1, 1, "", "pack_points"], [87, 1, 1, "", "parse_args"], [87, 1, 1, "", "points_compressor"], [87, 1, 1, "", "summarize_points"], [87, 1, 1, "", "unpack_points"]], "unravel.utilities.prepend_conditions": [[88, 1, 1, "", "main"], [88, 1, 1, "", "parse_args"], [88, 1, 1, "", "prepend_conditions"], [88, 1, 1, "", "rename_items"]], "unravel.utilities.rename": [[89, 1, 1, "", "main"], [89, 1, 1, "", "parse_args"], [89, 1, 1, "", "rename_files"]], "unravel.utilities.toggle_samples": [[91, 1, 1, "", "main"], [91, 1, 1, "", "parse_args"]], "unravel.voxel_stats": [[92, 0, 0, "-", "apply_mask"], [93, 0, 0, "-", "hemi_to_LR_avg"], [94, 0, 0, "-", "mirror"], [99, 0, 0, "-", "vstats"], [100, 0, 0, "-", "vstats_prep"], [101, 0, 0, "-", "whole_to_LR_avg"], [102, 0, 0, "-", "z_score"]], "unravel.voxel_stats.apply_mask": [[92, 1, 1, "", "apply_mask_to_ndarray"], [92, 1, 1, "", "dilate_mask"], [92, 1, 1, "", "load_mask"], [92, 1, 1, "", "main"], [92, 1, 1, "", "mean_intensity_in_brain"], [92, 1, 1, "", "parse_args"], [92, 1, 1, "", "scale_bool_to_full_res"]], "unravel.voxel_stats.hemi_to_LR_avg": [[93, 1, 1, "", "hemi_to_LR_avg"], [93, 1, 1, "", "main"], [93, 1, 1, "", "parse_args"]], "unravel.voxel_stats.mirror": [[94, 1, 1, "", "main"], [94, 1, 1, "", "mirror"], [94, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other": [[95, 0, 0, "-", "IF_outliers"], [96, 0, 0, "-", "r_to_p"]], "unravel.voxel_stats.other.IF_outliers": [[95, 1, 1, "", "detect_outliers"], [95, 1, 1, "", "main"], [95, 1, 1, "", "mean_intensity_within_mask"], [95, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other.r_to_p": [[96, 1, 1, "", "main"], [96, 1, 1, "", "parse_args"], [96, 1, 1, "", "r_to_z"], [96, 1, 1, "", "z_to_p"]], "unravel.voxel_stats.vstats": [[99, 1, 1, "", "calculate_fragments"], [99, 1, 1, "", "check_fdr_command"], [99, 1, 1, "", "create_design_ttest2"], [99, 1, 1, "", "get_groups_info"], [99, 1, 1, "", "main"], [99, 1, 1, "", "parse_args"], [99, 1, 1, "", "run_randomise_parallel"]], "unravel.voxel_stats.vstats_prep": [[100, 1, 1, "", "main"], [100, 1, 1, "", "parse_args"]], "unravel.voxel_stats.whole_to_LR_avg": [[101, 1, 1, "", "main"], [101, 1, 1, "", "parse_args"], [101, 1, 1, "", "whole_to_LR_avg"]], "unravel.voxel_stats.z_score": [[102, 1, 1, "", "main"], [102, 1, 1, "", "parse_args"], [102, 1, 1, "", "z_score"]], "unravel.warp": [[103, 0, 0, "-", "points_to_atlas"], [104, 0, 0, "-", "to_atlas"], [105, 0, 0, "-", "to_fixed"], [106, 0, 0, "-", "to_native"], [108, 0, 0, "-", "warp"]], "unravel.warp.points_to_atlas": [[103, 1, 1, "", "main"], [103, 1, 1, "", "parse_args"]], "unravel.warp.to_atlas": [[104, 1, 1, "", "copy_nii_header"], [104, 1, 1, "", "main"], [104, 1, 1, "", "parse_args"], [104, 1, 1, "", "to_atlas"]], "unravel.warp.to_fixed": [[105, 1, 1, "", "calculate_padded_dimensions"], [105, 1, 1, "", "forward_warp"], [105, 1, 1, "", "main"], [105, 1, 1, "", "parse_args"]], "unravel.warp.to_native": [[106, 1, 1, "", "calculate_resampled_padded_dimensions"], [106, 1, 1, "", "main"], [106, 1, 1, "", "parse_args"], [106, 1, 1, "", "scale_to_full_res"], [106, 1, 1, "", "to_native"]], "unravel.warp.warp": [[108, 1, 1, "", "main"], [108, 1, 1, "", "parse_args"], [108, 1, 1, "", "warp"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:attribute", "4": "py:method"}, "terms": {"": [0, 2, 6, 7, 8, 20, 22, 24, 25, 26, 28, 30, 31, 44, 45, 55, 64, 65, 67, 69, 70, 72, 75, 78, 82, 85, 86, 87, 94, 96, 99, 102], "0": [0, 6, 7, 8, 10, 15, 20, 30, 31, 36, 38, 44, 45, 49, 52, 58, 59, 64, 68, 72, 82, 93, 94, 98, 99, 101, 105, 106], "000": 0, "0000": [0, 78], "0005": [0, 78], "005": 0, "0050": [0, 78], "01": 0, "0100": [0, 78], "05": [0, 10], "0500": [0, 78], "1": [0, 2, 5, 6, 7, 8, 10, 16, 19, 24, 31, 36, 38, 44, 45, 49, 52, 58, 59, 64, 77, 82, 93, 98, 99, 101], "10": [0, 23, 44, 71], "100": [0, 55, 62, 82], "1000": [0, 30, 78], "10000": [0, 69], "11": 2, "12000": 99, "15": [0, 31, 44, 57, 72, 105, 106], "16": 0, "18": 65, "18000": 99, "1st": [0, 45, 75, 100, 104], "2": [0, 5, 6, 7, 8, 10, 16, 19, 20, 27, 28, 44, 45, 49, 58, 61, 72, 93, 94, 101], "20": [0, 44], "20000": [3, 44, 60, 103], "2017__regionid_side_idpath_region_abbr": 68, "2017_info": [15, 16, 23, 24], "2017_regional_summari": [3, 69], "2020": [0, 20, 94], "2020__regionid_side_idpath_region_abbr": [65, 68], "2020_info": [15, 16, 23, 24], "2020_regional_summari": [3, 69], "24": [27, 28], "25": [16, 20, 23, 44, 94, 96], "255": [0, 38, 44], "256": 80, "26": [61, 65], "27af2": 69, "2d": [44, 49, 61], "2d67c8": 69, "2nd": [0, 45], "2x2": 0, "3": [2, 16, 19, 23, 31, 38, 39, 44, 45, 49, 60, 61, 72, 79, 95, 104], "30": 44, "300": 99, "32": 0, "33063286": 0, "35": 44, "37248402": 6, "3d": [0, 1, 26, 30, 31, 35, 36, 37, 44, 46, 49, 52, 55, 58, 60, 61, 64, 65, 67, 75, 104], "3d_brain": 22, "3post3": 2, "3rd": [0, 45], "3x3": 61, "3x3x3": [0, 61], "4": [0, 58, 72, 100], "400": 0, "488": 46, "4d": 0, "5": [6, 7, 8, 49], "50": [44, 60, 77, 103, 105, 106], "52": 60, "5232": [39, 104], "535": 0, "56": 0, "6": [26, 39, 60, 65, 104], "65": 0, "672": 0, "6e10_rb20": 92, "6e10_rb20_wo_artifact": 92, "6e10_seg_ilastik_2": 92, "7": 0, "7f25d3": 69, "8": [0, 6, 7, 8, 31, 47, 61, 82], "9": 11, "A": [0, 2, 5, 6, 7, 8, 12, 27, 28, 29, 33, 36, 44, 45, 52, 60, 72], "As": 24, "For": [0, 2, 10, 12, 13, 16, 22, 23, 26, 45, 52, 65, 79, 83, 88, 91, 99, 105, 108], "IF": [0, 12, 17, 67, 68], "If": [1, 2, 5, 6, 7, 8, 14, 17, 22, 26, 30, 31, 33, 34, 36, 44, 45, 46, 68, 88, 102, 103, 108], "In": 0, "It": [0, 3, 13, 15, 24, 29, 69, 99], "Its": 0, "On": 2, "Or": [0, 2], "The": [0, 1, 3, 5, 6, 7, 8, 10, 13, 17, 22, 24, 27, 28, 29, 30, 33, 36, 44, 45, 49, 60, 61, 68, 69, 72, 87, 88, 91, 99, 105], "Then": [0, 2, 22], "These": [0, 101], "To": [0, 2, 58, 69, 79], "With": [0, 36, 38], "_": [0, 5, 6, 7, 8, 17, 19, 22, 65, 68, 91], "_6e10_seg_ilastik_2": 92, "__call__": [27, 28], "__getattr__": 29, "__init__": [27, 28, 29], "_bin": 0, "_cell_centroid": 103, "_cell_dens": 69, "_cfos_rb4_30um_ccf_spac": 100, "_cfos_rb4_30um_ccf_space_z_lravg": 84, "_cfos_rb4_atlas_spac": [0, 102], "_cfos_rb4_atlas_space_z": 0, "_cluster_validation_info": 12, "_data": 26, "_density_data": [5, 19], "_density_data_lh": [5, 19], "_density_data_rh": [5, 19], "_description_": [31, 64], "_f_gt_m": 8, "_f_gt_m_valid_clust": 8, "_fill_text": [27, 28], "_format_action_invoc": [27, 28], "_gt_": 10, "_hedges_g_": [6, 7, 8], "_iba1_seg_ilastik_2": 92, "_lh": [5, 13, 19], "_lt_": 10, "_other": 0, "_p_value_map": 96, "_p_value_map_fdr_correct": 96, "_point": 87, "_rev_cluster_index": [0, 26], "_rev_cluster_index_": 0, "_rh": [5, 13, 19], "_sampl": [69, 103], "_seg_dir": [26, 67], "_seg_dir_1": 0, "_seg_dir_regional_mean_if_in_seg": 67, "_strip_com": 29, "_summari": 19, "_summary_across_clust": 19, "_sunburst": 16, "_type_": 64, "_v_": 10, "_valid_clust": [6, 7, 22], "_valid_clusters_stat": [5, 22], "_valid_clusters_t": 15, "_vox_p_": 0, "_z": 102, "_z_score_map": 96, "a1": [0, 10], "a2": [0, 10], "aba": [3, 23], "aba_seg": 67, "abbevi": 22, "abbr": [0, 3, 65, 68, 69], "abbrevi": [15, 23, 24], "abcasei": 1, "about": 0, "abov": [0, 44, 60], "absolut": [0, 33], "accept": 33, "access": [0, 29], "accident": 0, "accod": 10, "accommod": 44, "accordingli": [38, 44], "account": [0, 36, 44, 60], "accur": 0, "across": [1, 23, 28, 68], "action": [18, 27, 28], "activ": [2, 82, 90], "actual": 0, "ad": [0, 17, 33, 36, 49, 68, 87], "adapt": 0, "add": [1, 2, 17, 36, 57, 58, 68, 69], "add_argu": [27, 28], "add_prefix": 84, "addit": [0, 2, 29, 33, 36, 82, 98], "adj_p_val_img_path": 10, "adjust": [0, 10, 24, 44], "adjusted_pval_output_path": 10, "administr": 2, "af": 103, "affect": 0, "affin": [30, 41, 45, 59], "affine_initi": [1, 76, 82], "affine_initializer_wrapp": [71, 76, 82], "after": [1, 5, 20, 25, 31, 61, 68, 71, 82, 94], "again": 0, "against": [5, 6, 7, 8], "aggreg": [0, 5, 18, 22, 24, 65, 68, 84, 100, 102], "aggregate_files_from_sample_dir": [0, 1, 82, 90], "aggregate_files_recurs": [1, 82, 90], "ai14_seg_ilasik_1": 80, "algorithm": 58, "alia": 0, "alias": 0, "align": [0, 1, 44, 45], "all": [1, 5, 6, 7, 8, 22, 23, 24, 26, 28, 31, 33, 62, 65, 68, 82, 90], "all_region": 0, "allen": 1, "allow": [0, 2, 29, 71, 92], "along": 94, "alphabet": 0, "alreadi": [0, 2, 22, 70, 82, 90], "also": [0, 45, 58, 65, 71, 93, 101], "alt": [17, 68], "altern": [0, 2, 3, 5, 15, 24, 65, 68, 69], "ama": 102, "amyloid": 0, "an": [1, 2, 5, 6, 7, 8, 14, 27, 28, 30, 31, 33, 34, 35, 36, 38, 39, 41, 42, 43, 48, 49, 52, 54, 56, 57, 58, 59, 60, 61, 65, 72, 79, 80, 82, 92, 94, 98, 100, 101, 103, 106, 108], "analys": 99, "analyz": [0, 22, 102], "anatom": 14, "ani": [1, 5, 6, 7, 8, 19], "anisotrop": 30, "anoth": [0, 2, 5, 49], "anova": [0, 10], "anterior": [0, 45, 72], "antspi": [1, 104, 108], "antspy_init_tform": 71, "app": [2, 23], "append": [0, 30], "appli": [0, 2, 3, 15, 20, 26, 45, 49, 61, 93, 101, 108], "applic": [29, 92], "apply_2d_mean_filt": [61, 62, 82], "apply_mask": [1, 82, 98], "apply_mask_to_ndarrai": [82, 92, 98], "apply_rgb_to_cel": [15, 25, 82], "approach": 38, "appropri": 44, "apt": 2, "ar": [0, 1, 2, 3, 5, 6, 10, 17, 22, 24, 30, 33, 36, 44, 45, 49, 52, 61, 68, 72, 83], "arctanh": 96, "arg": [4, 20, 26, 27, 28, 33, 52, 67, 69, 92, 103], "argpars": [27, 28, 67], "argparse_util": [1, 32, 82], "argparse_utils_rich": [1, 32, 82], "argument": [0, 22, 27, 28, 33, 39, 67, 75, 86], "argumentpars": [27, 28], "around": [26, 49], "arr": 61, "arrai": [0, 30, 31, 36, 44, 52, 59, 61, 65], "arrow": 0, "artifact": [0, 82, 98], "associ": 29, "assum": [30, 31, 34, 80, 86], "asterisk": [5, 10, 15, 16, 17, 18, 19, 22, 23, 24, 34, 46, 53, 66, 67, 68, 73, 75, 77, 79, 85, 87, 94, 95, 100, 103, 104], "atla": [1, 2, 3, 16, 17, 20, 23, 26, 31, 36, 62, 66, 67, 70, 71, 76, 82, 94, 98, 99, 100, 103, 104, 105, 106, 107], "atlas1": 72, "atlas2": 72, "atlas_ccfv3_2020_30um": [0, 72, 103], "atlas_ccfv3_2020_30um_split": [0, 3], "atlas_imag": 36, "atlas_img": [36, 65, 108], "atlas_img_w": 52, "atlas_img_w_id": 52, "atlas_in_tissue_spac": [0, 73, 108], "atlas_mask": [93, 101, 102], "atlas_ndarrai": 52, "atlas_relabel": [0, 50], "atlas_res_in_um": [16, 23], "atlas_spac": [0, 84, 100, 102, 103, 108], "atlas_split": [0, 65], "atlas_wirefram": [0, 52], "attempt": [5, 19], "attent": 0, "attrdict": [29, 32, 82], "attribut": [29, 33], "austen": [0, 1], "auto": 0, "autofl": [0, 34, 72], "autofl_": [0, 73, 75, 77], "autofl_50um": [57, 77, 103], "autofl_50um_brain_mask": 102, "autofl_50um_mask": 105, "autofl_50um_masked_fixed_reg_input": [71, 103, 105, 108], "autofl_50um_tif": 78, "autofluo": [0, 75], "autofluo_50_mask": 74, "autofluo_50um": 74, "autofluoresc": 0, "autom": 1, "automat": [30, 44, 93], "avail": [0, 70, 82, 83, 99], "averag": [0, 1, 10, 33, 49, 53, 61, 72, 93, 94, 101, 102], "average_template_ccfv3_30um": [0, 71], "averagetimeperiterationcolumn": [32, 33, 82], "avg": [0, 1, 62, 82], "avg_img1": 10, "avg_img2": 10, "ax": [0, 20, 30, 41, 45, 63, 72, 94], "axi": [30, 45, 72, 93, 94, 101], "axis_1": 63, "axis_2": 63, "axis_3": 63, "axis_ord": [34, 46], "b": [2, 3, 4, 12, 69, 79, 83, 99], "back": [1, 55, 87], "background": [31, 49, 52, 58, 100], "backtick": 0, "backup": 2, "ball": [0, 31, 49, 58], "bar": [0, 33], "barbosa": 1, "base": [0, 1, 5, 6, 7, 8, 10, 13, 24, 27, 28, 29, 30, 31, 33, 36, 44, 50, 65, 87, 88, 89, 92, 99], "base_path": [13, 18, 88], "basenam": 22, "bash": [0, 2], "bashrc": [0, 2], "basic": 0, "bbox": [1, 4, 31, 62, 82], "bc": [0, 72], "beauti": 28, "becaus": 22, "becom": 38, "been": [0, 24], "befor": [0, 2, 5, 19, 20, 44, 103], "begin": [0, 2], "being": [0, 10, 82, 90], "below": [0, 44, 60], "beta": 0, "better": 77, "between": [0, 6, 7, 8, 12, 17, 68, 105], "bheifet": 1, "bia": 72, "bias_correct": [72, 76, 82], "bilater": [0, 3, 5, 10, 13, 19], "bilinear": 31, "bin": [0, 2], "binar": [0, 3, 38], "binari": [0, 38, 52, 80, 92], "binary_mask": 52, "bit": [0, 47, 82], "blank": 0, "blue": 0, "blur": 49, "bool": [30, 31, 33, 45, 64, 72, 86, 87, 108], "boolean": [5, 6, 7, 8, 29], "bori": 1, "both": [0, 27, 28, 33, 82, 89, 98], "botleneck": 0, "bottom": [0, 55], "bound": [0, 4, 26, 31, 54], "boundari": 52, "bounding_box": 54, "box": [0, 4, 26, 31, 54], "bracket": 0, "brain": [1, 10, 20, 44, 52, 66, 67, 72, 77, 82, 98, 102], "brain_mask": [0, 1, 78, 81, 82], "brain_mask_ilp": 0, "brain_model": [1, 25, 82], "branch": 2, "bright": 0, "browser": 1, "bspline": 104, "build": 2, "button": 0, "c": [0, 2, 6, 7, 8, 12, 22, 65, 83, 91], "c1": [0, 6, 7, 8], "c2": [0, 6, 7, 8], "c3": 0, "calcul": [0, 6, 7, 8, 14, 23, 65, 66, 67, 99], "calculate_frag": [82, 98, 99], "calculate_mean_intens": [66, 67, 70, 82], "calculate_mean_intensity_in_clust": [14, 25, 82], "calculate_padded_dimens": [82, 105, 107], "calculate_regional_dens": [65, 70, 82], "calculate_regional_volum": [23, 25, 65, 70, 82], "calculate_resampled_padded_dimens": [82, 106, 107], "calculate_top_region": [24, 25, 82], "call": 44, "callabl": 61, "camel": 0, "can": [1, 2, 14, 22, 24, 29, 33, 39, 77, 79, 87, 88, 89, 93, 101], "can_collaps": [24, 25, 82], "captur": [0, 22], "care": 0, "case": [0, 5, 83], "casei": 1, "cat": 0, "categori": 23, "cc3d": 1, "ccfv3": [0, 1, 3, 15, 16, 20, 23, 24, 45, 65, 68, 69, 94], "cd": [0, 2, 14, 66], "cell": [0, 1, 5, 12, 15, 18, 19, 26, 65, 69, 103], "cell_count": [5, 19, 26], "cell_dens": [5, 19, 26, 65], "cell_density_data": 0, "cell_density_summary_for_valid_clust": 22, "cellular": 1, "center": [1, 94], "central": 22, "centroid": [0, 65, 103], "certain": [82, 90], "cfo": [0, 79, 104], "cfos_rb4_30um_ccf_spac": 100, "cfos_rb4_30um_ccf_space_z_lravg": 84, "cfos_rb4_atlas_spac": 0, "cfos_seg": 79, "cfos_seg_ilastik_1": [0, 26], "chain": 0, "chang": [0, 89], "channel": 30, "char": 0, "charact": 0, "chart": 0, "check": [0, 5, 6, 7, 8, 33, 73, 95, 99], "check_fdr_command": [82, 98, 99], "checkout": 2, "choos": 0, "ci": [6, 7, 8, 14, 16], "class": [27, 28, 29, 30, 33], "classif": [0, 31, 77, 79], "clean": [1, 86], "clean_tif_dir": [1, 82, 90], "clean_tifs_dir": [82, 86, 90], "cli": [82, 107], "click": [0, 2], "clone": 2, "close": 0, "cluster": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 26, 31, 62, 69, 82, 98], "cluster_": [16, 17], "cluster_1": [6, 7, 8], "cluster_2": [6, 7, 8], "cluster_bbox": [25, 26, 82], "cluster_bbox_parallel": [25, 26, 82], "cluster_bbox_result": 26, "cluster_column": 8, "cluster_data": 26, "cluster_fdr": 0, "cluster_fdr_rang": 0, "cluster_id": [5, 12, 14, 17, 19, 26, 31, 32, 82], "cluster_idx": 18, "cluster_index": [10, 14, 25, 82], "cluster_index_dir": 26, "cluster_index_img": 10, "cluster_index_nii": 10, "cluster_info": 24, "cluster_list": [6, 7, 8], "cluster_mean_if": 14, "cluster_mean_if_": 14, "cluster_mean_if_summari": 17, "cluster_mirror_indic": 0, "cluster_stat": [0, 1, 82], "cluster_summari": [0, 21, 25, 82], "cluster_valid": 0, "cluster_valid_results_1": 13, "cluster_valid_results_1_lh": 13, "cluster_valid_results_1_rh": 13, "cluster_valid_results_2": 13, "cluster_valid_results_2_lh": 13, "cluster_valid_results_2_rh": 13, "cluster_validation_data_df": [5, 25, 82], "cluster_validation_dir": 13, "cluster_validation_info": 21, "cluster_validation_summari": [19, 21], "cluster_validation_summary_t": 22, "cluster_validation_summary_tukei": 22, "cluster_volum": [5, 19], "cluster_volume_in_cubic_mm": 26, "cluster_volume_summari": 19, "clusters_path": 18, "co": 60, "code": [2, 23, 31, 41, 45, 69, 72], "codebas": 1, "col_num": 15, "col_w_label": 15, "cold": 1, "collabor": 1, "collaps": 24, "collapse_hierarchi": [24, 25, 82], "collapsed_region": [15, 24], "collapsed_region_nam": [15, 24], "color": [3, 23], "color_arg": 69, "column": [0, 3, 5, 6, 7, 8, 12, 14, 15, 17, 19, 23, 24, 33, 36, 44, 45, 60, 65, 68, 69, 87, 88, 103], "com": 2, "combin": 24, "command": [1, 2, 5, 13, 19, 20, 22, 24, 26, 27, 33, 34, 39, 46, 49, 67, 71, 75, 77, 82, 86, 88, 91, 99], "command_log": [0, 33], "comment": 29, "commit": 2, "common": [1, 2, 82], "compact": 33, "compar": [5, 8], "comparison": [0, 5, 6, 7, 8, 12, 22, 99], "complet": [0, 33], "compon": [26, 65], "compris": 23, "comput": [0, 2], "concaten": 21, "conda": 2, "condit": [0, 5, 6, 7, 8, 19, 22, 25, 65, 69, 70, 79, 82, 88, 90, 92], "condition1_sample01_": [5, 19], "condition1_sample02_": [5, 19], "condition2_sample03_": [5, 19], "condition2_sample04_": [5, 19], "condition_1": [6, 7, 8], "condition_2": [6, 7, 8], "condition_column": [5, 6, 7, 8], "condition_prefix": 5, "condition_selector": [5, 6, 7, 8, 9, 25, 82], "config": [0, 1, 22, 32, 33, 82], "config_fil": 29, "config_path": 33, "configpars": 29, "configur": [0, 2, 28, 29, 32, 33, 82], "confirm": 2, "connect": [26, 65], "consid": [0, 5, 102], "consol": 28, "consolid": 13, "construct": 30, "contain": [5, 6, 7, 8, 13, 23, 30, 31, 33, 44, 52, 60, 67, 69, 78, 86, 88, 105, 108], "content": [0, 33, 94], "context": 0, "context1": 0, "context2": 0, "contrast": [0, 10, 99], "contrast_vox_p_tstat1_q": 0, "control": [0, 14, 17, 22, 29, 68, 88, 91], "control_": 0, "control_avg": 0, "control_sample01_cell_density_data": 0, "control_sample01_cfos_rb4_atlas_space_z": 68, "control_sample01_fil": 88, "control_sample01_rb4_atlas_space_z": 0, "control_sample01_regional_cell_dens": 0, "control_sample02_cell_density_data": 0, "control_sample02_rb4_atlas_space_z": 0, "control_v_treat": 0, "control_v_treatment_vox_p_tstat1": 0, "control_v_treatment_vox_p_tstat1_q0": 0, "control_v_treatment_vox_p_tstat2": 0, "control_v_treatment_vox_p_tstat2_q0": 0, "conveni": 29, "convent": [0, 5, 13, 19, 31], "convers": [31, 38, 75], "convert": [0, 12, 35, 36, 38, 42, 43, 44, 48, 50, 60, 80, 96, 103], "convert_dtyp": [38, 47, 82], "coordin": [0, 30, 36, 44, 45, 60, 65, 87], "copi": [0, 2, 18, 22, 33, 73, 74, 78, 82, 85, 90, 94, 104], "copy_fil": [32, 33, 82], "copy_nii_head": [82, 104, 107], "copy_specific_slic": [78, 81, 82], "copy_stats_fil": [18, 25, 82], "copy_tif": [0, 1, 81, 82], "core": [1, 3, 15, 16, 23, 24, 65, 68, 69, 82], "corr_factor": [6, 7, 8], "correct": [1, 6, 7, 8, 10, 11, 18, 72, 99], "correl": 96, "correlation_map": 96, "correspond": [13, 36, 44, 60], "could": 49, "count": [0, 24, 26, 44, 65, 79, 87, 103], "count_cel": [25, 26, 82], "count_cells_in_region": [65, 70, 82], "count_fil": [79, 81, 82], "counterpart": 93, "cp": [18, 21, 22, 25, 82], "cr": 60, "creat": [0, 2, 5, 6, 7, 8, 13, 16, 24, 30, 44, 59, 99], "create_design_ttest2": [82, 98, 99], "create_resampled_nii": [59, 62, 82], "criteria": 24, "criterion": 24, "crop": [0, 1, 25, 26, 31, 32, 82], "crop_outer_spac": [25, 26, 82], "crucial": 0, "cstat": [0, 1, 12, 22, 25, 82], "cstats_brain_model": [0, 3, 22], "cstats_crop": [0, 4], "cstats_fdr": [1, 10, 12, 14, 20, 99], "cstats_fdr_rang": [1, 11, 99], "cstats_find_incongru": 12, "cstats_find_incongruent_clust": 0, "cstats_group_data": [0, 13, 22], "cstats_if_mean": 17, "cstats_index": [0, 14, 16, 22, 23, 24], "cstats_legend": [0, 15, 22], "cstats_mean_if": [0, 14, 19], "cstats_mean_if_summari": [0, 14, 17], "cstats_mirror_indic": [1, 10, 20], "cstats_org_data": [0, 13, 18, 19, 25, 82], "cstats_prism": [0, 14, 19, 22], "cstats_summari": [1, 22, 26], "cstats_sunburst": [0, 23], "cstats_tabl": [0, 14, 15, 19, 22, 24], "cstats_valid": [1, 5, 10, 13, 18, 20, 23, 25, 26, 82], "csv": [1, 3, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 33, 36, 44, 50, 60, 65, 66, 67, 68, 69, 87, 88, 91, 103], "csv_file": [5, 19, 88], "csv_path": [68, 69], "csv_pattern": 21, "ctrl": [0, 2], "cubic": 61, "curl": 2, "current": [0, 5, 14, 22, 26, 34, 46, 60, 61, 65, 69, 73, 74, 88], "current_r": 60, "cursor": 0, "custom": [3, 15, 23, 24, 27, 28, 69, 70, 82], "custom_atla": 68, "custommofncompletecolumn": [32, 33, 82], "customtimeelapsedcolumn": [32, 33, 82], "customtimeremainingcolumn": [32, 33, 82], "cvd": [0, 18, 22], "cwd": [34, 46], "cycl": 0, "czi": [0, 30, 35, 36, 37, 39, 44, 54, 60, 61, 67, 75, 79, 100, 104], "czi_path": 30, "d": [0, 2, 38, 39, 61, 69, 75, 83, 85, 86], "d32525": 69, "d_type": 43, "dan": 0, "daniel": 1, "danrij": [1, 2], "dark": 33, "data": [1, 5, 6, 7, 8, 10, 14, 16, 18, 19, 22, 23, 30, 31, 36, 38, 41, 44, 45, 59, 60, 61, 65, 66, 67, 87, 92, 94], "data_col": 5, "data_col_pool": 5, "data_column_nam": 19, "data_df": 5, "data_typ": [10, 16, 30, 38], "databas": 29, "database_config": 29, "datafram": [5, 6, 7, 8, 15, 17, 24, 36, 44, 60, 65, 68, 69, 87], "dataset": [1, 34], "date": 0, "dbarbosa": 1, "deactiv": 2, "decor": 33, "decreas": 12, "deep_avg": 0, "deeper": 24, "default": [0, 2, 16, 23, 30, 31, 33, 34, 45, 46, 59, 61, 64, 65, 67, 68, 69, 89, 92, 94, 104, 108], "defin": [1, 10, 27, 28, 29, 30], "define_zarr_to_nii_output": [47, 48, 82], "definit": 0, "delet": [0, 22], "delimit": 0, "densens": 69, "densiti": [0, 1, 5, 6, 7, 8, 12, 18, 26, 65, 69], "density_col": 5, "density_in_clust": [25, 26, 82], "density_in_cluster_parallel": [25, 26, 82], "density_typ": [18, 65], "deped": 2, "depend": [2, 61], "depth": [23, 24], "depth_": 23, "depth_col": 24, "deriv": [36, 44], "descend": 24, "describ": [0, 6], "descript": [0, 1, 82], "design": [0, 27, 28, 99], "design_fts_path": 99, "desir": [0, 2, 30, 44, 87, 104], "desired_axis_ord": [30, 34, 46], "dest": [18, 27, 28], "dest_dir": 85, "dest_path": 18, "destin": [18, 85], "detail": [0, 2, 33], "detect": [36, 44, 60], "detect_outli": [95, 97, 98], "determin": [0, 24, 38, 45, 72], "dev": 2, "deviat": [49, 102], "devnul": 71, "df": [5, 6, 7, 8, 12, 17, 24, 68, 69, 87], "df_collaps": 24, "df_origin": 24, "df_sort": 24, "df_w_rgb": 15, "di": 92, "diagon": 45, "dict": [23, 29], "dictionari": [23, 29], "diff": 0, "differ": [0, 5, 12, 17, 49, 68, 105], "difference_of_gaussian": [49, 62, 82], "diffus": 0, "dilat": [52, 92], "dilate_mask": [82, 92, 98], "dimens": [30, 39, 61, 92, 106], "dir": [1, 5, 17, 19, 22, 24, 26, 33, 39, 65, 68, 73, 74, 75, 77, 78, 82, 84, 86, 89, 90, 100], "dir_nam": [0, 22, 88, 91], "direct": [0, 5, 10, 12, 45, 72, 92], "directioanl": 0, "directli": [25, 82], "directori": [0, 5, 10, 13, 14, 15, 16, 18, 22, 30, 33, 34, 39, 46, 65, 69, 73, 74, 75, 77, 78, 79, 82, 84, 86, 88, 90, 104], "dirnam": [0, 22], "displai": [0, 27, 28, 33], "distrobut": 2, "distrubut": 0, "do": [0, 30, 58, 69, 105], "doc": 0, "document": [0, 2, 83], "doe": [0, 1, 2, 5, 12], "dog": [1, 62, 82], "don": [0, 30, 69], "done": 0, "doubl": [0, 69], "download": 2, "dr": 1, "drag": 0, "draw": 0, "drive": 2, "drop": 0, "drug": 0, "drug_sample01_atlas_space_z": 0, "dry_run": 89, "dsi": [0, 3], "dsi_studio": 3, "dtype": [38, 44, 92, 104], "dunnett": 69, "durat": 33, "dure": 0, "dynam": 24, "e": [0, 2, 5, 6, 7, 8, 10, 11, 18, 21, 22, 26, 27, 28, 33, 36, 39, 44, 45, 49, 50, 55, 60, 67, 68, 69, 73, 74, 75, 79, 82, 84, 86, 91, 98, 99, 100, 104, 105, 108], "each": [0, 3, 5, 6, 7, 8, 10, 13, 14, 17, 22, 23, 24, 26, 33, 36, 39, 44, 60, 61, 62, 65, 66, 67, 68, 69, 73, 74, 82], "earli": 1, "earliest": 24, "easi": 0, "easier": 0, "echo": [0, 2], "edg": [49, 61], "edit": [0, 2], "editor": 0, "edu": [1, 2], "effect": [0, 5, 6, 7, 8, 10], "effect_s": [0, 1, 25, 82], "effect_sizes_by_sex__absolut": [9, 25, 82], "effect_sizes_by_sex__rel": [9, 25, 82], "effect_sizes_sex_ab": [0, 7], "effect_sizes_sex_rel": [0, 8], "effici": 0, "either": [2, 30, 34, 45, 46, 87], "elaps": 33, "elapsed_when_finish": 33, "element": 0, "els": 0, "empti": [0, 27, 28], "enabl": [2, 33, 86], "end": [0, 33], "enhanc": [27, 28, 33], "enough": [0, 49], "ensur": [0, 24, 44, 49], "enter": [0, 7, 8], "entri": 0, "environ": 2, "environment": 0, "epilog": [27, 28], "error": [5, 6, 7, 8, 71], "essenti": 2, "establish": 24, "etc": [1, 2, 5, 10, 108], "ev": 0, "ev1": 0, "ev2": 0, "ev3": 0, "ev4": 0, "eval": 2, "everi": 38, "exact": [5, 6, 7, 8], "exactli": [5, 6, 7, 8], "exampl": [1, 2, 5, 12, 13, 16, 19, 23, 27, 28, 29, 33, 45, 69, 75, 83, 88, 100, 104], "exce": 44, "exclud": [0, 44, 60, 79, 82, 98], "exec": [0, 22], "execut": [0, 33], "exist": [0, 30], "exlud": 0, "exp": [1, 22, 75, 77], "exp1": 33, "exp2": 33, "exp_dir": 0, "exp_dir_path": 33, "exp_path": 39, "expand": [0, 87], "expect": 5, "expected_higher_mean_group": 12, "expected_lower_mean_group": 12, "experi": [1, 18, 26, 33, 39, 67, 73, 74, 75, 77, 86], "explicit": 33, "explor": 1, "export": 2, "extend": [0, 1, 29, 62, 82], "extend_one_side_3d_arrai": [55, 62, 82], "extens": [0, 55, 61, 86], "extern": 0, "extra": [0, 2], "extract": [0, 30, 47, 82], "extract_resolut": [30, 32, 82], "extract_unique_regions_from_fil": [15, 25, 82], "extrem": 0, "ey": 0, "f": [0, 7, 8, 14, 17, 22, 68, 71, 72, 83, 88, 105, 108], "f1": 0, "f2": 0, "f3": 0, "face": 0, "factor": 72, "fall": 44, "fals": [23, 24, 29, 30, 31, 33, 34, 45, 46, 64, 68, 72, 78, 84, 87, 89, 106, 108], "fast": 0, "faster": [0, 70, 82], "fdr": [0, 1, 11, 25, 82, 96, 99], "fdr_path": 10, "fdr_rang": [0, 1, 25, 82], "featur": [0, 1, 49, 58, 79], "featurenam": 2, "few": 2, "fiber": 0, "field": 72, "file": [0, 2, 5, 13, 14, 15, 17, 18, 19, 20, 22, 23, 26, 29, 30, 31, 33, 34, 35, 36, 39, 44, 45, 46, 49, 52, 54, 56, 58, 60, 65, 66, 67, 68, 78, 79, 80, 82, 85, 86, 87, 88, 90, 91, 101, 108], "file_path": [15, 20, 30, 33, 56, 87], "filenam": [0, 17, 33, 68, 88, 89], "fill": 0, "fill_na_with_last_known": [24, 25, 82], "filter": [0, 44, 61, 68, 83], "filter_datafram": [6, 7, 8, 9, 25], "filter_func": 61, "filter_region_id": [68, 70, 82], "final": [0, 108], "find": [0, 12, 21, 22, 31, 34, 46, 52, 56, 83], "find_and_copy_fil": [82, 85, 90], "find_bounding_box": [31, 32, 82], "find_incongruent_clust": [1, 25, 82], "find_largest_h5_fil": [34, 47, 82], "find_largest_tif_fil": [46, 47, 82], "find_matching_directori": [18, 25, 82], "find_max_intens": [56, 62, 82], "finder": 0, "first": [0, 2, 5, 17, 19, 22, 33, 34, 45, 49, 68], "fisher": 96, "fix": [0, 38, 103, 104, 105, 108], "fixed_imag": 71, "fixed_image_path": 71, "fixed_img_path": [105, 108], "fixed_reg_in": [104, 105, 106], "fixed_scal": 38, "fixed_scale_rang": 38, "flag": [0, 23, 29, 99], "flank": 69, "flip": [0, 94], "float": [0, 10, 11, 30, 38, 44, 59, 60, 65], "float32": [30, 38, 102], "float64": 38, "flourish": 23, "fluoresc": 1, "fo": [0, 92], "focu": 27, "folder": [1, 13, 39, 67, 75, 79, 86, 88, 105, 108], "follow": [0, 2, 13, 19, 22, 87, 88, 91], "form": 0, "form_cod": 45, "format": [0, 11, 22, 27, 28, 30, 87, 91], "formatter_class": [27, 28], "forward": [82, 105, 107], "forward_warp": [82, 105, 107], "fos_seg_ilastik": 92, "fos_seg_ilastik_2": 92, "fos_wo_halo": 92, "found": [2, 5, 6, 7, 8, 17, 30, 33, 68], "fragment": 99, "frequent": 0, "fri": [103, 105], "from": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 82, 84, 85, 86, 87, 88, 89, 91, 93, 94, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108], "front": 55, "fsl": [0, 1, 2, 99], "fslconf": 2, "fslcpgeom": 0, "fsldir": 2, "fsley": 0, "fsleyes_lut": 0, "fslmath": 0, "fslpy": 1, "fslroi": 0, "fslstat": 0, "fstat": 0, "fstat1": 0, "fstat2": 0, "fstat3": 0, "full": [0, 30, 33, 34, 46, 67, 75, 81, 82, 92, 105, 106], "full_res_dim": [92, 106], "full_res_img": [0, 39], "func": 33, "function": [0, 5, 6, 7, 8, 31, 32, 33, 44, 61, 82], "fund": 1, "fuse": 0, "futur": [2, 49], "fuzzi": 0, "fzf": 0, "g": [0, 2, 3, 5, 6, 7, 8, 10, 11, 12, 21, 22, 33, 36, 44, 45, 49, 50, 60, 68, 69, 79, 82, 98, 99, 104, 105, 108], "g1": 49, "g2": 49, "gap": 0, "gaussian": [0, 49], "gener": [0, 10, 16, 17, 23, 36, 52, 68], "general_region": [3, 69], "generate_summary_t": [19, 25, 82], "generate_sunburst": [16, 25, 82], "generate_wirefram": [51, 52, 62], "get": [0, 26, 30, 31, 33, 37, 41, 45, 65, 95], "get_all_region_id": [68, 70, 82], "get_atlas_region_at_coord": [65, 70, 82], "get_dims_from_tif": [39, 47, 82], "get_dir_name_from_arg": [32, 33, 82], "get_fill_color": [24, 25, 82], "get_groups_info": [82, 98, 99], "get_max_region_id_from_csv": [68, 70, 82], "get_region_detail": [68, 69, 70, 82], "get_sampl": [32, 33, 82], "get_top_regions_and_percent_vol": [24, 25, 82], "git": [0, 2], "github": [1, 2, 79, 83, 99], "given": [10, 16, 29, 33, 52, 65, 92], "glm": 0, "glob": [0, 30, 33, 39, 75, 85, 100, 104], "glob_pattern": 33, "global": [0, 29], "go": [0, 2], "googl": [0, 2], "gov": [0, 6], "gradient": 0, "greater": [5, 36, 64, 92], "green": 33, "gregori": 1, "grep": 0, "grid": 44, "group": [0, 5, 6, 7, 8, 10, 12, 17, 22, 24, 65, 68, 69, 87, 99], "group1": [0, 5, 10, 14, 17, 22, 68, 69], "group1_avg": 10, "group1_siz": 99, "group2": [0, 5, 10, 14, 17, 22, 68, 69], "group2_avg": 10, "group2_siz": 99, "group3": [5, 14, 17, 68], "group4": 5, "group_1": [14, 17, 68], "group_2": [14, 17, 68], "group_3": [14, 17, 68], "group_bilateral_data": [1, 25, 82], "group_column": 69, "group_hemisphere_data": [13, 25, 82], "groupa": 12, "groupb": 12, "gubra": [20, 94], "gui": 0, "guid": [1, 2, 79, 99], "guidanc": 1, "gz": [0, 3, 4, 5, 10, 11, 14, 16, 20, 23, 26, 30, 31, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 50, 52, 53, 54, 56, 57, 59, 60, 61, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 77, 80, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108], "h": [0, 83], "h5": [0, 30, 34, 36, 37, 39, 44, 60, 61, 75, 100, 104], "h5_to_tif": [1, 47, 82], "ha": [0, 3, 5, 12, 15, 19, 24, 34, 44, 45, 68, 69, 103], "handl": [0, 5, 6, 7, 8, 27, 28, 30, 33], "has_hemispher": 5, "have": [0, 1, 10, 22, 33, 36, 49, 72, 88, 91], "hdf5": [30, 34], "hdf5_path": [30, 34], "head": 0, "header": [0, 40, 59, 104], "headless": 0, "hedg": [6, 7, 8], "hedges_g": [6, 7, 9, 25], "heifet": [0, 1, 2, 79, 83, 99], "heifetslab": [1, 2], "help": [1, 12, 27, 28, 49, 79, 83], "helper": [32, 82], "helpformatt": 27, "hemi": [0, 69], "hemi_to_lr_avg": [0, 1, 82, 98], "hemispher": [0, 3, 5, 10, 13, 60, 93, 102], "here": [0, 2, 6], "hex": 69, "hg": [5, 22], "hidden": [0, 33], "hide": 0, "hierarchi": [0, 23, 25, 82], "higher": [0, 44], "higher_group": 22, "higher_mean_group": [5, 12], "highest": 34, "highlight": 49, "histori": [0, 2], "hit": 0, "hold": 29, "home": [0, 2], "hot": 1, "how": [0, 99], "hsd": 5, "html": [79, 99], "http": [0, 2, 6, 23, 79, 83, 99], "hypothesi": 5, "i": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 17, 22, 23, 24, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 70, 72, 75, 77, 78, 79, 82, 83, 86, 87, 90, 91, 92, 94, 96, 99, 100, 102, 103, 104, 105, 106, 108], "iba1_rb20": 92, "iba1_rb20_clust": 92, "iba1_seg_ilastik_2": 92, "ic": 50, "icon": 2, "id": [0, 3, 10, 12, 16, 19, 23, 31, 44, 50, 52, 60, 65, 68, 69], "id_path": [3, 65, 69], "ideal": [0, 49], "ident": 87, "identifi": 24, "idisco": [0, 1], "ie": [77, 79], "if_img": 67, "if_outli": [82, 97, 98], "ignor": 30, "ilastik": [1, 2, 31, 75, 77, 78, 79, 80], "ilastik_execut": [0, 31, 77, 79], "ilastik_pixel_classif": [0, 1, 81, 82], "ilastik_project": [31, 79], "ilastik_segment": [0, 78], "ilastiksegment": 80, "ilp": [0, 77, 79], "imag": [3, 4, 10, 14, 16, 23, 26, 30, 31, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 48, 49, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 72, 75, 79, 80, 81, 82, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108], "image_io": [0, 1, 82], "image_nam": [14, 66], "image_path": 72, "image_pir": 45, "image_pir_appli": 45, "image_to_warp_from_atlas_spac": 106, "image_tool": [0, 1, 82], "img": [0, 4, 14, 16, 20, 23, 30, 36, 38, 40, 41, 43, 44, 48, 49, 54, 58, 59, 63, 92, 94, 102, 104, 106], "img_1": 0, "img_1_bin": 0, "img_1_bin_inv": 0, "img_2": 0, "img_avg": [1, 10, 53], "img_bbox": [0, 54], "img_crop": 4, "img_dog": [0, 49], "img_extend": [0, 55], "img_in_atlas_spac": 104, "img_io": [1, 32, 82], "img_max": [0, 56], "img_pad": [0, 57], "img_path": [30, 43, 48], "img_rb": [0, 58], "img_resampl": [0, 59, 75], "img_resample_point": [0, 60], "img_spatial_avg": [0, 61], "img_to_npi": [1, 47, 82], "img_to_point": [1, 47, 82], "img_tool": [1, 32, 82], "img_transpos": [0, 63], "img_uniqu": [0, 64, 68], "img_wb": 3, "immunofluo": [0, 100], "immunofluoresc": [0, 1, 14, 66, 67, 81, 82], "immunolabel": 0, "immunostain": 10, "implement": 49, "import": [0, 27, 28, 29, 33, 71, 106], "improv": [0, 2, 27], "inactiv": 91, "includ": [0, 14, 30, 33, 44, 75], "incongru": 12, "increas": [0, 3, 12, 33, 86], "increment": [2, 44], "indent": [27, 28], "indent_incr": [27, 28], "index": [0, 1, 3, 10, 14, 25, 26, 31, 82], "indic": [0, 5, 10, 12, 20, 36, 38, 45], "individu": [24, 87], "inferior": 45, "info": [1, 18, 21, 33, 79, 99, 104], "info_csv_path": [16, 23], "inform": [0, 2, 6, 10, 65], "inherit": [27, 28], "ini": [0, 22, 29, 33], "init": 2, "initi": [0, 1, 27, 28, 29, 31, 33], "initialize_progress_bar": [32, 33, 82], "inlin": 29, "innacuraci": 0, "inp": [72, 103, 108], "input": [0, 3, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 17, 19, 23, 34, 36, 37, 38, 39, 44, 45, 46, 49, 50, 58, 60, 61, 64, 68, 69, 72, 75, 77, 87, 93, 99, 100, 101, 102, 103, 104, 105, 108], "input_imag": 59, "input_image_path": 99, "input_img": [64, 102], "input_img_lh": 93, "input_img_lravg": [93, 101], "input_img_rh": 93, "input_img_s100_lravg": 93, "input_name_rev_cluster_index": 10, "input_path": [10, 11, 23], "input_sunburst": 23, "insensit": 83, "insert": 2, "insid": 52, "inspir": 1, "instal": [0, 1], "instead": [30, 49], "institut": 1, "instruct": [0, 2], "int": [28, 30, 31, 45, 59, 61, 64, 65, 72, 94], "int16": 38, "int32": 38, "int64": 38, "int8": 38, "integ": 38, "intend": [0, 49], "intenisti": 0, "intens": [0, 10, 12, 14, 17, 31, 36, 38, 50, 52, 56, 62, 65, 66, 67, 68, 82, 95, 98, 102], "interact": 0, "interest": [0, 1, 5, 6, 7, 8, 49, 58], "interior": [0, 72], "intern": 52, "interpol": [31, 59, 92, 104, 105, 106, 108], "interpret": 0, "introduc": 12, "inv": 108, "invers": [82, 107], "invert": 0, "invoc": [27, 28], "involv": 86, "io": [60, 79, 83, 99], "io_h5_to_tif": [0, 34], "io_img": [0, 1, 47, 82], "io_img_to_npi": [0, 35], "io_img_to_point": [0, 36, 44], "io_metadata": [0, 39, 106], "io_nii": [0, 1, 47, 82], "io_nii_hd": [0, 40], "io_nii_info": [0, 41], "io_nii_to_tif": [0, 42], "io_nii_to_zarr": [0, 43], "io_points_to_img": [0, 44], "io_reorient_nii": [0, 45], "io_tif_to_tif": [0, 46], "io_zarr_to_nii": [0, 48], "is_fil": 30, "isol": 0, "isotrop": [30, 60], "issu": 2, "item": [0, 33], "iter": [33, 92], "its": [29, 40, 41, 45, 52, 56, 61, 100, 101], "j": 0, "just": 0, "k": [0, 93, 99, 101], "keep": [0, 49], "kei": [23, 29, 88], "kernel": [0, 61, 93, 101], "kernel_s": 61, "keyboard": 0, "keyword": 33, "kill": [0, 71], "know": 0, "kwarg": [27, 28, 33], "l": [0, 12, 45, 72], "lab": [0, 1], "label": [0, 1, 5, 12, 14, 15, 17, 18, 19, 23, 26, 50, 65, 68, 77, 79, 80], "label_dens": [5, 19, 26, 65], "label_volum": [5, 19], "labels_to_mask": [1, 81, 82], "larg": [0, 6, 7, 8], "larger": [0, 24, 49, 58], "largest": [0, 10, 34, 46, 52], "last": [0, 5, 65, 99], "latest": 2, "launch": 0, "layer": [0, 15, 24], "learn": 0, "least": 49, "leav": 58, "left": [0, 2, 3, 13, 45, 55, 60, 72], "legaci": 31, "legend": [0, 1, 22, 25, 82], "len": 33, "less": [0, 5, 58, 92], "letter": [31, 41, 45, 72], "level": [0, 23, 24], "lh": [0, 5], "lh_file": 93, "libbz2": 2, "libffi": 2, "liblzma": 2, "libncurses5": 2, "libncursesw5": 2, "librari": [27, 28], "libreadlin": 2, "libsqlite3": 2, "libssl": 2, "lightsheet": [0, 1], "like": [29, 41], "likewis": 22, "line": [0, 1, 27, 33, 67, 83], "linear": [59, 72, 104, 108], "link": [0, 2], "linux": [0, 1], "list": [1, 5, 6, 7, 8, 11, 18, 26, 31, 33, 36, 52, 64, 65, 69, 73, 74, 75, 78, 83, 91], "list_of_exp_dir_path": 91, "live": 0, "ll": 0, "llvm": 2, "load": [0, 4, 26, 30, 33, 34, 37, 40, 41, 44, 46, 49, 54, 55, 56, 58, 61, 64, 75, 92, 94, 95, 100], "load_3d_img": [30, 32, 82], "load_3d_tif": [46, 47, 82], "load_and_prepare_point": [44, 47, 82], "load_config": [32, 33, 82], "load_czi": [30, 32, 82], "load_data": [17, 25, 68, 70, 82], "load_h5": [30, 32, 34, 47, 82], "load_image_metadata_from_txt": [30, 32, 82], "load_mask": [82, 92, 98], "load_nii": [30, 32, 82], "load_nii_subset": [30, 32, 82], "load_text_from_fil": [32, 33, 82], "load_tif": [30, 32, 49, 58, 62, 82], "load_zarr": [30, 32, 82], "local": 2, "locat": [0, 22, 36, 60], "log": [1, 33], "log_command": [32, 33, 82], "long": 0, "long_nam": 18, "longer": 0, "look": 68, "loop": [0, 5], "lower": [0, 75], "lp": 45, "lsfm": [0, 1], "lut": [0, 68], "m": [0, 2, 3, 7, 8, 20, 26, 64, 65, 71, 72, 83, 86, 92, 95, 105, 106, 108], "m2": 72, "ma": [0, 10, 11, 92, 99], "maco": 0, "mai": [0, 12, 58, 101], "main": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "main_effect_": 0, "maintain": [1, 24], "mainten": 1, "make": [1, 2, 10, 22, 89], "make_par": 30, "malenka": 1, "man": 0, "manag": [0, 2, 27, 28], "mani": 0, "manipul": 0, "manual": 0, "map": [0, 1, 10, 11, 12, 96], "mask": [0, 10, 11, 26, 52, 72, 74, 77, 80, 82, 93, 95, 98, 99, 101], "mask_ccfv3_2020_30um_rh_wo_root_ventricles_fibers_ob": 0, "mask_condit": 92, "mask_ndarrai": 92, "mask_path": [10, 11, 72, 92, 99], "mat_fil": 99, "match": [0, 1, 5, 6, 7, 8, 12, 18, 21, 31, 33, 75, 82, 85, 88, 92, 95, 100, 103, 104, 106, 108], "mathemat": 0, "matrix": [0, 41, 45, 99], "max": [0, 1, 38, 62, 82], "max_cluster_id": 10, "max_decim": 11, "max_help_posit": [27, 28], "max_region_id": 68, "max_valu": 24, "maximum": [44, 56, 68], "md": 103, "mdma": [0, 69, 91], "mdma_sample01": [0, 69], "mean": [0, 3, 12, 14, 17, 61, 66, 67, 68, 82, 95, 98, 102], "mean_if": [1, 25, 82], "mean_if_in_seg": 67, "mean_if_intens": [14, 17, 19, 68], "mean_if_summari": [1, 25, 82], "mean_intensities_dict": 67, "mean_intensity_in_brain": [82, 92, 98], "mean_intensity_within_mask": [95, 97, 98], "mean_std_count": [8, 9, 25], "meandiff": 69, "meaning": 24, "means_in_mask_plot": 95, "measur": [0, 14, 26, 66, 67], "medium": [6, 7, 8], "meet": 24, "mehrdad": 1, "member": 0, "memori": 33, "menu": 2, "messag": [27, 28, 71], "met": 24, "metacel": 1, "metadata": [0, 1, 30, 32, 34, 37, 46, 47, 82, 103, 106], "metadata_from_3d_tif": [46, 47, 82], "metadata_from_h5": [34, 47, 82], "metadata_path": 39, "metadata_rel_path": 106, "metavar": [27, 28], "meth": [0, 69], "meth_sample23": [0, 69], "method": [27, 28, 29, 49], "mi": [103, 104], "microglia": [82, 98], "micromet": [30, 59, 60], "micron": [0, 16, 23, 30, 31, 34, 39, 46, 65, 75], "microscopi": 1, "microsoft": 2, "mid": 0, "middl": 0, "might": 49, "millimet": 30, "mimic": [31, 75], "min": [2, 38, 62, 82], "min_cluster_size_in_voxel": [0, 10], "min_ext": [31, 64], "min_siz": 10, "minext": 31, "minim": 0, "minimum": 24, "minu": 0, "miracl": [1, 31, 75, 106], "mirror": [0, 1, 10, 20, 82, 93, 98, 101], "misc": 0, "miss": 0, "mkdir": 0, "mm": [0, 23, 30], "mode": [0, 31, 33], "model": 0, "modif": 0, "modifi": [27, 28], "modul": [0, 1, 9, 25, 32, 47, 51, 62, 70, 76, 81, 90, 97, 98, 107], "mofncompletecolumn": 33, "more": [2, 58], "most": 0, "mous": 0, "move": [0, 13, 24, 86, 105], "movement": 0, "moving_imag": 71, "moving_image_path": 71, "moving_img": [26, 105], "moving_img_path": [105, 106, 108], "much": 0, "mul": 0, "multi": 0, "multilabel": [104, 105, 108], "multipl": [22, 27, 28, 31, 36, 44, 99], "multipli": 3, "must": [0, 61], "mv": 0, "n": [44, 89, 102], "n4": 72, "name": [1, 5, 6, 7, 8, 10, 13, 14, 15, 17, 18, 19, 22, 26, 33, 65, 68, 69, 82, 86, 90, 91, 103, 104], "namespac": [27, 28, 67], "nano": 0, "narg": [27, 28], "nativ": [0, 31, 70, 82, 103, 104, 106], "native_": 106, "native_atlas_split": [0, 65], "native_cluster_index": 26, "native_cluster_index_crop": 26, "native_img": 106, "native_spac": 108, "navig": [0, 2], "ncbi": [0, 6], "ndarrai": [10, 14, 16, 23, 30, 31, 34, 35, 36, 38, 43, 44, 45, 46, 48, 49, 52, 55, 58, 59, 60, 61, 63, 65, 67, 72, 75, 80, 92, 94, 96, 102, 106], "ndarray_axis_ord": [30, 34, 46], "ndimag": 75, "nearest": [59, 92, 106], "nearestneighbor": [103, 104, 108], "necessari": 33, "need": [0, 10, 14, 19, 22, 29, 47, 49, 68, 82, 88, 105], "neg": 45, "neighbor": [0, 59, 61, 92, 106], "neither": [5, 6, 7, 8], "new": [0, 1, 2, 13, 18, 20, 24, 45, 59], "new_affin": 45, "new_imag": 50, "new_img": 104, "new_nii": 45, "new_text": 89, "new_valu": 92, "next": [0, 10, 14, 26, 34, 39, 46, 65, 66, 67, 72, 75, 77, 99, 100, 101, 102], "ngregori": 1, "nib": 30, "nibabel": [1, 40, 41, 45, 59], "nick": 1, "nida": 1, "nifti": [0, 16, 30, 31, 41, 45, 52, 53, 56, 59], "nifti1": [45, 59], "nifti1imag": [30, 45, 59], "nih": [0, 6], "nii": [0, 3, 4, 5, 10, 11, 14, 16, 20, 23, 26, 30, 31, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 50, 52, 53, 54, 56, 57, 59, 60, 61, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 77, 80, 84, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108], "nii_axis_cod": [41, 47, 82], "nii_hd": [1, 47, 82], "nii_img": 104, "nii_info": [1, 47, 82], "nii_path": [30, 42, 45], "nii_path_or_nii": [30, 32, 82], "nii_to_ndarrai": [30, 32, 43, 47, 82], "nii_to_tif": [1, 47, 82], "nii_to_zarr": [1, 47, 82], "nii_voxel_s": [30, 32, 82], "nlm": [0, 6], "node": 0, "nois": [0, 49, 58], "non": [0, 10, 12, 36, 45, 62, 82, 86], "none": [4, 5, 10, 14, 17, 24, 27, 28, 30, 31, 33, 36, 38, 44, 45, 60, 66, 68, 72, 92, 93, 101, 105, 106], "nor": [5, 6, 7, 8], "notabl": 0, "note": [1, 2, 27, 28, 29, 30, 48, 103], "now": 69, "np": [30, 44, 45, 52, 61, 67, 75, 94, 96, 106], "npy": 35, "nuclei": [0, 49], "nullifi": 0, "num_contrast": 99, "num_group": 69, "num_of_items_to_iter": 33, "number": [0, 15, 24, 26, 36, 44, 60, 61, 62, 65, 78, 79, 82, 87, 92, 94, 99], "numpi": [0, 1, 30, 31, 36, 38, 44, 52, 59, 60, 61, 65], "o": [0, 4, 10, 21, 22, 26, 35, 36, 37, 42, 43, 44, 48, 50, 53, 54, 55, 59, 61, 71, 78, 79, 80, 89, 92, 95, 100, 104, 105, 106, 108], "object": [0, 5, 26, 29, 30, 33, 59, 65], "obtain": 60, "oc": 50, "occurr": [0, 87], "ochann": [55, 100], "ochann_extend": 55, "odt": [0, 50], "off": 0, "offer": 0, "often": [0, 77], "ok": [0, 2, 22], "old": 0, "old_imag": 50, "old_text": 89, "om": [36, 37, 44, 60, 61, 86], "one": [0, 5, 12, 22, 44, 49, 55, 87], "onewordcondit": 69, "onli": [22, 24, 87], "onlin": [0, 2], "op": 99, "open": [2, 71], "opencv": [31, 49, 58], "openpyxl": 15, "openssl": 2, "oper": [0, 89], "optim": 0, "option": [1, 2, 5, 18, 23, 27, 28, 30, 31, 34, 36, 38, 44, 46, 60, 64, 65, 69, 72, 82, 87, 92, 98], "option_str": [27, 28], "orang": 33, "order": [0, 14, 17, 19, 22, 24, 30, 31, 59, 68, 72, 75, 83, 106], "org_data": [1, 25, 82], "organ": [0, 5, 13, 18, 19, 79, 83], "organize_validation_data": [18, 25, 82], "orient": [30, 31, 41, 45, 48, 72], "orientation_str": 31, "origin": [13, 31, 45, 59, 94], "original_dimens": [105, 106], "original_dir": 0, "original_res_in_um": 59, "ort": [0, 72], "ort_cod": 72, "other": [0, 1, 2, 10, 20, 22, 34, 38, 46, 58, 80, 82, 98], "other_abbrevi": [15, 24], "other_abbreviation_defin": [15, 24], "other_mask": 92, "otherwis": [0, 24], "our": 2, "out": [0, 1, 2, 71, 82, 98], "out_dir": 69, "outer": 26, "outer_bound": 26, "outer_xmax": 26, "outer_xmin": 26, "outer_ymax": 26, "outer_ymin": 26, "outer_zmax": 26, "outer_zmin": 26, "outlier": 95, "outlin": 52, "output": [0, 1, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 26, 28, 30, 34, 36, 37, 39, 44, 45, 46, 48, 52, 60, 61, 66, 67, 68, 69, 72, 75, 77, 87, 93, 96, 100, 101, 102, 103, 104, 105, 106], "output_dir": [10, 16, 31, 42, 72], "output_fil": [14, 66], "output_file_path": 31, "output_imag": 59, "output_img": 4, "output_img_path": 60, "output_index": 10, "output_nam": [79, 80, 99], "output_path": [23, 26, 30, 43, 48, 49, 58, 67, 108], "output_prefix": 99, "output_rgb_lut": [16, 23], "outsid": [0, 44, 52], "outward": 0, "over": 0, "overrid": 23, "p": [0, 5, 10, 11, 12, 18, 45, 69, 72, 85, 87, 95, 96, 99], "p50": 1, "p_val_txt": 18, "p_value_threshold": [0, 10], "pack": [0, 87], "pack_point": [82, 87, 90], "packag": [0, 1, 83], "packed_df": 87, "pad": [0, 1, 31, 32, 61, 62, 72, 82, 105, 108], "pad_fract": [105, 106], "pad_width": 31, "page": [0, 1, 2], "pai": 0, "paint": 0, "pan": 0, "panda": [1, 44, 60, 87], "parallel": [0, 26, 30, 31, 61], "parallel_load": 30, "param": [6, 7, 8], "paramet": [0, 5, 6, 7, 8, 10, 11, 15, 16, 18, 23, 24, 28, 31, 34, 38, 39, 45, 46, 52, 61, 64, 67, 69, 72, 75, 78, 86, 89, 92, 94, 102, 103, 104, 106, 108], "parent": [0, 24, 30, 86], "parenthes": 0, "pars": [27, 29], "parse_arg": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "parse_color_argu": [69, 70, 82], "parser": [27, 28], "part": 0, "partial": 0, "pass": [0, 33, 99], "password": 2, "past": [0, 2, 23], "path": [1, 2, 4, 10, 11, 14, 16, 18, 21, 22, 23, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 50, 52, 54, 56, 60, 61, 63, 64, 65, 66, 67, 68, 72, 75, 77, 78, 79, 85, 86, 87, 88, 91, 95, 96, 99, 100, 102, 104, 105, 106, 108], "path_or_pattern": 30, "path_to_tif_dir": 86, "pathlib": 33, "pattern": [0, 18, 30, 33, 39, 84, 85, 95], "pattern1": 0, "pattern2": 0, "pd": [5, 6, 7, 8, 36], "pdf": [17, 68, 95], "pearson": 96, "pennmedicin": 1, "per": [0, 33, 79, 87], "percent": 57, "percent_vol": 24, "percent_vol_threshold": 24, "percentag": [24, 31], "perform": [0, 5, 10, 11, 17, 58, 68, 72, 89, 101, 102], "perform_t_test": [17, 25, 68, 70, 82], "perform_tukey_test": [5, 25, 82], "period": 2, "permiss": 0, "permut": 99, "permutations_per_frag": 99, "physic": 44, "pi": 1, "pip": [0, 1, 2], "pipe": 0, "pir": 45, "pixel": [0, 31, 49, 61, 77, 79, 102], "pixel_classif": [31, 32, 82], "place": 11, "placehold": 0, "plane": [30, 65], "plaqu": 0, "pleas": [1, 2], "plot": [0, 14, 16, 17, 19, 22, 23, 68, 69, 95], "plot_data": [17, 25, 68, 70, 82], "plote": 0, "point": [0, 36, 38, 44, 60, 87, 103], "points_compressor": [1, 82, 90], "points_csv_input_path": 60, "points_csv_output_path": 60, "points_csv_path": 44, "points_df": [36, 44], "points_ndarrai": [36, 44], "points_resampled_df": 60, "points_resampled_img": 60, "points_to_atla": [1, 82, 107], "points_to_img": [1, 47, 82], "pool": [5, 6, 7, 8, 13, 19], "popul": 0, "posit": [0, 45, 72], "possibl": 38, "posterior": [0, 45, 72], "powershel": 2, "pre": 0, "precis": 92, "predict": 0, "prefix": [0, 5, 6, 7, 8, 17, 68, 88], "prep": [3, 81, 82], "prepar": [0, 44, 75], "prepend": [0, 33, 82, 88, 90, 91], "prepend_condit": [0, 1, 82, 90], "preprocess": [0, 75], "prereq": [14, 17, 23, 24, 65, 68, 72, 77, 99, 100, 101, 102, 103, 104, 106, 108], "present": [0, 5, 6, 7, 8, 30, 62, 82], "preser": 83, "preserv": [0, 48, 82, 98], "press": 0, "prevent": 0, "preview": [0, 23], "previou": [0, 24], "print": [0, 1, 2, 18, 29, 31, 33, 40, 41, 44, 56, 62, 72, 82, 89], "print_dir": 33, "print_func_name_args_tim": [32, 33, 82], "print_id": 31, "print_metadata": [39, 47, 82], "print_siz": [31, 64], "prior": 0, "priorit": 24, "prism": [0, 1, 22, 25, 82], "probability_threshold": 10, "probabl": 10, "process": [0, 5, 10, 14, 20, 22, 31, 33, 52, 61, 71, 75, 100, 104], "process_and_plot_data": [69, 70, 82], "process_fdr_and_clust": [10, 25, 82], "process_fil": [20, 25, 82], "process_files_with_glob": [32, 33, 82], "process_intens": [51, 52, 62], "process_slic": [31, 32, 82], "processing_func": 33, "profil": 0, "prog": [27, 28], "program": 0, "progress": 33, "progresscolumn": 33, "project": [1, 77, 79], "promot": 44, "prompt": [0, 2], "properti": [0, 2], "provid": [0, 1, 3, 10, 15, 24, 26, 29, 30, 33, 36, 38, 39, 44, 60, 68, 69, 75, 86, 92, 106], "psilocybin": [5, 6, 7, 8], "psilocybin_v_saline_tstat1_q": 22, "public": 1, "pubm": [0, 6], "pull": [0, 2], "punctat": 0, "pwd": 0, "py": [0, 21, 80, 95, 96], "pyenv": 2, "pyenv_root": 2, "pypi": [1, 2], "pyproject": 0, "python": [0, 1, 2, 76, 82, 107], "python3": 2, "q": [0, 10, 11], "q_valu": [0, 10, 11], "qc": [73, 74], "qform": 45, "qualiti": 0, "quantif": 1, "quantifi": [0, 26, 65], "question": [1, 2], "queue": 71, "quick": 0, "quicker": 0, "quickli": 0, "quot": 69, "r": [0, 3, 28, 45, 69, 72, 77, 88, 89, 103, 105], "r_to_p": [82, 97, 98], "r_to_z": [96, 97, 98], "ra": [30, 31, 41, 45, 48], "radii": 58, "radiu": [0, 31, 49, 58], "rais": [5, 6, 7, 8], "random": 0, "randomis": [0, 99], "randomise_parallel": [0, 99], "rang": [0, 38], "rate": 5, "ratio": 49, "raw": [1, 22, 67], "raw_data_for_t": 22, "raw_tif_dir": [0, 78], "rawconfigpars": 29, "rb": [0, 1, 62, 82, 100], "re": [0, 30, 31, 34, 46, 59, 75, 92], "reach": 1, "read": 29, "readabl": 27, "readi": 10, "recommend": [0, 2], "rectangl": 0, "recurs": [0, 20, 21, 88, 89], "recursively_mirror_rev_cluster_indic": [0, 1, 25, 82], "recus": 85, "red": [0, 33], "ref_imag": [44, 60], "ref_img": [44, 60], "refer": [0, 30, 44, 60, 108], "reference_img": 30, "refin": [0, 1], "reflect": [5, 12], "reg": [1, 65, 75, 76, 77, 82, 100, 103, 104, 108], "reg_affine_initi": [0, 71], "reg_check": [1, 72, 76, 82], "reg_check_brain_mask": [0, 1, 76, 82], "reg_input": [0, 57, 72, 75, 77, 78, 103, 105], "reg_output": [0, 71, 72, 103, 105, 106, 108], "reg_outputs_path": [71, 105, 108], "reg_prep": [1, 34, 39, 46, 65, 72, 76, 77, 82], "reg_r": [75, 106], "reg_result": 0, "regard": 65, "regex": 83, "region": [1, 3, 12, 15, 23, 24, 31, 44, 52, 60, 65, 66, 67, 68, 69, 87], "region_": [0, 68], "region_abbr": [68, 69], "region_counts_df": 65, "region_id": [0, 3, 36, 44, 60, 65, 67, 68, 69, 87], "region_info_df": 65, "region_intens": 68, "region_mask": 0, "region_nam": 69, "region_stat": [0, 1, 82], "regional_cell_dens": 0, "regional_cell_densities_al": 69, "regional_cell_densities_summari": 0, "regional_data_df": 65, "regional_stat": [65, 69, 103], "regional_volumes_df": 65, "regist": [0, 1, 82], "registr": [1, 31, 34, 39, 46, 73, 75, 76, 77, 82, 103, 104, 108], "reinstal": 0, "rel": [0, 8, 12, 26, 30, 39, 75, 100, 104], "rel_path": [0, 39, 65], "rel_path_to_src_fil": 84, "relabel": 0, "relabel_nii": [51, 62, 82], "relat": 0, "related": 83, "relative_hedges_g": [8, 9, 25], "releas": 2, "relev": 22, "reli": [27, 28], "reload": 0, "remain": [0, 33], "remot": [0, 2], "remov": [0, 13, 44, 58, 68, 91], "remove_zero_intensity_region": [68, 70, 82], "renam": [0, 1, 25, 70, 82, 88, 90], "rename_dir": 88, "rename_fil": [82, 88, 89, 90], "rename_item": [82, 88, 90], "rename_typ": 89, "render": 33, "reopen": 0, "reorder": [25, 70, 82], "reorient": [0, 31, 45, 75], "reorient_for_raw_to_nii_conv": [31, 32, 82], "reorient_ndarrai": [31, 32, 82], "reorient_ndarray2": [31, 32, 82], "reorient_nii": [1, 47, 82], "replac": [0, 10, 82, 86, 89, 98], "repo": [0, 1, 2], "repo_root_dir": 0, "repositori": [0, 1, 2], "repres": [0, 24, 33, 36, 44, 60, 82, 98], "reproduc": 2, "request": 30, "requir": 61, "rerun": 22, "resampl": [0, 1, 31, 32, 44, 60, 62, 72, 75, 82], "resample_and_convert_point": [60, 62, 82], "resample_point": [1, 62, 82], "resampled_imag": 60, "resampled_nii": 59, "resampled_point": 60, "resolut": [0, 16, 23, 30, 31, 34, 46, 59, 60, 61, 65, 67, 75, 81, 82, 105, 106], "resolv": [30, 33], "resolve_path": [30, 32, 82], "respect": [0, 22], "restart": 2, "restrict": 92, "result": [0, 5, 13, 22, 26, 65, 69, 95], "retriev": 68, "return": [5, 6, 7, 8, 10, 23, 24, 26, 29, 31, 33, 34, 38, 41, 45, 46, 49, 52, 58, 61, 64, 67, 69, 72, 75, 92, 106], "return_3d_img": [30, 32, 82], "return_metadata": 30, "return_r": [30, 34, 46], "rev_cluster_index": [0, 5, 14, 16, 18, 23], "rev_cluster_index_img": 10, "rev_cluster_index_to_warp_from_atlas_spac": [0, 26], "rev_cluster_index_valid_clust": 16, "revers": [0, 10], "reverse_clust": [10, 25, 82], "reverse_reorient_for_raw_to_nii_conv": [31, 32, 82], "review": 2, "rf": [0, 22], "rgb": [15, 23], "rgba": 3, "rh": [0, 5, 20], "rh_file": 93, "rh_mask": 102, "rhz": 102, "ri": [44, 60], "rich": [28, 33], "rich_argpars": 28, "richhelpformatt": 28, "right": [0, 2, 13, 45, 55, 60, 72], "rijsket": 1, "rlapsi": 31, "rm": [0, 22], "ro": [105, 108], "roll": [0, 31, 49, 58], "rolling_ball_subtract": [58, 62, 82], "rolling_ball_subtraction_opencv_parallel": [31, 32, 82], "root": [0, 22], "roughli": [0, 83], "row": [0, 5, 6, 7, 8, 24, 36, 44, 45, 60, 87, 88], "rp": 0, "rstat": [1, 44, 70, 82, 103], "rstats_if_mean": 68, "rstats_if_mean_in_seg": 68, "rstats_mean_if": [0, 1, 70, 82], "rstats_mean_if_in_seg": [0, 67], "rstats_mean_if_in_segmented_voxel": [1, 70, 82], "rstats_mean_if_summari": [0, 1, 66, 67, 70, 82], "rstats_summari": [1, 65, 70, 82], "run": [2, 10, 13, 14, 20, 24, 25, 39, 44, 63, 67, 71, 75, 77, 79, 82, 83, 86, 99, 100, 101, 102, 103, 105], "run_randomise_parallel": [82, 98, 99], "run_script": [22, 25, 82], "run_with_timeout": [71, 76, 82], "ryskamp": 1, "sa": 3, "salin": [0, 5, 6, 7, 8, 65, 69, 91], "saline_sample06": [0, 69], "saline_sample07": [0, 69], "same": [0, 3, 15, 24, 44, 61, 68, 69, 87], "sampl": [1, 5, 6, 7, 8, 14, 17, 18, 19, 26, 33, 39, 65, 67, 73, 74, 75, 78, 79, 82, 86, 90, 92, 100, 102, 103, 104], "sample01": [22, 88, 91], "sample01_cfos_correlation_map": 96, "sample01_fil": 88, "sample01_slice_0000": 0, "sample01_slice_0005": 0, "sample01_slice_0050": 0, "sample02": [22, 88, 91], "sample02_fil": 88, "sample03": 0, "sample04": 0, "sample04_slice_0050": 0, "sample14": [0, 65], "sample36": [0, 65], "sample_dir_list": 33, "sample_dir_pattern": 33, "sample_kei": [1, 14, 17, 22, 68, 88, 91], "sample_nam": [19, 65], "sample_path": [18, 33, 65, 78, 84, 104, 106], "save": [0, 4, 10, 14, 19, 20, 26, 30, 34, 35, 37, 39, 46, 49, 54, 55, 57, 58, 59, 60, 61, 70, 72, 77, 80, 82, 94, 108], "save_3d_img": [30, 32, 82], "save_as_h5": [30, 32, 82], "save_as_nii": [30, 32, 47, 48, 82], "save_as_tif": [30, 32, 34, 46, 47, 82], "save_as_zarr": [30, 32, 43, 47, 82], "save_cropped_img": [4, 25, 82], "save_labels_as_mask": [79, 80, 81, 82], "save_metadata": 30, "save_metadata_to_fil": [30, 32, 82], "save_tif": [49, 58, 62, 82], "scale": [0, 44, 47, 48, 82, 92, 105, 106], "scale_bool_to_full_r": [82, 92, 98], "scale_mod": 38, "scale_to_full_r": [82, 106, 107], "scanner": 45, "scienc": 1, "scipi": [1, 31, 59, 75], "score": [0, 12, 47, 82, 92, 96, 98, 101], "script": [1, 2, 5, 22, 27, 28, 29, 33, 44, 103, 105], "script_arg": 22, "script_nam": 22, "scroll": 0, "sd": 95, "se": [6, 7, 8], "search": [0, 1, 2, 31, 33, 89], "second": [0, 5, 10, 19, 22, 45, 49, 92], "section": [0, 29], "sed": 0, "see": [0, 2, 79, 99], "seed": 99, "seg_brain_mask": [1, 72, 75, 77, 81, 82, 102], "seg_copy_tif": [1, 72, 75, 78, 79], "seg_crop": 26, "seg_dir": [0, 26, 67], "seg_ilastik": [1, 65, 67, 79, 81, 82], "seg_ilastik_1": 80, "seg_img": 65, "seg_in_clust": 26, "seg_labels_to_mask": 0, "seg_mask": 92, "seg_volume_in_cubic_mm": 26, "segment": [1, 26, 31, 65, 67, 82, 98], "segmentation_dir": [79, 80], "segmentation_imag": [0, 65], "select": [0, 2, 5, 6, 7, 8, 33, 78, 89], "selector": [5, 6, 7, 8], "send": 2, "sensit": 0, "separ": [0, 17, 22, 31, 33, 64, 99], "seper": 71, "sequenc": 0, "sequenti": 0, "seri": [0, 5, 6, 7, 8, 30, 31, 34, 36, 37, 39, 42, 44, 46, 54, 60, 61, 75, 77, 80, 86], "server": 0, "session": 0, "set": [1, 27, 28, 29, 30, 33, 36, 44, 45, 60, 99], "setup": 0, "sex": [0, 7, 8], "sform": 45, "sh": [2, 22], "shamloo": 1, "shape": [41, 44, 60], "share": [0, 24], "shell": [1, 2], "shift": [0, 2, 93, 94, 101], "short": 0, "shortcut": 0, "shortnam": 0, "should": [0, 2, 5, 6, 7, 8, 22, 24, 33, 39, 44, 49, 58, 88, 91, 99], "show": [0, 2, 33], "show_plot": 68, "shrink": 72, "shrink_factor": 72, "side": [0, 5, 17, 20, 31, 45, 55, 65, 68, 69, 72, 82, 98], "sigma1": 49, "sigma2": 49, "sign": 38, "signal": [0, 1, 82, 98], "signifi": 0, "signific": [0, 5, 12, 17, 23, 49, 68], "simga2": 49, "similar": 0, "sinc": [0, 5, 44, 45], "singl": [0, 27, 28, 30, 49, 52, 58, 60, 61], "size": [1, 6, 7, 8, 23, 30, 31, 39, 41, 49, 58, 61, 62, 82], "sk": [0, 14, 17, 22, 68, 88], "slack": 0, "slice": [0, 31, 33, 61, 78, 79], "slice_": [34, 46, 77], "slice_numb": 78, "slicer": 0, "slow": 92, "slowli": 0, "sm": [0, 27, 28, 32, 72, 82], "small": [0, 6, 7, 8], "smaller": [0, 49, 52, 58], "smallest": 52, "smart_float_format": [11, 25, 82], "smooth": [0, 93, 101], "so": [0, 2, 10, 45], "some": 58, "sort": [17, 25, 52, 68, 82], "sort_sampl": [19, 25, 82], "sort_sunburst_hierarchi": [24, 25, 82], "sourc": [2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108], "source_dir": [33, 78], "source_img": 104, "space": [0, 1, 17, 26, 31, 44, 64, 66, 70, 82, 86, 98, 100, 103, 104, 105, 106, 107], "sparser": 0, "spatial": [0, 30, 45, 49, 61, 92], "spatial_averag": [0, 1, 62, 82], "spatial_average_2d": [61, 62, 82], "spatial_average_3d": [61, 62, 82], "spatial_avg": 61, "specif": [0, 1, 28, 31, 33, 82, 98], "specifi": [0, 5, 6, 7, 8, 24, 26, 27, 28, 29, 30, 31, 33, 37, 38, 39, 61, 78, 88, 89, 92, 94, 99], "speed": [0, 33], "split": [3, 10], "split_clusters_based_on_effect": [10, 25, 82], "spool": [6, 7, 8], "spot": 1, "spread": 0, "squar": 0, "src": 18, "src_dir": 85, "ssd": 0, "stack": 1, "stain": [1, 14, 66, 67], "standard": [38, 49, 102], "stanford": [1, 2], "start": [0, 5, 6, 7, 8, 15, 24, 33], "startup": 2, "stat": [1, 10, 11, 14, 22, 99, 101, 102], "static": 29, "statist": [0, 69], "stats_df": 5, "stats_info_g1_v_g2": 10, "stats_tabl": [1, 25, 82], "statu": 0, "stderr": 71, "step": [1, 2, 24, 65, 67, 72, 75, 99, 100, 101, 102], "stick": 0, "stitch": 1, "storag": 0, "store": 2, "str": [5, 6, 7, 8, 10, 28, 30, 31, 33, 44, 45, 60, 65, 72, 86, 87, 108], "stream": 0, "string": [0, 1, 27, 28, 31, 33, 82, 99], "string_in_fil": 0, "strip": [11, 29], "struct_el": 31, "structur": [1, 13], "structure_id_path": [15, 24], "studio": [0, 3, 23], "style": [28, 29], "sub": 0, "subclass": 29, "subdir": [0, 5, 33, 86], "subdirectori": [79, 86], "subfold": 0, "subject": 0, "subpackag": 1, "subprocess": [22, 71], "subset": [0, 30, 78], "subshel": 0, "substitut": 0, "substr": 83, "subsystem": 1, "subtract": [31, 49, 58, 100], "succinctli": 0, "sudo": 2, "suggest": [0, 1], "sum": [24, 87], "summar": [0, 15, 21, 24, 65, 69, 87], "summari": [0, 1, 14, 25, 69, 82, 87], "summarize_point": [82, 87, 90], "summarize_signific": [69, 70, 82], "summary_df": [69, 87], "sunburst": [0, 1, 15, 16, 22, 24, 25, 82], "sunburst_csv_path": [16, 23, 24], "sunburst_idpath_abbrv": [16, 23], "sunburst_rgb": 23, "superior": [0, 45, 72], "supplement": 6, "support": [0, 58], "suppress": [27, 28, 71], "suppressmetavar": [27, 28, 32, 82], "surfac": 52, "switch": 0, "symbol": 0, "system": [0, 2, 22, 99], "t": [0, 6, 7, 8, 14, 22, 25, 30, 34, 45, 46, 69, 70, 71, 79, 80, 82, 86, 89, 91, 99], "tab": [0, 23], "tabl": [0, 1, 14, 25, 68, 82], "table_column": 33, "tag": 1, "tail": [0, 96], "target": [0, 18, 33, 38, 45, 59, 60, 73, 74, 78, 84], "target_dir": [13, 18, 33, 78, 84], "target_ort": 45, "target_output_dir": [73, 74], "target_r": [31, 59, 60, 106], "target_rang": 38, "task": 33, "task_id": 33, "task_messag": 33, "td": [0, 18, 73, 74], "templat": [0, 1, 2, 76, 82], "template1": 72, "template2": 72, "tensoranalyt": 1, "terastitch": 0, "termin": [2, 28], "test": [0, 14, 22, 25, 49, 69, 70, 82, 99], "test_df": 69, "test_pool": 22, "test_result": 22, "test_typ": [17, 68], "text": [0, 27, 28, 30, 33, 34, 46, 89], "than": [0, 36, 49, 64], "thei": [0, 5, 24, 30, 44], "them": [0, 23, 24, 27, 28, 29, 31, 33, 44, 60, 87, 89], "thi": [0, 1, 2, 5, 6, 7, 8, 12, 13, 14, 20, 22, 24, 27, 28, 29, 30, 31, 33, 34, 39, 44, 49, 60, 67, 69, 71, 75, 88, 92, 93, 101, 103, 105, 108], "thin": [0, 52], "thing": 0, "third": [0, 45], "those": [5, 6, 7, 8, 83], "though": 22, "thr": [0, 44, 60, 103], "thread": [31, 61], "three": 41, "thresh": [44, 60], "threshold": [0, 10, 18, 44, 60], "threshold_points_by_region_id": [44, 47, 82], "through": [0, 5], "tif": [1, 30, 31, 33, 34, 36, 37, 39, 42, 44, 46, 49, 54, 55, 58, 60, 61, 75, 77, 78, 80, 86, 100, 104], "tif_dir": [0, 31, 37, 39, 61, 79], "tif_dir_out": [30, 34, 46], "tif_folder_nam": 86, "tif_path": [30, 46, 49, 58], "tif_to_tif": [1, 47, 82], "tiff": [0, 58], "tifs_path": 39, "tild": 0, "tile": 0, "time": [22, 33, 49, 58, 71], "timeelapsedcolumn": 33, "timeout": 71, "timeremainingcolumn": 33, "timeseri": 0, "tip": 0, "tissu": [0, 26, 31, 76, 77, 82, 98, 105, 106, 107], "tissue_in_atlas_spac": 108, "tissue_mask": 92, "tk": 2, "tl": 1, "to_atla": [1, 82, 107], "to_fix": [1, 82, 107], "to_n": [1, 82, 105, 107], "togeth": [0, 94, 102], "toggl": [0, 82, 90], "toggle_sampl": [1, 82, 90], "toml": 0, "tool": [0, 1, 2], "top": [24, 55], "top_n": 24, "top_region": 24, "total": [0, 24, 33, 99], "total_permutations_per_contrast": 99, "touch": 0, "tp": [0, 93, 101], "tr": 60, "track": 0, "tract": 0, "trail": 11, "train": [1, 75, 77, 78, 79], "trained_ilastik_project": 0, "transform": [0, 30, 45, 96, 108], "transform_nii_affin": [45, 47, 82], "transpar": 0, "transpos": [0, 63], "transpose_ax": [1, 62, 82], "transpose_img": [62, 63, 82], "treat": 5, "treatment": [0, 14, 17, 22, 68, 88, 91], "treatment_sample02_fil": 88, "treatment_sample03_cell_density_data": 0, "treatment_sample03_rb4_atlas_space_z": 0, "treatment_sample04_cell_density_data": 0, "treatment_sample04_rb4_atlas_space_z": 0, "treatment_sample04_regional_cell_dens": 0, "triangl": 0, "trim": 0, "true": [30, 33, 34, 45, 46, 89, 108], "tstat1": 0, "tstat2": 0, "ttest": [14, 17, 68], "ttest_result": 12, "tukei": [14, 25, 70, 82], "tukey_result": 12, "tupl": [27, 28, 30, 34, 38, 46, 52, 60, 61], "turn": 0, "tutori": [0, 2], "two": [0, 5, 6, 7, 8, 17, 44, 68, 88, 96, 99], "txt": [3, 4, 10, 19, 24, 26, 30, 33, 39, 54, 85, 103, 106], "type": [0, 5, 6, 7, 8, 10, 16, 18, 23, 30, 31, 33, 36, 37, 38, 41, 44, 45, 52, 58, 60, 61, 64, 65, 67, 69, 75, 89, 92, 104, 108], "typic": 1, "u": [0, 87], "ubuntu": 2, "uc": 83, "uint16": [38, 44, 50, 52, 104], "uint32": 38, "uint64": 38, "uint8": [38, 44, 52, 104], "um": [20, 30, 34, 46, 75, 77, 94], "um_brain_mask": [0, 77], "um_mask": [0, 77], "um_masked_fixed_reg_input": [0, 73], "um_tif": [0, 75, 77], "um_tifs_ilastik_brain_seg": 77, "unbias": [6, 7, 8], "uncorrect": 0, "undefin": 0, "under": 0, "underscor": [17, 86], "undo_fill_with_origin": [24, 25, 82], "unfamilar": 2, "unfamiliar": [0, 2], "unilater": [0, 5, 10, 19], "uniq_intens": [62, 64, 82], "uniqu": [0, 5, 6, 7, 8, 31, 52, 62, 82], "unique_condit": [5, 6, 7, 8], "unique_intens": [1, 52, 62, 82], "unnecessari": 11, "unpack": [0, 44, 87, 103], "unpack_point": [82, 87, 90], "unpacked_df": 87, "unpad": [0, 108], "unpair": [5, 99], "unravel": 0, "unravel_command": [0, 1, 2, 82], "unsign": [0, 38], "until": 24, "up": [1, 11, 24, 68, 86, 99], "updat": [0, 2, 59], "upenn": 1, "upgrad": 2, "upper": [0, 2, 44], "upper_thresh": [44, 60], "upstream_path": 30, "us": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 72, 73, 74, 75, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108], "usag": [0, 1, 7, 9, 25, 27, 28, 29, 33, 47, 51, 55, 62, 70, 76, 81, 82, 90, 97, 98, 107], "use_um": 30, "user": [0, 1, 2], "usernam": [2, 29], "usr": 2, "uthr": [0, 44, 60, 103], "util": [0, 1, 2, 32, 82], "utils_agg_fil": [1, 65, 67, 68, 84, 100, 102], "utils_agg_files_rec": [0, 85], "utils_clean_tif": 86, "utils_points_compressor": [0, 44, 87, 103], "utils_prepend": [1, 14, 17, 19, 22, 68, 88], "utils_renam": [0, 88, 89], "utils_toggl": [0, 91], "v": [0, 2, 3, 4, 10, 18, 20, 22, 23, 26, 36, 44, 55, 59, 60, 61, 75, 77, 80, 84, 86, 87, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 108], "valid": [5, 6, 7, 8, 10, 16, 18, 21, 22, 23, 25, 82], "valid_clust": [16, 24], "valid_cluster_ids_sorted_by_anatomi": 19, "valid_clusters_dir": 19, "valid_clusters_sunburst": 22, "valid_clusters_t_test": [5, 25, 82], "valid_clusters_tables_and_legend": 22, "validation_dir": 18, "validation_dir_pattern": 18, "valu": [0, 3, 5, 10, 11, 12, 15, 18, 23, 24, 27, 28, 29, 30, 38, 44, 45, 52, 56, 60, 64, 69, 95, 96], "valud": 45, "variabl": 1, "variou": 30, "vd": [0, 18, 22], "ventricl": 0, "venv": 2, "verbos": [24, 29, 33, 72, 78, 84, 86, 99], "verbose_end_msg": [32, 33, 82], "verbose_start_msg": [32, 33, 82], "version": [0, 3, 49, 92, 101], "very_general_region": [15, 24], "via": [0, 1, 2, 96], "video": [0, 1, 2], "view": [0, 2], "virtual": 2, "virtualenv": 2, "visit": 2, "visual": [0, 3], "vizual": 3, "volum": [0, 23, 25, 26, 61, 65, 82], "volume_summari": 50, "volumes_dict": 23, "vox_p": 0, "vox_p_": [10, 11], "vox_p_fstat1": [0, 10], "vox_p_fstat2": 0, "vox_p_fstat3": 0, "vox_p_tstat1": [0, 10, 11], "vox_p_tstat2": 0, "voxel": [1, 23, 26, 30, 31, 36, 39, 41, 44, 55, 60, 61, 62, 65, 67, 82, 94, 95, 98, 99, 101, 102], "voxel_stat": [0, 1, 82], "voxl": 0, "vstat": [1, 10, 11, 14, 18, 82, 98, 100, 101, 102], "vstats_apply_mask": [0, 92], "vstats_dir": [0, 18, 22], "vstats_hemi_to_avg": [0, 93, 102], "vstats_mirror": [0, 94], "vstats_path": 18, "vstats_prep": [1, 49, 72, 75, 82, 98, 99, 101, 102], "vstats_whole_to_avg": [1, 99, 101, 102], "vstats_z_scor": [1, 77, 99, 101, 102], "w": [0, 3, 5, 6, 7, 8, 14, 15, 23, 25, 26, 62, 69, 70, 71, 75, 77, 82, 86, 98], "wa": [0, 1, 12], "wai": 0, "want": [0, 2, 22, 49], "warp": [0, 1, 26, 31, 82, 98, 100], "warp_points_to_atla": [0, 103], "warp_to_atla": [0, 104, 108], "warp_to_fix": [0, 105, 108], "warp_to_n": [0, 70, 82, 106], "warped_img": 105, "wc": 0, "we": [0, 1, 2, 24], "web": 1, "websit": 2, "well": 39, "were": [0, 1], "weslei": 1, "weszhao": 1, "wget": 2, "what": [0, 89], "whatev": 0, "wheel": 0, "when": [0, 2, 22, 47, 82, 90, 94], "where": [0, 2, 5, 6, 7, 8, 12, 24, 33, 36, 44, 52, 60, 78, 82, 98, 108], "whether": [5, 30, 89], "which": [0, 33, 44], "while": 0, "whole": [10, 102], "whole_to_lr_avg": [0, 1, 82, 98], "whose": [5, 6, 7, 8], "wide": 1, "width": [27, 28], "win": 2, "window": [0, 1], "windowsoptionalfeatur": 2, "wirefram": [0, 51, 62, 82], "wireframe_imag": 52, "wireframe_image_id": 52, "wise": [1, 99, 101, 102], "within": [0, 24, 31, 33, 44, 68], "without": [0, 89], "withs": [17, 68], "word": [0, 5, 17, 19, 68], "work": [0, 2, 5, 15, 17, 19, 22, 24, 28, 68, 73, 74], "workflow": [1, 83], "worksheet": 15, "would": 0, "write": [0, 14, 31, 66, 67], "write_to_csv": [14, 25, 66, 67, 70, 82], "wsl": 1, "x": [1, 4, 24, 30, 31, 36, 39, 44, 45, 55, 60, 65, 72, 75, 87, 92, 96, 104, 106], "x_dim": 30, "x_re": [30, 60], "xlsx": [14, 15, 22], "xmax": [26, 30, 31], "xmin": [26, 30, 31], "xy": [0, 4, 30, 61, 65], "xy_r": [4, 26, 30, 31, 34, 46, 65, 75, 106], "xy_voxel_s": [34, 46], "xyz": [30, 34, 46, 72], "xyz_res_in_um": 16, "xz": 2, "y": [1, 2, 30, 31, 36, 39, 44, 45, 60, 65, 72, 75, 87, 92, 106], "y_dim": 30, "y_re": [30, 60], "yeild": [0, 11], "yellow": 0, "yield": 0, "ymax": [26, 30, 31], "ymin": [26, 30, 31], "you": [0, 1, 2, 22, 49], "your": [0, 1, 2, 33], "z": [1, 4, 12, 30, 31, 36, 39, 44, 45, 47, 60, 61, 65, 72, 75, 82, 87, 92, 96, 98, 101, 104, 106], "z_dim": 30, "z_map": 96, "z_re": [4, 26, 30, 31, 34, 46, 60, 65, 75, 106], "z_score": [0, 1, 82, 98], "z_to_p": [96, 97, 98], "z_voxel_s": [34, 46], "zarr": [0, 30, 36, 37, 43, 44, 48, 60, 61, 92, 100, 104, 106], "zarr_path": 30, "zarr_to_ndarrai": [47, 48, 82], "zarr_to_nii": [1, 47, 82], "zeiss": 0, "zen": 0, "zero": [0, 11, 36, 44, 45, 61, 62, 82, 98], "zero_origin": 45, "zetastitch": 0, "zhao": 1, "zlib1g": 2, "zmax": [26, 30, 31], "zmin": [26, 30, 31], "zo": 59, "zoom": [0, 31, 59, 75], "zoom_ord": [31, 59, 75, 106], "zscore": 38, "zscore_rang": 38, "zsh": 0, "zshrc": [0, 2], "zyx": [34, 46], "\u00b5m": 0}, "titles": ["Guide", "UN-biased high-Resolution Analysis and Validation of Ensembles using Light sheet images", "Installation", "unravel.cluster_stats.brain_model module", "unravel.cluster_stats.crop module", "unravel.cluster_stats.cstats module", "unravel.cluster_stats.effect_sizes.effect_sizes module", "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute module", "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative module", "unravel.cluster_stats.effect_sizes package", "unravel.cluster_stats.fdr module", "unravel.cluster_stats.fdr_range module", "unravel.cluster_stats.find_incongruent_clusters module", "unravel.cluster_stats.group_bilateral_data module", "unravel.cluster_stats.mean_IF module", "unravel.cluster_stats.legend module", "unravel.cluster_stats.index module", "unravel.cluster_stats.mean_IF_summary module", "unravel.cluster_stats.org_data module", "unravel.cluster_stats.prism module", "unravel.cluster_stats.recursively_mirror_rev_cluster_indices module", "unravel.cluster_stats.stats_table module", "unravel.cluster_stats.summary module", "unravel.cluster_stats.sunburst module", "unravel.cluster_stats.table module", "unravel.cluster_stats package", "unravel.cluster_stats.validation module", "unravel.core.argparse_utils module", "unravel.core.argparse_utils_rich module", "unravel.core.config module", "unravel.core.img_io module", "unravel.core.img_tools module", "unravel.core package", "unravel.core.utils module", "unravel.image_io.h5_to_tifs module", "unravel.image_io.img_to_npy module", "unravel.image_io.img_to_points module", "unravel.image_io.io_img module", "unravel.image_io.io_nii module", "unravel.image_io.metadata module", "unravel.image_io.nii_hd module", "unravel.image_io.nii_info module", "unravel.image_io.nii_to_tifs module", "unravel.image_io.nii_to_zarr module", "unravel.image_io.points_to_img module", "unravel.image_io.reorient_nii module", "unravel.image_io.tif_to_tifs module", "unravel.image_io package", "unravel.image_io.zarr_to_nii module", "unravel.image_tools.DoG module", "unravel.image_tools.atlas.relabel_nii module", "unravel.image_tools.atlas package", "unravel.image_tools.atlas.wireframe module", "unravel.image_tools.avg module", "unravel.image_tools.bbox module", "unravel.image_tools.extend module", "unravel.image_tools.max module", "unravel.image_tools.pad module", "unravel.image_tools.rb module", "unravel.image_tools.resample module", "unravel.image_tools.resample_points module", "unravel.image_tools.spatial_averaging module", "unravel.image_tools package", "unravel.image_tools.transpose_axes module", "unravel.image_tools.unique_intensities module", "unravel.region_stats.rstats module", "unravel.region_stats.rstats_mean_IF module", "unravel.region_stats.rstats_mean_IF_in_segmented_voxels module", "unravel.region_stats.rstats_mean_IF_summary module", "unravel.region_stats.rstats_summary module", "unravel.region_stats package", "unravel.register.affine_initializer module", "unravel.register.reg module", "unravel.register.reg_check module", "unravel.register.reg_check_brain_mask module", "unravel.register.reg_prep module", "unravel.register package", "unravel.segment.brain_mask module", "unravel.segment.copy_tifs module", "unravel.segment.ilastik_pixel_classification module", "unravel.segment.labels_to_masks module", "unravel.segment package", "unravel package", "unravel.unravel_commands module", "unravel.utilities.aggregate_files_from_sample_dirs module", "unravel.utilities.aggregate_files_recursively module", "unravel.utilities.clean_tif_dirs module", "unravel.utilities.points_compressor module", "unravel.utilities.prepend_conditions module", "unravel.utilities.rename module", "unravel.utilities package", "unravel.utilities.toggle_samples module", "unravel.voxel_stats.apply_mask module", "unravel.voxel_stats.hemi_to_LR_avg module", "unravel.voxel_stats.mirror module", "unravel.voxel_stats.other.IF_outliers module", "unravel.voxel_stats.other.r_to_p module", "unravel.voxel_stats.other package", "unravel.voxel_stats package", "unravel.voxel_stats.vstats module", "unravel.voxel_stats.vstats_prep module", "unravel.voxel_stats.whole_to_LR_avg module", "unravel.voxel_stats.z_score module", "unravel.warp.points_to_atlas module", "unravel.warp.to_atlas module", "unravel.warp.to_fixed module", "unravel.warp.to_native module", "unravel.warp package", "unravel.warp.warp module"], "titleterms": {"": [5, 17, 68], "0": 92, "1": 92, "100": 64, "3": 0, "8": 38, "If": 0, "across": 0, "activ": 91, "add": 0, "addit": [1, 99], "affine_initi": 71, "after": [0, 22], "aggregate_files_from_sample_dir": 84, "aggregate_files_recurs": 85, "all": [0, 64, 83, 91], "allen": 0, "alreadi": [65, 84], "an": [0, 102], "analysi": [0, 1, 2], "apply_mask": 92, "argparse_util": 27, "argparse_utils_rich": 28, "artifact": 92, "atla": [0, 50, 51, 52, 65, 68, 72, 102, 108], "automat": 0, "avail": 65, "avg": 53, "back": 0, "background": 0, "batch": 0, "bbox": 54, "being": 84, "between": 2, "bias": 1, "bit": 38, "both": 102, "brain": [0, 92], "brain_mask": 77, "brain_model": 3, "can": 0, "certain": 91, "chang": 2, "cheat": 0, "check": 2, "clean": 0, "clean_tif_dir": 86, "cli": 106, "cluster": [0, 64, 92], "cluster_stat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "code": 0, "color": 0, "command": [0, 83], "common": [0, 83], "condit": [17, 68, 91], "config": 29, "contact": 1, "content": [1, 82], "contribut": 1, "copi": 84, "copy_tif": 78, "core": [27, 28, 29, 30, 31, 32, 33], "correct": 0, "crop": 4, "cstat": 5, "cstats_fdr": 0, "cstats_fdr_rang": 0, "cstats_mirror_indic": 0, "cstats_org_data": 22, "cstats_summari": 0, "cstats_valid": [0, 22], "csv": 0, "custom": 68, "data": 0, "defin": 0, "depend": 1, "descript": 83, "develop": 1, "dir": [0, 91], "directli": 22, "directori": 89, "distribut": 0, "dog": 49, "dr": 2, "drive": 0, "e": 92, "each": 64, "effect_s": [6, 7, 8, 9], "effect_sizes_by_sex__absolut": 7, "effect_sizes_by_sex__rel": 8, "ensembl": 1, "env_var": 0, "etc": 0, "exampl": [0, 44], "exclud": 92, "exp": 0, "exp_not": 0, "experi": 0, "extend": 55, "extract": 39, "faster": 65, "fdr": 10, "fdr_rang": 11, "file": [84, 89], "find_incongruent_clust": 12, "folder": 0, "forward": 108, "from": [1, 65, 92], "full": 78, "function": 30, "g": 92, "get": [1, 2], "group_bilateral_data": 13, "guid": 0, "h5_to_tif": 34, "help": 0, "helper": 30, "hemi_to_lr_avg": 93, "hierarchi": 24, "high": 1, "i": [1, 38, 39, 64, 65, 84], "if_outli": 95, "ilastik": 0, "ilastik_pixel_classif": 79, "imag": [0, 1, 78, 92], "image_io": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48], "image_tool": [49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "img_avg": 0, "img_io": 30, "img_to_npi": 35, "img_to_point": 36, "img_tool": 31, "immunofluoresc": 78, "index": 16, "indic": 1, "info": 0, "instal": 2, "intens": [64, 92], "invers": 108, "io_img": 37, "io_nii": 38, "labels_to_mask": 80, "legend": 15, "letter": 0, "light": 1, "like": 0, "linux": 2, "list": 0, "log": 0, "main": [1, 30], "make": 0, "mask": [92, 102], "match": 83, "max": 56, "mean": 92, "mean_if": 14, "mean_if_summari": 17, "metadata": 39, "microglia": 92, "min": 64, "mirror": 94, "modul": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108], "more": 0, "multipl": 0, "name": [0, 83, 84], "nativ": 65, "need": 38, "nii_hd": 40, "nii_info": 41, "nii_to_tif": 42, "nii_to_zarr": 43, "non": 64, "note": [0, 36, 44], "number": 64, "open": 0, "option": [0, 99], "org_data": 18, "orient": 0, "other": [95, 96, 97], "out": 92, "output": 65, "overview": 0, "packag": [9, 25, 32, 47, 51, 62, 70, 76, 81, 82, 90, 97, 98, 107], "pad": 57, "paramet": [30, 33, 36, 44, 59, 60, 65, 87], "path": 0, "points_compressor": 87, "points_to_atla": 103, "points_to_img": 44, "prep": 78, "prepend": 84, "prepend_condit": 88, "present": 64, "preserv": 92, "print": [64, 83], "prism": 19, "project": 0, "python": [71, 106], "r_to_p": 96, "raw": 0, "rb": 58, "recursively_mirror_rev_cluster_indic": 20, "reg": [0, 72], "reg_check": [0, 73], "reg_check_brain_mask": 74, "reg_prep": [0, 75], "region": 0, "region_stat": [65, 66, 67, 68, 69, 70], "regist": [71, 72, 73, 74, 75, 76], "registr": [0, 72], "relabel_nii": 50, "renam": [17, 68, 89], "reorder": [17, 68], "reorient_nii": 45, "replac": 92, "repres": 92, "resampl": 59, "resample_point": 60, "resolut": [1, 78], "return": [30, 36, 44, 59, 60, 65, 87], "rstat": [0, 65], "rstats_mean_if": 66, "rstats_mean_if_in_segmented_voxel": 67, "rstats_mean_if_summari": 68, "rstats_summari": [0, 69], "run": [0, 22], "sampl": [0, 84, 91], "sample01": 0, "sample02": 0, "sample_kei": 0, "save": 65, "scale": 38, "score": [38, 102], "script": 0, "seg_brain_mask": [0, 78], "seg_copy_tif": 0, "seg_ilastik": [0, 78], "segment": [0, 77, 78, 79, 80, 81, 92], "set": [0, 2], "sh": 0, "sheet": [0, 1], "shell": 0, "side": 102, "signal": 92, "size": [0, 64], "sort": 24, "sourc": 0, "space": [65, 102, 108], "spatial_averag": 61, "specif": [83, 102], "stack": 0, "start": [1, 2], "stat": 0, "stats_tabl": 21, "step": 0, "stitch": 0, "string": 83, "structur": 0, "subpackag": 82, "subsystem": 2, "subtract": 0, "summari": 22, "sunburst": 23, "support": 1, "syntax": 0, "t": [5, 17, 68], "tabl": 24, "templat": 72, "termin": 0, "test": [5, 17, 68], "tif": 0, "tif_to_tif": 46, "tissu": [72, 102, 108], "tl": 2, "to_atla": 104, "to_fix": 105, "to_n": 106, "todo": 0, "toggl": 91, "toggle_sampl": 91, "train": 0, "transpose_ax": 63, "tukei": [5, 17, 68], "txt": 0, "typic": 0, "u": 1, "un": 1, "uniqu": 64, "unique_intens": 64, "unravel": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "unravel_command": 83, "up": [0, 2], "us": 1, "usag": [3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108], "util": [33, 84, 85, 86, 87, 88, 89, 90, 91], "utils_agg_fil": 0, "utils_clean_tif": 0, "utils_prepend": 0, "valid": [0, 1, 26], "vari": 0, "variabl": 0, "version": 2, "visual": 1, "volum": 24, "voxel": [0, 64, 92], "voxel_stat": [92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102], "vstat": [0, 99], "vstats_prep": [0, 100], "vstats_whole_to_avg": 0, "vstats_z_scor": 0, "w": [17, 64, 68, 99, 102], "warp": [102, 103, 104, 105, 106, 107, 108], "warp_to_n": 65, "welcom": 1, "when": [39, 84], "where": 92, "whole_to_lr_avg": 101, "window": 2, "wirefram": 52, "wise": 0, "workflow": 0, "wsl": 2, "x": 0, "y": 0, "z": [0, 38, 102], "z_score": 102, "zarr_to_nii": 48, "zero": [64, 92]}}) \ No newline at end of file diff --git a/unravel/docs/_build/html/unravel/cluster_stats/brain_model.html b/unravel/docs/_build/html/unravel/cluster_stats/brain_model.html index 9a46abcc..fb82847a 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/brain_model.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/brain_model.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/crop.html b/unravel/docs/_build/html/unravel/cluster_stats/crop.html index 0b50d6d0..5380cb8d 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/crop.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/crop.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/cstats.html b/unravel/docs/_build/html/unravel/cluster_stats/cstats.html index 756a91ad..f3770c9a 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/cstats.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/cstats.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes.html b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes.html index c47064a5..0ffb02c9 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute.html b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute.html index 230c018e..8097899f 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__absolute.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative.html b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative.html index 1d480e9f..07bdd889 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/effect_sizes_by_sex__relative.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/toc.html b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/toc.html index a5a58e32..0894bc66 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/toc.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/effect_sizes/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/fdr.html b/unravel/docs/_build/html/unravel/cluster_stats/fdr.html index 59c0f0ee..d58ade9f 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/fdr.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/fdr.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/fdr_range.html b/unravel/docs/_build/html/unravel/cluster_stats/fdr_range.html index dd5f993d..07dd3913 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/fdr_range.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/fdr_range.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/find_incongruent_clusters.html b/unravel/docs/_build/html/unravel/cluster_stats/find_incongruent_clusters.html index 5b2f69c7..976d5b89 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/find_incongruent_clusters.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/find_incongruent_clusters.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/group_bilateral_data.html b/unravel/docs/_build/html/unravel/cluster_stats/group_bilateral_data.html index 80472a0f..90aab5bb 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/group_bilateral_data.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/group_bilateral_data.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/index.html b/unravel/docs/_build/html/unravel/cluster_stats/index.html index 95d8a32f..1be3b8e1 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/index.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/index.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/legend.html b/unravel/docs/_build/html/unravel/cluster_stats/legend.html index 6dd95baf..2368fad3 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/legend.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/legend.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/mean_IF.html b/unravel/docs/_build/html/unravel/cluster_stats/mean_IF.html index 4c348554..ab4bb74b 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/mean_IF.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/mean_IF.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/mean_IF_summary.html b/unravel/docs/_build/html/unravel/cluster_stats/mean_IF_summary.html index 5c23e302..74845b37 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/mean_IF_summary.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/mean_IF_summary.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/org_data.html b/unravel/docs/_build/html/unravel/cluster_stats/org_data.html index 3d256534..2bf01918 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/org_data.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/org_data.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/prism.html b/unravel/docs/_build/html/unravel/cluster_stats/prism.html index 9eee5036..18888560 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/prism.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/prism.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/recursively_mirror_rev_cluster_indices.html b/unravel/docs/_build/html/unravel/cluster_stats/recursively_mirror_rev_cluster_indices.html index 25875d5e..a0dbce0a 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/recursively_mirror_rev_cluster_indices.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/recursively_mirror_rev_cluster_indices.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/stats_table.html b/unravel/docs/_build/html/unravel/cluster_stats/stats_table.html index cabd63f0..282b9371 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/stats_table.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/stats_table.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/summary.html b/unravel/docs/_build/html/unravel/cluster_stats/summary.html index b72f0b53..24594ebb 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/summary.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/summary.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/sunburst.html b/unravel/docs/_build/html/unravel/cluster_stats/sunburst.html index b45831f5..87a8ecce 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/sunburst.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/sunburst.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/table.html b/unravel/docs/_build/html/unravel/cluster_stats/table.html index 8c1eb5b6..b3109efe 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/table.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/table.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/toc.html b/unravel/docs/_build/html/unravel/cluster_stats/toc.html index c50693b3..aa9722c5 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/toc.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/cluster_stats/validation.html b/unravel/docs/_build/html/unravel/cluster_stats/validation.html index 9b8c1d44..b9541d20 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/validation.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/validation.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/argparse_utils.html b/unravel/docs/_build/html/unravel/core/argparse_utils.html index fce21376..e40cedde 100644 --- a/unravel/docs/_build/html/unravel/core/argparse_utils.html +++ b/unravel/docs/_build/html/unravel/core/argparse_utils.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/argparse_utils_rich.html b/unravel/docs/_build/html/unravel/core/argparse_utils_rich.html index 727c1f22..09d3791e 100644 --- a/unravel/docs/_build/html/unravel/core/argparse_utils_rich.html +++ b/unravel/docs/_build/html/unravel/core/argparse_utils_rich.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/config.html b/unravel/docs/_build/html/unravel/core/config.html index 38d89e87..90b14cfd 100644 --- a/unravel/docs/_build/html/unravel/core/config.html +++ b/unravel/docs/_build/html/unravel/core/config.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/img_io.html b/unravel/docs/_build/html/unravel/core/img_io.html index 4fe6c3c9..62484728 100644 --- a/unravel/docs/_build/html/unravel/core/img_io.html +++ b/unravel/docs/_build/html/unravel/core/img_io.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/img_tools.html b/unravel/docs/_build/html/unravel/core/img_tools.html index 739b95f0..fda0b45a 100644 --- a/unravel/docs/_build/html/unravel/core/img_tools.html +++ b/unravel/docs/_build/html/unravel/core/img_tools.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/toc.html b/unravel/docs/_build/html/unravel/core/toc.html index 00856b78..0edcf472 100644 --- a/unravel/docs/_build/html/unravel/core/toc.html +++ b/unravel/docs/_build/html/unravel/core/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/core/utils.html b/unravel/docs/_build/html/unravel/core/utils.html index 06b08a86..c6ace59f 100644 --- a/unravel/docs/_build/html/unravel/core/utils.html +++ b/unravel/docs/_build/html/unravel/core/utils.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/h5_to_tifs.html b/unravel/docs/_build/html/unravel/image_io/h5_to_tifs.html index 6372e6a3..9c1fe787 100644 --- a/unravel/docs/_build/html/unravel/image_io/h5_to_tifs.html +++ b/unravel/docs/_build/html/unravel/image_io/h5_to_tifs.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/img_to_npy.html b/unravel/docs/_build/html/unravel/image_io/img_to_npy.html index 237570c2..6394e230 100644 --- a/unravel/docs/_build/html/unravel/image_io/img_to_npy.html +++ b/unravel/docs/_build/html/unravel/image_io/img_to_npy.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/img_to_points.html b/unravel/docs/_build/html/unravel/image_io/img_to_points.html index 27610caa..c86089be 100644 --- a/unravel/docs/_build/html/unravel/image_io/img_to_points.html +++ b/unravel/docs/_build/html/unravel/image_io/img_to_points.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/io_img.html b/unravel/docs/_build/html/unravel/image_io/io_img.html index 05807222..5ede085c 100644 --- a/unravel/docs/_build/html/unravel/image_io/io_img.html +++ b/unravel/docs/_build/html/unravel/image_io/io_img.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/io_nii.html b/unravel/docs/_build/html/unravel/image_io/io_nii.html index 39c8d81c..3c13fe1e 100644 --- a/unravel/docs/_build/html/unravel/image_io/io_nii.html +++ b/unravel/docs/_build/html/unravel/image_io/io_nii.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/metadata.html b/unravel/docs/_build/html/unravel/image_io/metadata.html index 9bf171c5..294c8ea7 100644 --- a/unravel/docs/_build/html/unravel/image_io/metadata.html +++ b/unravel/docs/_build/html/unravel/image_io/metadata.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/nii_hd.html b/unravel/docs/_build/html/unravel/image_io/nii_hd.html index 9935d62e..a081815a 100644 --- a/unravel/docs/_build/html/unravel/image_io/nii_hd.html +++ b/unravel/docs/_build/html/unravel/image_io/nii_hd.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/nii_info.html b/unravel/docs/_build/html/unravel/image_io/nii_info.html index 8c99f16e..31c5593c 100644 --- a/unravel/docs/_build/html/unravel/image_io/nii_info.html +++ b/unravel/docs/_build/html/unravel/image_io/nii_info.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/nii_to_tifs.html b/unravel/docs/_build/html/unravel/image_io/nii_to_tifs.html index d44859e6..0b2420d7 100644 --- a/unravel/docs/_build/html/unravel/image_io/nii_to_tifs.html +++ b/unravel/docs/_build/html/unravel/image_io/nii_to_tifs.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/nii_to_zarr.html b/unravel/docs/_build/html/unravel/image_io/nii_to_zarr.html index d97af37d..f1b60106 100644 --- a/unravel/docs/_build/html/unravel/image_io/nii_to_zarr.html +++ b/unravel/docs/_build/html/unravel/image_io/nii_to_zarr.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/points_to_img.html b/unravel/docs/_build/html/unravel/image_io/points_to_img.html index 1f88b208..1e16ca38 100644 --- a/unravel/docs/_build/html/unravel/image_io/points_to_img.html +++ b/unravel/docs/_build/html/unravel/image_io/points_to_img.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/reorient_nii.html b/unravel/docs/_build/html/unravel/image_io/reorient_nii.html index 4d79ae4e..fdbcac41 100644 --- a/unravel/docs/_build/html/unravel/image_io/reorient_nii.html +++ b/unravel/docs/_build/html/unravel/image_io/reorient_nii.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/tif_to_tifs.html b/unravel/docs/_build/html/unravel/image_io/tif_to_tifs.html index ffe3c8c4..f5126562 100644 --- a/unravel/docs/_build/html/unravel/image_io/tif_to_tifs.html +++ b/unravel/docs/_build/html/unravel/image_io/tif_to_tifs.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/toc.html b/unravel/docs/_build/html/unravel/image_io/toc.html index d8ba703f..5f63f232 100644 --- a/unravel/docs/_build/html/unravel/image_io/toc.html +++ b/unravel/docs/_build/html/unravel/image_io/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_io/zarr_to_nii.html b/unravel/docs/_build/html/unravel/image_io/zarr_to_nii.html index f68d9b25..6436494f 100644 --- a/unravel/docs/_build/html/unravel/image_io/zarr_to_nii.html +++ b/unravel/docs/_build/html/unravel/image_io/zarr_to_nii.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/DoG.html b/unravel/docs/_build/html/unravel/image_tools/DoG.html index 2e0b9b59..fc6ee60f 100644 --- a/unravel/docs/_build/html/unravel/image_tools/DoG.html +++ b/unravel/docs/_build/html/unravel/image_tools/DoG.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/atlas/relabel_nii.html b/unravel/docs/_build/html/unravel/image_tools/atlas/relabel_nii.html index 0a6ced23..178c9567 100644 --- a/unravel/docs/_build/html/unravel/image_tools/atlas/relabel_nii.html +++ b/unravel/docs/_build/html/unravel/image_tools/atlas/relabel_nii.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/atlas/toc.html b/unravel/docs/_build/html/unravel/image_tools/atlas/toc.html index dce43ef4..0d678319 100644 --- a/unravel/docs/_build/html/unravel/image_tools/atlas/toc.html +++ b/unravel/docs/_build/html/unravel/image_tools/atlas/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/atlas/wireframe.html b/unravel/docs/_build/html/unravel/image_tools/atlas/wireframe.html index 3634d708..4ba364b7 100644 --- a/unravel/docs/_build/html/unravel/image_tools/atlas/wireframe.html +++ b/unravel/docs/_build/html/unravel/image_tools/atlas/wireframe.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/avg.html b/unravel/docs/_build/html/unravel/image_tools/avg.html index 2c3c6f8b..2ea6b4eb 100644 --- a/unravel/docs/_build/html/unravel/image_tools/avg.html +++ b/unravel/docs/_build/html/unravel/image_tools/avg.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/bbox.html b/unravel/docs/_build/html/unravel/image_tools/bbox.html index a3de6dd4..b0aef47a 100644 --- a/unravel/docs/_build/html/unravel/image_tools/bbox.html +++ b/unravel/docs/_build/html/unravel/image_tools/bbox.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/extend.html b/unravel/docs/_build/html/unravel/image_tools/extend.html index ecebbdc8..247699a8 100644 --- a/unravel/docs/_build/html/unravel/image_tools/extend.html +++ b/unravel/docs/_build/html/unravel/image_tools/extend.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/max.html b/unravel/docs/_build/html/unravel/image_tools/max.html index af415c5c..d9704cfb 100644 --- a/unravel/docs/_build/html/unravel/image_tools/max.html +++ b/unravel/docs/_build/html/unravel/image_tools/max.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/pad.html b/unravel/docs/_build/html/unravel/image_tools/pad.html index 74e3b6bd..910d7ca6 100644 --- a/unravel/docs/_build/html/unravel/image_tools/pad.html +++ b/unravel/docs/_build/html/unravel/image_tools/pad.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/rb.html b/unravel/docs/_build/html/unravel/image_tools/rb.html index f8d91995..b3b17f90 100644 --- a/unravel/docs/_build/html/unravel/image_tools/rb.html +++ b/unravel/docs/_build/html/unravel/image_tools/rb.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/resample.html b/unravel/docs/_build/html/unravel/image_tools/resample.html index a7b7ef7b..cdb5f979 100644 --- a/unravel/docs/_build/html/unravel/image_tools/resample.html +++ b/unravel/docs/_build/html/unravel/image_tools/resample.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/resample_points.html b/unravel/docs/_build/html/unravel/image_tools/resample_points.html index a9efc4a6..adeadbd4 100644 --- a/unravel/docs/_build/html/unravel/image_tools/resample_points.html +++ b/unravel/docs/_build/html/unravel/image_tools/resample_points.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/spatial_averaging.html b/unravel/docs/_build/html/unravel/image_tools/spatial_averaging.html index 10546a49..ce747be6 100644 --- a/unravel/docs/_build/html/unravel/image_tools/spatial_averaging.html +++ b/unravel/docs/_build/html/unravel/image_tools/spatial_averaging.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/toc.html b/unravel/docs/_build/html/unravel/image_tools/toc.html index 93bd32c6..5ec2c88c 100644 --- a/unravel/docs/_build/html/unravel/image_tools/toc.html +++ b/unravel/docs/_build/html/unravel/image_tools/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/transpose_axes.html b/unravel/docs/_build/html/unravel/image_tools/transpose_axes.html index e8dd8f92..164981a4 100644 --- a/unravel/docs/_build/html/unravel/image_tools/transpose_axes.html +++ b/unravel/docs/_build/html/unravel/image_tools/transpose_axes.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/image_tools/unique_intensities.html b/unravel/docs/_build/html/unravel/image_tools/unique_intensities.html index 21568406..50f94cc2 100644 --- a/unravel/docs/_build/html/unravel/image_tools/unique_intensities.html +++ b/unravel/docs/_build/html/unravel/image_tools/unique_intensities.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/region_stats/rstats.html b/unravel/docs/_build/html/unravel/region_stats/rstats.html index ff11071f..9bcf2083 100644 --- a/unravel/docs/_build/html/unravel/region_stats/rstats.html +++ b/unravel/docs/_build/html/unravel/region_stats/rstats.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF.html b/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF.html index 153bc9fa..3a81cf4c 100644 --- a/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF.html +++ b/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_in_segmented_voxels.html b/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_in_segmented_voxels.html index fb685da9..cdaa36ad 100644 --- a/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_in_segmented_voxels.html +++ b/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_in_segmented_voxels.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_summary.html b/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_summary.html index 6589a2be..feaef8ac 100644 --- a/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_summary.html +++ b/unravel/docs/_build/html/unravel/region_stats/rstats_mean_IF_summary.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/region_stats/rstats_summary.html b/unravel/docs/_build/html/unravel/region_stats/rstats_summary.html index 99d1e444..a0dd0b6d 100644 --- a/unravel/docs/_build/html/unravel/region_stats/rstats_summary.html +++ b/unravel/docs/_build/html/unravel/region_stats/rstats_summary.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/region_stats/toc.html b/unravel/docs/_build/html/unravel/region_stats/toc.html index abf9763a..42621ce4 100644 --- a/unravel/docs/_build/html/unravel/region_stats/toc.html +++ b/unravel/docs/_build/html/unravel/region_stats/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/register/affine_initializer.html b/unravel/docs/_build/html/unravel/register/affine_initializer.html index d3d7b17d..ceccaa4b 100644 --- a/unravel/docs/_build/html/unravel/register/affine_initializer.html +++ b/unravel/docs/_build/html/unravel/register/affine_initializer.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/register/reg.html b/unravel/docs/_build/html/unravel/register/reg.html index 118c8a2a..6f0a9abe 100644 --- a/unravel/docs/_build/html/unravel/register/reg.html +++ b/unravel/docs/_build/html/unravel/register/reg.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/register/reg_check.html b/unravel/docs/_build/html/unravel/register/reg_check.html index b0a3aa96..b82b587f 100644 --- a/unravel/docs/_build/html/unravel/register/reg_check.html +++ b/unravel/docs/_build/html/unravel/register/reg_check.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/register/reg_check_brain_mask.html b/unravel/docs/_build/html/unravel/register/reg_check_brain_mask.html index 72cd1cda..b4c92eb4 100644 --- a/unravel/docs/_build/html/unravel/register/reg_check_brain_mask.html +++ b/unravel/docs/_build/html/unravel/register/reg_check_brain_mask.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/register/reg_prep.html b/unravel/docs/_build/html/unravel/register/reg_prep.html index f9d97727..dd33d425 100644 --- a/unravel/docs/_build/html/unravel/register/reg_prep.html +++ b/unravel/docs/_build/html/unravel/register/reg_prep.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/register/toc.html b/unravel/docs/_build/html/unravel/register/toc.html index 5ec08199..d258795b 100644 --- a/unravel/docs/_build/html/unravel/register/toc.html +++ b/unravel/docs/_build/html/unravel/register/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/segment/brain_mask.html b/unravel/docs/_build/html/unravel/segment/brain_mask.html index d0ff316a..bb93af06 100644 --- a/unravel/docs/_build/html/unravel/segment/brain_mask.html +++ b/unravel/docs/_build/html/unravel/segment/brain_mask.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/segment/copy_tifs.html b/unravel/docs/_build/html/unravel/segment/copy_tifs.html index c3d840aa..fbbff0fe 100644 --- a/unravel/docs/_build/html/unravel/segment/copy_tifs.html +++ b/unravel/docs/_build/html/unravel/segment/copy_tifs.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/segment/ilastik_pixel_classification.html b/unravel/docs/_build/html/unravel/segment/ilastik_pixel_classification.html index a70369c7..42023010 100644 --- a/unravel/docs/_build/html/unravel/segment/ilastik_pixel_classification.html +++ b/unravel/docs/_build/html/unravel/segment/ilastik_pixel_classification.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/segment/labels_to_masks.html b/unravel/docs/_build/html/unravel/segment/labels_to_masks.html index 15eaa01b..7bda5b95 100644 --- a/unravel/docs/_build/html/unravel/segment/labels_to_masks.html +++ b/unravel/docs/_build/html/unravel/segment/labels_to_masks.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/segment/toc.html b/unravel/docs/_build/html/unravel/segment/toc.html index d3ab1ba4..cebd3637 100644 --- a/unravel/docs/_build/html/unravel/segment/toc.html +++ b/unravel/docs/_build/html/unravel/segment/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/toc.html b/unravel/docs/_build/html/unravel/toc.html index 353e5699..0a5e7bbb 100644 --- a/unravel/docs/_build/html/unravel/toc.html +++ b/unravel/docs/_build/html/unravel/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • @@ -1250,6 +1251,16 @@

    Subpackagesmain() +
  • unravel.utilities.points_compressor module +
  • diff --git a/unravel/docs/_build/html/unravel/unravel_commands.html b/unravel/docs/_build/html/unravel/unravel_commands.html index e33169b1..9108b0c0 100644 --- a/unravel/docs/_build/html/unravel/unravel_commands.html +++ b/unravel/docs/_build/html/unravel/unravel_commands.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/utilities/aggregate_files_from_sample_dirs.html b/unravel/docs/_build/html/unravel/utilities/aggregate_files_from_sample_dirs.html index 4481a2c3..48a488d4 100644 --- a/unravel/docs/_build/html/unravel/utilities/aggregate_files_from_sample_dirs.html +++ b/unravel/docs/_build/html/unravel/utilities/aggregate_files_from_sample_dirs.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/utilities/aggregate_files_recursively.html b/unravel/docs/_build/html/unravel/utilities/aggregate_files_recursively.html index d5b33aaa..f2503319 100644 --- a/unravel/docs/_build/html/unravel/utilities/aggregate_files_recursively.html +++ b/unravel/docs/_build/html/unravel/utilities/aggregate_files_recursively.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/utilities/clean_tif_dirs.html b/unravel/docs/_build/html/unravel/utilities/clean_tif_dirs.html index ca83accc..127f7750 100644 --- a/unravel/docs/_build/html/unravel/utilities/clean_tif_dirs.html +++ b/unravel/docs/_build/html/unravel/utilities/clean_tif_dirs.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/utilities/points_compressor.html b/unravel/docs/_build/html/unravel/utilities/points_compressor.html new file mode 100644 index 00000000..111814e3 --- /dev/null +++ b/unravel/docs/_build/html/unravel/utilities/points_compressor.html @@ -0,0 +1,727 @@ + + + + + + + + + + + unravel.utilities.points_compressor module — UNRAVEL docs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    + + + + + +
    +
    + + + +
    + + + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    + +
    + +
    + + + + +
    + +
    + + +
    +
    + + + + + +
    + +
    +

    unravel.utilities.points_compressor module#

    +

    Use utils_points_compressor from UNRAVEL to pack or unpack point data in a CSV file or summarize the number of points per region.

    +

    Packing: Group points with the same coordinates and Region_ID, adding a count column. +Unpacking: Expand packed points back to individual rows based on the count column. +Summary: Output a CSV summarizing the number of points per region.

    +
    +

    Usage:#

    +
    +

    utils_points_compressor -i path/<asterisk>_points.csv [-p or -u or -s] [-v]

    +
    +
    +
    Input:

    CSV file with either unpacked (x, y, z, Region_ID) or packed (x, y, z, Region_ID, count) format.

    +
    +
    Output:

    CSV file with the desired packed or unpacked format. +Optionally, a summary CSV with the number of points per region.

    +
    +
    +
    +

    Note

    +
      +
    • Use only one of the following options: -p, -u, -s.

    • +
    • The summary option can be used with either packed or unpacked data.

    • +
    +
    +
    +
    +
    +unravel.utilities.points_compressor.parse_args()[source]#
    +
    + +
    +
    +unravel.utilities.points_compressor.pack_points(df)[source]#
    +

    Pack points by grouping identical coordinates and summing their occurrences.

    +
    +

    Parameters:#

    +
    +
    dfpandas.DataFrame

    DataFrame with columns [‘x’, ‘y’, ‘z’, ‘Region_ID’]

    +
    +
    +
    +
    +

    Returns:#

    +
    +
    packed_dfpandas.DataFrame

    DataFrame with columns [‘x’, ‘y’, ‘z’, ‘Region_ID’, ‘count’]

    +
    +
    +
    +
    + +
    +
    +unravel.utilities.points_compressor.unpack_points(df)[source]#
    +

    Unpack points by expanding them based on the count column.

    +
    +

    Parameters:#

    +
    +
    dfpandas.DataFrame

    DataFrame with columns [‘x’, ‘y’, ‘z’, ‘Region_ID’, ‘count’]

    +
    +
    +
    +
    +

    Returns:#

    +
    +
    unpacked_dfpandas.DataFrame

    DataFrame with columns [‘x’, ‘y’, ‘z’, ‘Region_ID’]

    +
    +
    +
    +
    + +
    +
    +unravel.utilities.points_compressor.summarize_points(df)[source]#
    +

    Summarize points by counting the number of points per Region_ID.

    +
    +

    Parameters:#

    +
    +
    dfpandas.DataFrame

    DataFrame with columns [‘x’, ‘y’, ‘z’, ‘Region_ID’] or [‘x’, ‘y’, ‘z’, ‘Region_ID’, ‘count’]

    +
    +
    +
    +
    +

    Returns:#

    +
    +
    summary_dfpandas.DataFrame

    DataFrame with columns [‘Region_ID’, ‘count’] summarizing the number of points per region.

    +
    +
    +
    +
    + +
    +
    +unravel.utilities.points_compressor.points_compressor(file_path, pack=False, unpack=False, summary=False)[source]#
    +

    Pack, unpack, or summarize points in a CSV file.

    +
    +

    Parameters:#

    +
    +
    file_pathstr

    Path to the input CSV file.

    +
    +
    packbool, optional

    Pack the points by grouping them.

    +
    +
    unpackbool, optional

    Unpack the points by expanding them based on the count column.

    +
    +
    summarybool, optional

    Output a CSV summarizing the number of points per region.

    +
    +
    +
    +
    + +
    +
    +unravel.utilities.points_compressor.main()[source]#
    +
    + +
    + + +
    + + + + + + + +
    + + + + + + +
    +
    + +
    + +
    +
    +
    + + + + + +
    + + +
    + + \ No newline at end of file diff --git a/unravel/docs/_build/html/unravel/utilities/prepend_conditions.html b/unravel/docs/_build/html/unravel/utilities/prepend_conditions.html index 4fd54438..9b3465e8 100644 --- a/unravel/docs/_build/html/unravel/utilities/prepend_conditions.html +++ b/unravel/docs/_build/html/unravel/utilities/prepend_conditions.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/utilities/rename.html b/unravel/docs/_build/html/unravel/utilities/rename.html index 23ff34d0..7accd88a 100644 --- a/unravel/docs/_build/html/unravel/utilities/rename.html +++ b/unravel/docs/_build/html/unravel/utilities/rename.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/utilities/toc.html b/unravel/docs/_build/html/unravel/utilities/toc.html index 1c2904c5..4434b933 100644 --- a/unravel/docs/_build/html/unravel/utilities/toc.html +++ b/unravel/docs/_build/html/unravel/utilities/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • @@ -541,6 +542,16 @@

    unravel.utilities packagemain() +
  • unravel.utilities.points_compressor module +
  • diff --git a/unravel/docs/_build/html/unravel/utilities/toggle_samples.html b/unravel/docs/_build/html/unravel/utilities/toggle_samples.html index 92040107..85730c68 100644 --- a/unravel/docs/_build/html/unravel/utilities/toggle_samples.html +++ b/unravel/docs/_build/html/unravel/utilities/toggle_samples.html @@ -52,6 +52,7 @@ + @@ -432,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • @@ -548,6 +550,15 @@

    Usage for activating sample?? dirs for certain conditions:unravel.utilities.rename module

    + +
    +

    next

    +

    unravel.utilities.points_compressor module

    +
    + +
    diff --git a/unravel/docs/_build/html/unravel/voxel_stats/apply_mask.html b/unravel/docs/_build/html/unravel/voxel_stats/apply_mask.html index 5584fa16..bbd9d92c 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/apply_mask.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/apply_mask.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/hemi_to_LR_avg.html b/unravel/docs/_build/html/unravel/voxel_stats/hemi_to_LR_avg.html index eca98026..081d9ece 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/hemi_to_LR_avg.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/hemi_to_LR_avg.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/mirror.html b/unravel/docs/_build/html/unravel/voxel_stats/mirror.html index 56f48e25..6e44ab81 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/mirror.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/mirror.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/other/IF_outliers.html b/unravel/docs/_build/html/unravel/voxel_stats/other/IF_outliers.html index 0a2937cf..f8463ff3 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/other/IF_outliers.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/other/IF_outliers.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/other/r_to_p.html b/unravel/docs/_build/html/unravel/voxel_stats/other/r_to_p.html index 46f5f490..a3797313 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/other/r_to_p.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/other/r_to_p.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/other/toc.html b/unravel/docs/_build/html/unravel/voxel_stats/other/toc.html index db59c202..47e986f3 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/other/toc.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/other/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/toc.html b/unravel/docs/_build/html/unravel/voxel_stats/toc.html index 494a8b70..635dc2c0 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/toc.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/vstats.html b/unravel/docs/_build/html/unravel/voxel_stats/vstats.html index 08310cc8..0904e98e 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/vstats.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/vstats.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/vstats_prep.html b/unravel/docs/_build/html/unravel/voxel_stats/vstats_prep.html index 05e72f82..feb2b7c4 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/vstats_prep.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/vstats_prep.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/whole_to_LR_avg.html b/unravel/docs/_build/html/unravel/voxel_stats/whole_to_LR_avg.html index 23a228fe..82215c2f 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/whole_to_LR_avg.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/whole_to_LR_avg.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/voxel_stats/z_score.html b/unravel/docs/_build/html/unravel/voxel_stats/z_score.html index 5cb02db8..d3e8ce4f 100644 --- a/unravel/docs/_build/html/unravel/voxel_stats/z_score.html +++ b/unravel/docs/_build/html/unravel/voxel_stats/z_score.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/warp/points_to_atlas.html b/unravel/docs/_build/html/unravel/warp/points_to_atlas.html index 73b85ff0..a93ebcfa 100644 --- a/unravel/docs/_build/html/unravel/warp/points_to_atlas.html +++ b/unravel/docs/_build/html/unravel/warp/points_to_atlas.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/warp/to_atlas.html b/unravel/docs/_build/html/unravel/warp/to_atlas.html index 0c3a80fa..b96de5cb 100644 --- a/unravel/docs/_build/html/unravel/warp/to_atlas.html +++ b/unravel/docs/_build/html/unravel/warp/to_atlas.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/warp/to_fixed.html b/unravel/docs/_build/html/unravel/warp/to_fixed.html index 8dd9a46d..f006d359 100644 --- a/unravel/docs/_build/html/unravel/warp/to_fixed.html +++ b/unravel/docs/_build/html/unravel/warp/to_fixed.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/warp/to_native.html b/unravel/docs/_build/html/unravel/warp/to_native.html index 13d90d26..31d2a129 100644 --- a/unravel/docs/_build/html/unravel/warp/to_native.html +++ b/unravel/docs/_build/html/unravel/warp/to_native.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/warp/toc.html b/unravel/docs/_build/html/unravel/warp/toc.html index 14131813..c19bfbe2 100644 --- a/unravel/docs/_build/html/unravel/warp/toc.html +++ b/unravel/docs/_build/html/unravel/warp/toc.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module
  • diff --git a/unravel/docs/_build/html/unravel/warp/warp.html b/unravel/docs/_build/html/unravel/warp/warp.html index 6949c8a4..1ae318d8 100644 --- a/unravel/docs/_build/html/unravel/warp/warp.html +++ b/unravel/docs/_build/html/unravel/warp/warp.html @@ -433,6 +433,7 @@
  • unravel.utilities.prepend_conditions module
  • unravel.utilities.rename module
  • unravel.utilities.toggle_samples module
  • +
  • unravel.utilities.points_compressor module