diff --git a/unravel/cluster_stats/cluster_summary.py b/unravel/cluster_stats/cluster_summary.py index 9bc212a3..a01e19ee 100755 --- a/unravel/cluster_stats/cluster_summary.py +++ b/unravel/cluster_stats/cluster_summary.py @@ -5,11 +5,19 @@ Usage if running directly after ``cluster_validation``: ------------------------------------------------------- - cluster_summary -c -e -cvd '*' -vd -sk --groups -v + cluster_summary -c -e -cvd 'psilocybin_v_saline_tstat1_q' -vd -sk --groups -hg -v + +Note: + - The current working directory should not have other directories when running this script for the first time. Directories from cluster_org_data are ok though. Usage if running after ``cluster_validation`` and ``cluster_org_data``: ----------------------------------------------------------------------- - cluster_summary -c -sk --groups -v + cluster_summary -c -sk --groups -hg -v + +Note: + - For the second usage, the ``-e``, ``-cvd``, and ``-vd`` arguments are not needed because the data is already in the working directory. + - Only process one comparison at a time. If you have multiple comparisons, run this script separately for each comparison in separate directories. + - Then aggregate the results as needed (e.g. to make a legend with all relevant abbeviations, copy the .xlsx files to a central location and run ``cluster_legend``). The current working directory should not have other directories when running this script for the first time. Directories from cluster_org_data are ok though. @@ -28,6 +36,9 @@ dir_name,condition sample01,control sample02,treatment + +If you need to rerun this script, delete the following directories and files in the current working directory: +find . -name _valid_clusters -exec rm -rf {} \; -o -name cluster_validation_summary_t-test.csv -exec rm -f {} \; -o -name cluster_validation_summary_tukey.csv -exec rm -f {} \; -o -name 3D_brains -exec rm -rf {} \; -o -name valid_clusters_tables_and_legend -exec rm -rf {} \; -o -name _valid_clusters_stats -exec rm -rf {} \; """ import argparse @@ -59,6 +70,7 @@ def parse_args(): # cluster_stats --groups parser.add_argument('--groups', help='List of group prefixes. 2 groups --> t-test. >2 --> Tukey\'s tests (The first 2 groups reflect the main comparison for validation rates; for cluster_stats)', nargs='+') parser.add_argument('-cp', '--condition_prefixes', help='Condition prefixes to group related data (optional for cluster_stats)', nargs='*', default=None, action=SM) + parser.add_argument('-hg', '--higher_group', help='Specify the group that is expected to have a higher mean based on the direction of the p value map', required=True) parser.add_argument('-v', '--verbose', help='Increase verbosity. Default: False', action='store_true', default=False) parser.epilog = __doc__ @@ -67,6 +79,7 @@ def parse_args(): # TODO: Could add a progress bar that advances after each subdir, but need to adapt running of the first few scripts for this. Include check for completeness (all samples have csvs [from both hemis]). Review outputs and output folders and consider consolidating them. Could make cells vs. labels are arg. Could add a raw data output organized for the SI table. # The valid cluster sunburst could have the val dir name and be copied to a central location # TODO: Consider moving find_and_copy_files() to unravel/unravel/utils.py # TODO: Move cell vs. label arg from config back to argparse and make it a required arg to prevent accidentally using the wrong metric +# TODO: Add a reset option to delete all output files and directories from the current working directory def run_script(script_name, script_args): """Run a command/script using subprocess that respects the system's PATH and captures output.""" @@ -116,7 +129,8 @@ def main(): stats_args = [ '--groups', *args.groups, '-alt', cfg.stats.alternate, - '-pvt', cfg.org_data.p_val_txt + '-pvt', cfg.org_data.p_val_txt, + '-hg', args.higher_group ] if args.condition_prefixes: stats_args.append(['-cp', *args.condition_prefixes]) diff --git a/unravel/cluster_stats/stats.py b/unravel/cluster_stats/stats.py index 4b359a1a..9f54476e 100755 --- a/unravel/cluster_stats/stats.py +++ b/unravel/cluster_stats/stats.py @@ -5,14 +5,18 @@ T-test usage: ------------- - cluster_stats --groups + cluster_stats --groups -hg Tukey's test usage: ------------------- - cluster_stats --groups ... + cluster_stats --groups ... -hg -Input subdirs: - +Note: + - Organize data in directories for each comparison (e.g., psilocybin > saline, etc.) + - This script will loop through all directories in the current working dir and process the data in each subdir. + - Each subdir should contain .csv files with the density data for each cluster. + - The first 2 groups reflect the main comparison for validation rates. + - Clusters are not considered valid if the effect direction does not match the expected direction. Input files: _density_data.csv from ``cluster_validation`` (e.g., in each subdir named after the rev_cluster_index.nii.gz file) @@ -64,12 +68,14 @@ def parse_args(): parser = argparse.ArgumentParser(formatter_class=SuppressMetavar) parser.add_argument('--groups', help='List of group prefixes. 2 groups --> t-test. >2 --> Tukey\'s tests (The first 2 groups reflect the main comparison for validation rates)', nargs='+', required=True) parser.add_argument('-cp', '--condition_prefixes', help='Condition prefixes to group data (e.g., see info for examples)', nargs='*', default=None, action=SM) + parser.add_argument('-hg', '--higher_group', help='Specify the group that is expected to have a higher mean based on the direction of the p value map', required=True) parser.add_argument('-alt', "--alternate", help="Number of tails and direction ('two-sided' [default], 'less' [group1 < group2], or 'greater')", default='two-sided', action=SM) parser.add_argument('-pvt', '--p_val_txt', help='Name of the file w/ the corrected p value thresh (e.g., from cluster_fdr). Default: p_value_threshold.txt', default='p_value_threshold.txt', action=SM) parser.add_argument('-v', '--verbose', help='Increase verbosity. Default: False', action='store_true', default=False) parser.epilog = __doc__ return parser.parse_args() + # TODO: Test grouping of conditions. Test w/ label densities data. Could set up dunnett's tests and/or holm sidak tests. @@ -265,8 +271,18 @@ def main(): args = parse_args() current_dir = Path.cwd() + # Check for subdirectories in the current working directory + subdirs = [d for d in current_dir.iterdir() if d.is_dir()] + if not subdirs: + print(f" [red1]No directories found in the current working directory: {current_dir}") + return + if subdirs[0].name == '_valid_clusters_stats': + print(f" [red1]Only the '_valid_clusters_stats' directory found in the current working directory: {current_dir}") + print(" [red1]The script was likely run from a subdirectory instead of a directory containing subdirectories.") + return + # Iterate over all subdirectories in the current working directory - for subdir in [d for d in current_dir.iterdir() if d.is_dir()]: + for subdir in subdirs: print(f"\nProcessing directory: [default bold]{subdir.name}[/]") # Load all .csv files in the current subdirectory @@ -300,7 +316,7 @@ def main(): # Aggregate the data from all .csv files and pool the data if hemispheres are present data_df = cluster_validation_data_df(density_col, has_hemisphere, csv_files, args.groups, data_col, data_col_pooled, args.condition_prefixes) if data_df.empty: - print("No data files match the specified groups. The prefixes of the csv files must match the group names.") + print(" [red1]No data files match the specified groups. The prefixes of the csv files must match the group names.") continue # Check the number of groups and perform the appropriate statistical test @@ -319,24 +335,36 @@ def main(): print(f"Running [gold1 bold]Tukey's tests") stats_df = perform_tukey_test(data_df, args.groups, density_col) - # Save the results to a .csv file - stats_results_csv = output_dir / 't-test_results.csv' if len(args.groups) == 2 else output_dir / 'tukey_results.csv' - stats_df.to_csv(stats_results_csv, index=False) + # Validate the clusters based on the expected direction of the effect + if args.higher_group not in args.groups: + print(f" [red1]Error: The specified higher group '{args.higher_group}' is not one of the groups.") + return + expected_direction = '>' if args.higher_group == args.groups[0] else '<' + incongruent_clusters = stats_df[(stats_df['higher_mean_group'] != args.higher_group) & (stats_df['significance'] != 'n.s.')]['cluster_ID'].tolist() - # Get the overall mean density for each condition and determine the effect direction - group_one_mean = data_df[data_df['condition'] == args.groups[0]][density_col].mean() - group_two_mean = data_df[data_df['condition'] == args.groups[1]][density_col].mean() - if group_one_mean > group_two_mean: - effect_direction = '>' - elif group_one_mean < group_two_mean: - effect_direction = '<' - elif group_one_mean == group_two_mean: - effect_direction = '==' + with open(output_dir / 'incongruent_clusters.txt', 'w') as f: + f.write('\n'.join(map(str, incongruent_clusters))) + + print(f"Expected effect direction: [green bold]{args.groups[0]} {expected_direction} {args.groups[1]}") - if len(args.groups) == 2: - print(f"Effect direction: [green bold]{args.groups[0]} {effect_direction} {args.groups[1]}") + if not incongruent_clusters: + print("All significant clusters are congruent with the expected direction") else: - print(f"Effect direction of interest: [green bold]{args.groups[0]} {effect_direction} {args.groups[1]}") + print(f"{len(incongruent_clusters)} of {total_clusters} clusters are incongruent with the expected direction.") + print (f"Although they had a significant difference, they not considered valid.") + print (f"'incongruent_clusters.txt' lists cluster IDs for incongruent clusters.") + + # Invalidate clusters that are incongruent with the expected direction + stats_df['significance'] = stats_df.apply(lambda row: 'n.s.' if row['cluster_ID'] in incongruent_clusters else row['significance'], axis=1) + + # Remove invalidated clusters from the list of significant clusters + significant_clusters = stats_df[stats_df['significance'] != 'n.s.']['cluster_ID'] + significant_cluster_ids = significant_clusters.unique().tolist() + significant_cluster_ids_str = ' '.join(map(str, significant_cluster_ids)) + + # Save the results to a .csv file + stats_results_csv = output_dir / 't-test_results.csv' if len(args.groups) == 2 else output_dir / 'tukey_results.csv' + stats_df.to_csv(stats_results_csv, index=False) # Extract the FDR q value from the first csv file (float after 'FDR' or 'q' in the file name) first_csv_name = csv_files[0] @@ -347,7 +375,7 @@ def main(): p_val_txt = next(Path(subdir).glob('**/*' + args.p_val_txt), None) if p_val_txt is None: # If no file is found, print an error message and skip further processing for this directory - print(f"No p-value file found matching '{args.p_val_txt}' in directory {subdir}. Please check the file name and path.") + print(f" [red1]No p-value file found matching '{args.p_val_txt}' in directory {subdir}. Please check the file name and path.") import sys ; sys.exit() with open(p_val_txt, 'r') as f: p_value_thresh = float(f.read()) @@ -358,10 +386,7 @@ def main(): # Print validation info: print(f"FDR q: [cyan bold]{fdr_q}[/] == p-value threshold: [cyan bold]{p_value_thresh}") - significant_clusters = stats_df[stats_df['p-value'] < 0.05]['cluster_ID'] - significant_cluster_ids = significant_clusters.unique().tolist() - significant_cluster_ids_str = ' '.join(map(str, significant_cluster_ids)) - print(f"Valid cluster IDs: [blue bold]{significant_cluster_ids_str}") + print(f"Valid cluster IDs: {significant_cluster_ids_str}") print(f"[default]# of valid / total #: [bright_magenta]{len(significant_cluster_ids)} / {total_clusters}") validation_rate = len(significant_cluster_ids) / total_clusters * 100 print(f"Cluster validation rate: [purple bold]{validation_rate:.2f}%") @@ -376,7 +401,7 @@ def main(): # Save the # of sig. clusters, total clusters, and cluster validation rate to a .txt file validation_inf_txt = output_dir / 'cluster_validation_info_t-test.txt' if len(args.groups) == 2 else output_dir / 'cluster_validation_info_tukey.txt' with open(validation_inf_txt, 'w') as f: - f.write(f"Direction: {args.groups[0]} {effect_direction} {args.groups[1]}\n") + f.write(f"Direction: {args.groups[0]} {expected_direction} {args.groups[1]}\n") f.write(f"FDR q: {fdr_q} == p-value threshold {p_value_thresh}\n") f.write(f"Valid cluster IDs: {significant_cluster_ids_str}\n") f.write(f"# of valid / total #: {len(significant_cluster_ids)} / {total_clusters}\n") @@ -389,7 +414,7 @@ def main(): # Save cluster validation info for ``cluster_summary`` data_df = pd.DataFrame({ - 'Direction': [f"{args.groups[0]} {effect_direction} {args.groups[1]}"], + 'Direction': [f"{args.groups[0]} {expected_direction} {args.groups[1]}"], 'FDR q': [fdr_q], 'P value thresh': [p_value_thresh], 'Valid clusters': [significant_cluster_ids_str], diff --git a/unravel/docs/_build/doctrees/environment.pickle b/unravel/docs/_build/doctrees/environment.pickle index 53295fa0..cc7cdb5c 100644 Binary files a/unravel/docs/_build/doctrees/environment.pickle and b/unravel/docs/_build/doctrees/environment.pickle differ diff --git a/unravel/docs/_build/doctrees/unravel/cluster_stats/cluster_summary.doctree b/unravel/docs/_build/doctrees/unravel/cluster_stats/cluster_summary.doctree index 12258fb4..947360c1 100644 Binary files a/unravel/docs/_build/doctrees/unravel/cluster_stats/cluster_summary.doctree and b/unravel/docs/_build/doctrees/unravel/cluster_stats/cluster_summary.doctree differ diff --git a/unravel/docs/_build/doctrees/unravel/cluster_stats/stats.doctree b/unravel/docs/_build/doctrees/unravel/cluster_stats/stats.doctree index aa9587db..5684fe48 100644 Binary files a/unravel/docs/_build/doctrees/unravel/cluster_stats/stats.doctree and b/unravel/docs/_build/doctrees/unravel/cluster_stats/stats.doctree differ diff --git a/unravel/docs/_build/html/_modules/unravel/cluster_stats/cluster_summary.html b/unravel/docs/_build/html/_modules/unravel/cluster_stats/cluster_summary.html index df3a3a40..a97935df 100644 --- a/unravel/docs/_build/html/_modules/unravel/cluster_stats/cluster_summary.html +++ b/unravel/docs/_build/html/_modules/unravel/cluster_stats/cluster_summary.html @@ -356,11 +356,19 @@

Source code for unravel.cluster_stats.cluster_summary

Usage if running directly after ``cluster_validation``: ------------------------------------------------------- - cluster_summary -c <path/config.ini> -e <exp dir paths> -cvd '*' -vd <path/vstats_dir> -sk <path/sample_key.csv> --groups <group1> <group2> -v + cluster_summary -c <path/config.ini> -e <exp dir paths> -cvd 'psilocybin_v_saline_tstat1_q<asterisk>' -vd <path/vstats_dir> -sk <path/sample_key.csv> --groups <group1> <group2> -hg <higher_group> -v + +Note: + - The current working directory should not have other directories when running this script for the first time. Directories from cluster_org_data are ok though. Usage if running after ``cluster_validation`` and ``cluster_org_data``: ----------------------------------------------------------------------- - cluster_summary -c <path/config.ini> -sk <path/sample_key.csv> --groups <group1> <group2> -v + cluster_summary -c <path/config.ini> -sk <path/sample_key.csv> --groups <group1> <group2> -hg <higher_group> -v + +Note: + - For the second usage, the ``-e``, ``-cvd``, and ``-vd`` arguments are not needed because the data is already in the working directory. + - Only process one comparison at a time. If you have multiple comparisons, run this script separately for each comparison in separate directories. + - Then aggregate the results as needed (e.g. to make a legend with all relevant abbeviations, copy the .xlsx files to a central location and run ``cluster_legend``). The current working directory should not have other directories when running this script for the first time. Directories from cluster_org_data are ok though. @@ -379,6 +387,9 @@

Source code for unravel.cluster_stats.cluster_summary

dir_name,condition sample01,control sample02,treatment + +If you need to rerun this script, delete the following directories and files in the current working directory: +find . -name _valid_clusters -exec rm -rf {} \; -o -name cluster_validation_summary_t-test.csv -exec rm -f {} \; -o -name cluster_validation_summary_tukey.csv -exec rm -f {} \; -o -name 3D_brains -exec rm -rf {} \; -o -name valid_clusters_tables_and_legend -exec rm -rf {} \; -o -name _valid_clusters_stats -exec rm -rf {} \; """ import argparse @@ -412,6 +423,7 @@

Source code for unravel.cluster_stats.cluster_summary

# cluster_stats --groups <group1> <group2> parser.add_argument('--groups', help='List of group prefixes. 2 groups --> t-test. >2 --> Tukey\'s tests (The first 2 groups reflect the main comparison for validation rates; for cluster_stats)', nargs='+') parser.add_argument('-cp', '--condition_prefixes', help='Condition prefixes to group related data (optional for cluster_stats)', nargs='*', default=None, action=SM) + parser.add_argument('-hg', '--higher_group', help='Specify the group that is expected to have a higher mean based on the direction of the p value map', required=True) parser.add_argument('-v', '--verbose', help='Increase verbosity. Default: False', action='store_true', default=False) parser.epilog = __doc__ @@ -421,6 +433,7 @@

Source code for unravel.cluster_stats.cluster_summary

# TODO: Could add a progress bar that advances after each subdir, but need to adapt running of the first few scripts for this. Include check for completeness (all samples have csvs [from both hemis]). Review outputs and output folders and consider consolidating them. Could make cells vs. labels are arg. Could add a raw data output organized for the SI table. # The valid cluster sunburst could have the val dir name and be copied to a central location # TODO: Consider moving find_and_copy_files() to unravel/unravel/utils.py # TODO: Move cell vs. label arg from config back to argparse and make it a required arg to prevent accidentally using the wrong metric +# TODO: Add a reset option to delete all output files and directories from the current working directory
[docs] @@ -475,7 +488,8 @@

Source code for unravel.cluster_stats.cluster_summary

stats_args = [ '--groups', *args.groups, '-alt', cfg.stats.alternate, - '-pvt', cfg.org_data.p_val_txt + '-pvt', cfg.org_data.p_val_txt, + '-hg', args.higher_group ] if args.condition_prefixes: stats_args.append(['-cp', *args.condition_prefixes]) diff --git a/unravel/docs/_build/html/_modules/unravel/cluster_stats/stats.html b/unravel/docs/_build/html/_modules/unravel/cluster_stats/stats.html index 7b7275aa..5cade26e 100644 --- a/unravel/docs/_build/html/_modules/unravel/cluster_stats/stats.html +++ b/unravel/docs/_build/html/_modules/unravel/cluster_stats/stats.html @@ -356,14 +356,18 @@

Source code for unravel.cluster_stats.stats

 
 T-test usage:  
 ------------- 
-    cluster_stats --groups <group1> <group2>
+    cluster_stats --groups <group1> <group2> -hg <group1|group2>
 
 Tukey's test usage: 
 -------------------
-    cluster_stats --groups <group1> <group2> <group3> <group4> ...
+    cluster_stats --groups <group1> <group2> <group3> <group4> ... -hg <group1|group2>
 
-Input subdirs: 
-    <asterisk> 
+Note: 
+    - Organize data in directories for each comparison (e.g., psilocybin > saline, etc.)
+    - This script will loop through all directories in the current working dir and process the data in each subdir.
+    - Each subdir should contain .csv files with the density data for each cluster.
+    - The first 2 groups reflect the main comparison for validation rates.
+    - Clusters are not considered valid if the effect direction does not match the expected direction.
 
 Input files: 
     <asterisk>_density_data.csv from ``cluster_validation`` (e.g., in each subdir named after the rev_cluster_index.nii.gz file)    
@@ -417,6 +421,7 @@ 

Source code for unravel.cluster_stats.stats

     parser = argparse.ArgumentParser(formatter_class=SuppressMetavar)
     parser.add_argument('--groups', help='List of group prefixes. 2 groups --> t-test. >2 --> Tukey\'s tests (The first 2 groups reflect the main comparison for validation rates)',  nargs='+', required=True)
     parser.add_argument('-cp', '--condition_prefixes', help='Condition prefixes to group data (e.g., see info for examples)',  nargs='*', default=None, action=SM)
+    parser.add_argument('-hg', '--higher_group', help='Specify the group that is expected to have a higher mean based on the direction of the p value map', required=True)
     parser.add_argument('-alt', "--alternate", help="Number of tails and direction ('two-sided' [default], 'less' [group1 < group2], or 'greater')", default='two-sided', action=SM)
     parser.add_argument('-pvt', '--p_val_txt', help='Name of the file w/ the corrected p value thresh (e.g., from cluster_fdr). Default: p_value_threshold.txt', default='p_value_threshold.txt', action=SM)
     parser.add_argument('-v', '--verbose', help='Increase verbosity. Default: False', action='store_true', default=False)
@@ -424,6 +429,7 @@ 

Source code for unravel.cluster_stats.stats

     return parser.parse_args()
+ # TODO: Test grouping of conditions. Test w/ label densities data. Could set up dunnett's tests and/or holm sidak tests. @@ -633,8 +639,18 @@

Source code for unravel.cluster_stats.stats

     args = parse_args()
     current_dir = Path.cwd()
 
+    # Check for subdirectories in the current working directory
+    subdirs = [d for d in current_dir.iterdir() if d.is_dir()]
+    if not subdirs:
+        print(f"    [red1]No directories found in the current working directory: {current_dir}")
+        return
+    if subdirs[0].name == '_valid_clusters_stats':
+        print(f"    [red1]Only the '_valid_clusters_stats' directory found in the current working directory: {current_dir}")
+        print("    [red1]The script was likely run from a subdirectory instead of a directory containing subdirectories.")
+        return
+
     # Iterate over all subdirectories in the current working directory
-    for subdir in [d for d in current_dir.iterdir() if d.is_dir()]:
+    for subdir in subdirs:
         print(f"\nProcessing directory: [default bold]{subdir.name}[/]")
 
         # Load all .csv files in the current subdirectory
@@ -668,7 +684,7 @@ 

Source code for unravel.cluster_stats.stats

         # Aggregate the data from all .csv files and pool the data if hemispheres are present
         data_df = cluster_validation_data_df(density_col, has_hemisphere, csv_files, args.groups, data_col, data_col_pooled, args.condition_prefixes)
         if data_df.empty:
-            print("No data files match the specified groups. The prefixes of the csv files must match the group names.")
+            print("    [red1]No data files match the specified groups. The prefixes of the csv files must match the group names.")
             continue
 
         # Check the number of groups and perform the appropriate statistical test
@@ -687,24 +703,36 @@ 

Source code for unravel.cluster_stats.stats

             print(f"Running [gold1 bold]Tukey's tests")
             stats_df = perform_tukey_test(data_df, args.groups, density_col)
 
-        # Save the results to a .csv file
-        stats_results_csv = output_dir / 't-test_results.csv' if len(args.groups) == 2 else output_dir / 'tukey_results.csv'
-        stats_df.to_csv(stats_results_csv, index=False)
+        # Validate the clusters based on the expected direction of the effect
+        if args.higher_group not in args.groups:
+            print(f"    [red1]Error: The specified higher group '{args.higher_group}' is not one of the groups.")
+            return
+        expected_direction = '>' if args.higher_group == args.groups[0] else '<'
+        incongruent_clusters = stats_df[(stats_df['higher_mean_group'] != args.higher_group) & (stats_df['significance'] != 'n.s.')]['cluster_ID'].tolist()
 
-        # Get the overall mean density for each condition and determine the effect direction
-        group_one_mean = data_df[data_df['condition'] == args.groups[0]][density_col].mean()
-        group_two_mean = data_df[data_df['condition'] == args.groups[1]][density_col].mean()
-        if group_one_mean > group_two_mean:
-            effect_direction = '>'
-        elif group_one_mean < group_two_mean:
-            effect_direction = '<'
-        elif group_one_mean == group_two_mean: 
-            effect_direction = '=='
+        with open(output_dir / 'incongruent_clusters.txt', 'w') as f:
+            f.write('\n'.join(map(str, incongruent_clusters)))
+        
+        print(f"Expected effect direction: [green bold]{args.groups[0]} {expected_direction} {args.groups[1]}")
 
-        if len(args.groups) == 2:
-            print(f"Effect direction: [green bold]{args.groups[0]} {effect_direction} {args.groups[1]}")
+        if not incongruent_clusters:
+            print("All significant clusters are congruent with the expected direction")
         else:
-            print(f"Effect direction of interest: [green bold]{args.groups[0]} {effect_direction} {args.groups[1]}")
+            print(f"{len(incongruent_clusters)} of {total_clusters} clusters are incongruent with the expected direction.")
+            print (f"Although they had a significant difference, they not considered valid.")
+            print (f"'incongruent_clusters.txt' lists cluster IDs for incongruent clusters.")
+
+        # Invalidate clusters that are incongruent with the expected direction
+        stats_df['significance'] = stats_df.apply(lambda row: 'n.s.' if row['cluster_ID'] in incongruent_clusters else row['significance'], axis=1)
+
+        # Remove invalidated clusters from the list of significant clusters
+        significant_clusters = stats_df[stats_df['significance'] != 'n.s.']['cluster_ID']
+        significant_cluster_ids = significant_clusters.unique().tolist()
+        significant_cluster_ids_str = ' '.join(map(str, significant_cluster_ids))
+
+        # Save the results to a .csv file
+        stats_results_csv = output_dir / 't-test_results.csv' if len(args.groups) == 2 else output_dir / 'tukey_results.csv'
+        stats_df.to_csv(stats_results_csv, index=False)
 
         # Extract the FDR q value from the first csv file (float after 'FDR' or 'q' in the file name)
         first_csv_name = csv_files[0]
@@ -715,7 +743,7 @@ 

Source code for unravel.cluster_stats.stats

             p_val_txt = next(Path(subdir).glob('**/*' + args.p_val_txt), None)
             if p_val_txt is None:
                 # If no file is found, print an error message and skip further processing for this directory
-                print(f"No p-value file found matching '{args.p_val_txt}' in directory {subdir}. Please check the file name and path.")
+                print(f"    [red1]No p-value file found matching '{args.p_val_txt}' in directory {subdir}. Please check the file name and path.")
                 import sys ; sys.exit()
             with open(p_val_txt, 'r') as f:
                 p_value_thresh = float(f.read())
@@ -726,10 +754,7 @@ 

Source code for unravel.cluster_stats.stats

 
         # Print validation info: 
         print(f"FDR q: [cyan bold]{fdr_q}[/] == p-value threshold: [cyan bold]{p_value_thresh}")
-        significant_clusters = stats_df[stats_df['p-value'] < 0.05]['cluster_ID']
-        significant_cluster_ids = significant_clusters.unique().tolist()
-        significant_cluster_ids_str = ' '.join(map(str, significant_cluster_ids))
-        print(f"Valid cluster IDs: [blue bold]{significant_cluster_ids_str}")
+        print(f"Valid cluster IDs: {significant_cluster_ids_str}")
         print(f"[default]# of valid / total #: [bright_magenta]{len(significant_cluster_ids)} / {total_clusters}")
         validation_rate = len(significant_cluster_ids) / total_clusters * 100
         print(f"Cluster validation rate: [purple bold]{validation_rate:.2f}%")
@@ -744,7 +769,7 @@ 

Source code for unravel.cluster_stats.stats

         # Save the # of sig. clusters, total clusters, and cluster validation rate to a .txt file
         validation_inf_txt = output_dir / 'cluster_validation_info_t-test.txt' if len(args.groups) == 2 else output_dir / 'cluster_validation_info_tukey.txt'
         with open(validation_inf_txt, 'w') as f:
-            f.write(f"Direction: {args.groups[0]} {effect_direction} {args.groups[1]}\n")
+            f.write(f"Direction: {args.groups[0]} {expected_direction} {args.groups[1]}\n")
             f.write(f"FDR q: {fdr_q} == p-value threshold {p_value_thresh}\n")
             f.write(f"Valid cluster IDs: {significant_cluster_ids_str}\n")
             f.write(f"# of valid / total #: {len(significant_cluster_ids)} / {total_clusters}\n")
@@ -757,7 +782,7 @@ 

Source code for unravel.cluster_stats.stats

         
         # Save cluster validation info for ``cluster_summary`` 
         data_df = pd.DataFrame({
-            'Direction': [f"{args.groups[0]} {effect_direction} {args.groups[1]}"],
+            'Direction': [f"{args.groups[0]} {expected_direction} {args.groups[1]}"],
             'FDR q': [fdr_q],
             'P value thresh': [p_value_thresh],
             'Valid clusters': [significant_cluster_ids_str],
diff --git a/unravel/docs/_build/html/searchindex.js b/unravel/docs/_build/html/searchindex.js
index 0942646c..e007fb4d 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:": [[96, "cli-usage"]], "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"]], "Editing .bashrc or .zshrc": [[2, "editing-bashrc-or-zshrc"]], "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"]], "Getting started": [[1, "getting-started"]], "Guide": [[0, "guide"]], "Help on commands": [[0, "help-on-commands"]], "Helper Functions:": [[28, "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"]], "Listing commands": [[0, "listing-commands"]], "Log exp paths, commands, etc.": [[0, "log-exp-paths-commands-etc"]], "Main Functions:": [[28, "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": [[75, "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"]], "Open source options for stitching": [[0, null]], "Optional: clean tifs": [[0, "optional-clean-tifs"]], "Overview and steps for voxel-wise stats": [[0, null]], "Python usage:": [[65, "python-usage"], [96, "python-usage"]], "Region-wise stats": [[0, "region-wise-stats"]], "Registration": [[0, "registration"]], "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:": [[23, "sorting-by-hierarchy-and-volume"]], "Stitch z-stacks": [[0, "stitch-z-stacks"]], "Subpackages": [[75, "subpackages"]], "Support is welcome for": [[1, "support-is-welcome-for"]], "Syntax": [[0, null]], "T-test usage:": [[20, "t-test-usage"]], "Todo": [[0, "id1"], [0, "id2"], [0, "id5"], [2, "id1"]], "Train an Ilastik project": [[0, "train-an-ilastik-project"], [0, null]], "Tukey\u2019s test usage:": [[20, "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": [[3, "usage"], [6, "usage"], [7, "usage"], [9, "usage"], [11, "usage"], [12, "usage"], [13, "usage"], [14, "usage"], [15, "usage"], [17, "usage"], [18, "usage"], [19, "usage"], [61, "usage"]], "Usage for Tukey\u2019s tests w/ reordering and renaming of conditions:": [[62, "usage-for-tukey-s-tests-w-reordering-and-renaming-of-conditions"]], "Usage for activating sample?? dirs for certain conditions:": [[83, "usage-for-activating-sample-dirs-for-certain-conditions"]], "Usage for checking which clusters are present if the min cluster size was 100 voxels:": [[58, "usage-for-checking-which-clusters-are-present-if-the-min-cluster-size-was-100-voxels"]], "Usage for forward warping atlas to tissue space:": [[98, "usage-for-forward-warping-atlas-to-tissue-space"]], "Usage for inverse warping tissue to atlas space:": [[98, "usage-for-inverse-warping-tissue-to-atlas-space"]], "Usage for printing all non-zero intensities:": [[58, "usage-for-printing-all-non-zero-intensities"]], "Usage for printing the number of voxels for each intensity that is present:": [[58, "usage-for-printing-the-number-of-voxels-for-each-intensity-that-is-present"]], "Usage for renaming directories:": [[81, "usage-for-renaming-directories"]], "Usage for renaming files:": [[81, "usage-for-renaming-files"]], "Usage for t-tests:": [[62, "usage-for-t-tests"]], "Usage for toggling all sample?? dirs to active:": [[83, "usage-for-toggling-all-sample-dirs-to-active"]], "Usage for when metadata is extractable:": [[36, "usage-for-when-metadata-is-extractable"]], "Usage for when metadata is not extractable:": [[36, "usage-for-when-metadata-is-not-extractable"]], "Usage for when sample?? is already in the name of files being copied:": [[77, "usage-for-when-sample-is-already-in-the-name-of-files-being-copied"]], "Usage for z-score scaling (if 8 bit is needed):": [[35, "usage-for-z-score-scaling-if-8-bit-is-needed"]], "Usage if running after cluster_validation and cluster_org_data:": [[4, "usage-if-running-after-cluster-validation-and-cluster-org-data"]], "Usage if running directly after cluster_validation:": [[4, "usage-if-running-directly-after-cluster-validation"]], "Usage if the atlas is already in native space from warp_to_native:": [[59, "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):": [[59, "usage-if-the-native-atlas-is-not-available-it-is-not-saved-faster"]], "Usage to prep for seg_brain_mask (if \u2013mask_dir  and -e  were not specified in reg_prep):": [[72, "usage-to-prep-for-seg-brain-mask-if-mask-dir-path-mask-dir-and-e-exp-dir-paths-were-not-specified-in-reg-prep"]], "Usage to prep for seg_ilastik to segment full resolution immunofluorescence images:": [[72, "usage-to-prep-for-seg-ilastik-to-segment-full-resolution-immunofluorescence-images"]], "Usage to prepend sample?? to the name of files being copied:": [[77, "usage-to-prepend-sample-to-the-name-of-files-being-copied"]], "Usage to print all commands and module names:": [[76, "usage-to-print-all-commands-and-module-names"]], "Usage to print common commands and descriptions:": [[76, "usage-to-print-common-commands-and-descriptions"]], "Usage to replace voxels in image with the mean intensity in the brain where mask > 0:": [[84, "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):": [[84, "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):": [[84, "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):": [[94, "usage-w-a-tissue-mask-warped-to-atlas-space"]], "Usage w/ an atlas mask (warped to atlas space):": [[94, "usage-w-an-atlas-mask-warped-to-atlas-space"]], "Usage w/ both masks for side-specific z-scoring:": [[94, "usage-w-both-masks-for-side-specific-z-scoring"]], "Usage with a custom atlas:": [[62, "usage-with-a-custom-atlas"]], "Usage:": [[5, "usage"], [16, "usage"], [21, "usage"], [22, "usage"], [23, "usage"], [32, "usage"], [33, "usage"], [34, "usage"], [35, "usage"], [37, "usage"], [38, "usage"], [39, "usage"], [40, "usage"], [41, "usage"], [42, "usage"], [44, "usage"], [45, "usage"], [46, "usage"], [48, "usage"], [49, "usage"], [50, "usage"], [52, "usage"], [53, "usage"], [54, "usage"], [55, "usage"], [57, "usage"], [60, "usage"], [63, "usage"], [65, "usage"], [66, "usage"], [67, "usage"], [68, "usage"], [69, "usage"], [71, "usage"], [73, "usage"], [78, "usage"], [79, "usage"], [80, "usage"], [85, "usage"], [86, "usage"], [87, "usage"], [88, "usage"], [91, "usage"], [93, "usage"], [95, "usage"]], "Voxel-wise stats": [[0, "voxel-wise-stats"]], "cluster_fdr": [[0, "cluster-fdr"]], "cluster_fdr_range": [[0, "cluster-fdr-range"]], "cluster_mirror_indices": [[0, "cluster-mirror-indices"]], "cluster_summary": [[0, "cluster-summary"]], "cluster_validation": [[0, "id4"]], "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, "id3"]], "seg_ilastik": [[0, "seg-ilastik"]], "unravel package": [[75, "unravel-package"]], "unravel.cluster_stats package": [[24, "unravel-cluster-stats-package"]], "unravel.cluster_stats.brain_model module": [[3, "module-unravel.cluster_stats.brain_model"]], "unravel.cluster_stats.cluster_summary module": [[4, "module-unravel.cluster_stats.cluster_summary"]], "unravel.cluster_stats.cluster_validation module": [[5, "module-unravel.cluster_stats.cluster_validation"]], "unravel.cluster_stats.crop module": [[6, "module-unravel.cluster_stats.crop"]], "unravel.cluster_stats.effect_sizes package": [[10, "unravel-cluster-stats-effect-sizes-package"]], "unravel.cluster_stats.effect_sizes.effect_sizes module": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute module": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative module": [[9, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative"]], "unravel.cluster_stats.fdr module": [[11, "module-unravel.cluster_stats.fdr"]], "unravel.cluster_stats.fdr_range module": [[12, "module-unravel.cluster_stats.fdr_range"]], "unravel.cluster_stats.find_incongruent_clusters module": [[13, "module-unravel.cluster_stats.find_incongruent_clusters"]], "unravel.cluster_stats.group_bilateral_data module": [[14, "module-unravel.cluster_stats.group_bilateral_data"]], "unravel.cluster_stats.index module": [[15, "module-unravel.cluster_stats.index"]], "unravel.cluster_stats.legend module": [[16, "module-unravel.cluster_stats.legend"]], "unravel.cluster_stats.org_data module": [[17, "module-unravel.cluster_stats.org_data"]], "unravel.cluster_stats.prism module": [[18, "module-unravel.cluster_stats.prism"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices module": [[19, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices"]], "unravel.cluster_stats.stats module": [[20, "module-unravel.cluster_stats.stats"]], "unravel.cluster_stats.stats_table module": [[21, "module-unravel.cluster_stats.stats_table"]], "unravel.cluster_stats.sunburst module": [[22, "module-unravel.cluster_stats.sunburst"]], "unravel.cluster_stats.table module": [[23, "module-unravel.cluster_stats.table"]], "unravel.core package": [[30, "unravel-core-package"]], "unravel.core.argparse_utils module": [[25, "module-unravel.core.argparse_utils"]], "unravel.core.argparse_utils_rich module": [[26, "module-unravel.core.argparse_utils_rich"]], "unravel.core.config module": [[27, "module-unravel.core.config"]], "unravel.core.img_io module": [[28, "module-unravel.core.img_io"]], "unravel.core.img_tools module": [[29, "module-unravel.core.img_tools"]], "unravel.core.utils module": [[31, "module-unravel.core.utils"]], "unravel.image_io package": [[43, "unravel-image-io-package"]], "unravel.image_io.h5_to_tifs module": [[32, "module-unravel.image_io.h5_to_tifs"]], "unravel.image_io.img_to_npy module": [[33, "module-unravel.image_io.img_to_npy"]], "unravel.image_io.io_img module": [[34, "module-unravel.image_io.io_img"]], "unravel.image_io.io_nii module": [[35, "module-unravel.image_io.io_nii"]], "unravel.image_io.metadata module": [[36, "module-unravel.image_io.metadata"]], "unravel.image_io.nii_hd module": [[37, "module-unravel.image_io.nii_hd"]], "unravel.image_io.nii_info module": [[38, "module-unravel.image_io.nii_info"]], "unravel.image_io.nii_to_tifs module": [[39, "module-unravel.image_io.nii_to_tifs"]], "unravel.image_io.nii_to_zarr module": [[40, "module-unravel.image_io.nii_to_zarr"]], "unravel.image_io.reorient_nii module": [[41, "module-unravel.image_io.reorient_nii"]], "unravel.image_io.tif_to_tifs module": [[42, "module-unravel.image_io.tif_to_tifs"]], "unravel.image_io.zarr_to_nii module": [[44, "module-unravel.image_io.zarr_to_nii"]], "unravel.image_tools package": [[56, "unravel-image-tools-package"]], "unravel.image_tools.DoG module": [[45, "module-unravel.image_tools.DoG"]], "unravel.image_tools.atlas package": [[47, "unravel-image-tools-atlas-package"]], "unravel.image_tools.atlas.relabel_nii module": [[46, "module-unravel.image_tools.atlas.relabel_nii"]], "unravel.image_tools.atlas.wireframe module": [[48, "module-unravel.image_tools.atlas.wireframe"]], "unravel.image_tools.avg module": [[49, "module-unravel.image_tools.avg"]], "unravel.image_tools.bbox module": [[50, "module-unravel.image_tools.bbox"]], "unravel.image_tools.extend module": [[51, "module-unravel.image_tools.extend"]], "unravel.image_tools.max module": [[52, "module-unravel.image_tools.max"]], "unravel.image_tools.pad module": [[53, "module-unravel.image_tools.pad"]], "unravel.image_tools.rb module": [[54, "module-unravel.image_tools.rb"]], "unravel.image_tools.spatial_averaging module": [[55, "module-unravel.image_tools.spatial_averaging"]], "unravel.image_tools.transpose_axes module": [[57, "module-unravel.image_tools.transpose_axes"]], "unravel.image_tools.unique_intensities module": [[58, "module-unravel.image_tools.unique_intensities"]], "unravel.region_stats package": [[64, "unravel-region-stats-package"]], "unravel.region_stats.rstats module": [[59, "module-unravel.region_stats.rstats"]], "unravel.region_stats.rstats_mean_IF module": [[60, "module-unravel.region_stats.rstats_mean_IF"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels module": [[61, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels"]], "unravel.region_stats.rstats_mean_IF_summary module": [[62, "module-unravel.region_stats.rstats_mean_IF_summary"]], "unravel.region_stats.rstats_summary module": [[63, "module-unravel.region_stats.rstats_summary"]], "unravel.register package": [[70, "unravel-register-package"]], "unravel.register.affine_initializer module": [[65, "module-unravel.register.affine_initializer"]], "unravel.register.reg module": [[66, "module-unravel.register.reg"]], "unravel.register.reg_check module": [[67, "module-unravel.register.reg_check"]], "unravel.register.reg_check_brain_mask module": [[68, "module-unravel.register.reg_check_brain_mask"]], "unravel.register.reg_prep module": [[69, "module-unravel.register.reg_prep"]], "unravel.segment package": [[74, "unravel-segment-package"]], "unravel.segment.brain_mask module": [[71, "module-unravel.segment.brain_mask"]], "unravel.segment.copy_tifs module": [[72, "module-unravel.segment.copy_tifs"]], "unravel.segment.ilastik_pixel_classification module": [[73, "module-unravel.segment.ilastik_pixel_classification"]], "unravel.unravel_commands module": [[76, "module-unravel.unravel_commands"]], "unravel.utilities package": [[82, "unravel-utilities-package"]], "unravel.utilities.aggregate_files_from_sample_dirs module": [[77, "module-unravel.utilities.aggregate_files_from_sample_dirs"]], "unravel.utilities.aggregate_files_w_recursive_search module": [[78, "module-unravel.utilities.aggregate_files_w_recursive_search"]], "unravel.utilities.clean_tif_dirs module": [[79, "module-unravel.utilities.clean_tif_dirs"]], "unravel.utilities.prepend_conditions module": [[80, "module-unravel.utilities.prepend_conditions"]], "unravel.utilities.rename module": [[81, "module-unravel.utilities.rename"]], "unravel.utilities.toggle_samples module": [[83, "module-unravel.utilities.toggle_samples"]], "unravel.voxel_stats package": [[90, "unravel-voxel-stats-package"]], "unravel.voxel_stats.apply_mask module": [[84, "module-unravel.voxel_stats.apply_mask"]], "unravel.voxel_stats.hemi_to_LR_avg module": [[85, "module-unravel.voxel_stats.hemi_to_LR_avg"]], "unravel.voxel_stats.mirror module": [[86, "module-unravel.voxel_stats.mirror"]], "unravel.voxel_stats.other package": [[89, "unravel-voxel-stats-other-package"]], "unravel.voxel_stats.other.IF_outliers module": [[87, "module-unravel.voxel_stats.other.IF_outliers"]], "unravel.voxel_stats.other.r_to_p module": [[88, "module-unravel.voxel_stats.other.r_to_p"]], "unravel.voxel_stats.vstats module": [[91, "module-unravel.voxel_stats.vstats"]], "unravel.voxel_stats.vstats_prep module": [[92, "module-unravel.voxel_stats.vstats_prep"]], "unravel.voxel_stats.whole_to_LR_avg module": [[93, "module-unravel.voxel_stats.whole_to_LR_avg"]], "unravel.voxel_stats.z_score module": [[94, "module-unravel.voxel_stats.z_score"]], "unravel.warp package": [[97, "unravel-warp-package"]], "unravel.warp.to_atlas module": [[95, "module-unravel.warp.to_atlas"]], "unravel.warp.to_native module": [[96, "module-unravel.warp.to_native"]], "unravel.warp.warp module": [[98, "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/cluster_summary", "unravel/cluster_stats/cluster_validation", "unravel/cluster_stats/crop", "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/org_data", "unravel/cluster_stats/prism", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices", "unravel/cluster_stats/stats", "unravel/cluster_stats/stats_table", "unravel/cluster_stats/sunburst", "unravel/cluster_stats/table", "unravel/cluster_stats/toc", "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/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/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/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/toc", "unravel/toc", "unravel/unravel_commands", "unravel/utilities/aggregate_files_from_sample_dirs", "unravel/utilities/aggregate_files_w_recursive_search", "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/to_atlas", "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/cluster_summary.rst", "unravel/cluster_stats/cluster_validation.rst", "unravel/cluster_stats/crop.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/org_data.rst", "unravel/cluster_stats/prism.rst", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices.rst", "unravel/cluster_stats/stats.rst", "unravel/cluster_stats/stats_table.rst", "unravel/cluster_stats/sunburst.rst", "unravel/cluster_stats/table.rst", "unravel/cluster_stats/toc.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/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/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/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/toc.rst", "unravel/toc.rst", "unravel/unravel_commands.rst", "unravel/utilities/aggregate_files_from_sample_dirs.rst", "unravel/utilities/aggregate_files_w_recursive_search.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/to_atlas.rst", "unravel/warp/to_native.rst", "unravel/warp/toc.rst", "unravel/warp/warp.rst"], "indexentries": {"affine_initializer_wrapper() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.affine_initializer_wrapper", false]], "aggregate_files_from_sample_dirs() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[77, "unravel.utilities.aggregate_files_from_sample_dirs.aggregate_files_from_sample_dirs", false]], "apply_2d_mean_filter() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.apply_2D_mean_filter", false]], "apply_mask_to_ndarray() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.apply_mask_to_ndarray", false]], "apply_rgb_to_cell() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.apply_rgb_to_cell", false]], "attrdict (class in unravel.core.config)": [[27, "unravel.core.config.AttrDict", false]], "averagetimeperiterationcolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.AverageTimePerIterationColumn", false]], "bias_correction() (in module unravel.register.reg)": [[66, "unravel.register.reg.bias_correction", false]], "calculate_fragments() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.calculate_fragments", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.calculate_mean_intensity", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.calculate_mean_intensity", false]], "calculate_regional_cell_densities() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.calculate_regional_cell_densities", false]], "calculate_regional_volumes() (in module unravel.cluster_stats.sunburst)": [[22, "unravel.cluster_stats.sunburst.calculate_regional_volumes", false]], "calculate_regional_volumes() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.calculate_regional_volumes", false]], "calculate_resampled_padded_dimensions() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.calculate_resampled_padded_dimensions", false]], "calculate_top_regions() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.calculate_top_regions", false]], "can_collapse() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.can_collapse", false]], "check_fdr_command() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.check_fdr_command", false]], "clean_tifs_dir() (in module unravel.utilities.clean_tif_dirs)": [[79, "unravel.utilities.clean_tif_dirs.clean_tifs_dir", false]], "cluster_bbox() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.cluster_bbox", false]], "cluster_bbox_parallel() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.cluster_bbox_parallel", false]], "cluster_ids() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.cluster_IDs", false]], "cluster_index() (in module unravel.cluster_stats.fdr)": [[11, "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.stats)": [[20, "unravel.cluster_stats.stats.cluster_validation_data_df", false]], "collapse_hierarchy() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.collapse_hierarchy", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.condition_selector", false]], "config (class in unravel.core.config)": [[27, "unravel.core.config.Config", false]], "configuration (class in unravel.core.config)": [[27, "unravel.core.config.Configuration", false]], "convert_dtype() (in module unravel.image_io.io_nii)": [[35, "unravel.image_io.io_nii.convert_dtype", false]], "copy_files() (in module unravel.core.utils)": [[31, "unravel.core.utils.copy_files", false]], "copy_nii_header() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.copy_nii_header", false]], "copy_specific_slices() (in module unravel.segment.copy_tifs)": [[72, "unravel.segment.copy_tifs.copy_specific_slices", false]], "copy_stats_files() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.copy_stats_files", false]], "count_cells() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.count_cells", false]], "count_cells_in_regions() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.count_cells_in_regions", false]], "count_files() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.count_files", false]], "cp() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.cp", false]], "create_design_ttest2() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.create_design_ttest2", false]], "crop() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.crop", false]], "crop_outer_space() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.crop_outer_space", false]], "custommofncompletecolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.CustomMofNCompleteColumn", false]], "customtimeelapsedcolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.CustomTimeElapsedColumn", false]], "customtimeremainingcolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.CustomTimeRemainingColumn", false]], "define_zarr_to_nii_output() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.define_zarr_to_nii_output", false]], "density_in_cluster() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.density_in_cluster", false]], "density_in_cluster_parallel() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.density_in_cluster_parallel", false]], "detect_outliers() (in module unravel.voxel_stats.other.if_outliers)": [[87, "unravel.voxel_stats.other.IF_outliers.detect_outliers", false]], "difference_of_gaussians() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.difference_of_gaussians", false]], "dilate_mask() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.dilate_mask", false]], "extend_one_side_3d_array() (in module unravel.image_tools.extend)": [[51, "unravel.image_tools.extend.extend_one_side_3d_array", false]], "extract_resolution() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.extract_resolution", false]], "extract_unique_regions_from_file() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.extract_unique_regions_from_file", false]], "fdr() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.fdr", false]], "fdr_range() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.fdr_range", false]], "fill_na_with_last_known() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.fill_na_with_last_known", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.filter_dataframe", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "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)": [[62, "unravel.region_stats.rstats_mean_IF_summary.filter_region_ids", false]], "find_and_copy_files() (in module unravel.utilities.aggregate_files_w_recursive_search)": [[78, "unravel.utilities.aggregate_files_w_recursive_search.find_and_copy_files", false]], "find_bounding_box() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.find_bounding_box", false]], "find_incongruent_clusters() (in module unravel.cluster_stats.find_incongruent_clusters)": [[13, "unravel.cluster_stats.find_incongruent_clusters.find_incongruent_clusters", false]], "find_largest_h5_file() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.find_largest_h5_file", false]], "find_largest_tif_file() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.find_largest_tif_file", false]], "find_matching_directory() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.find_matching_directory", false]], "find_max_intensity() (in module unravel.image_tools.max)": [[52, "unravel.image_tools.max.find_max_intensity", false]], "generate_summary_table() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.generate_summary_table", false]], "generate_sunburst() (in module unravel.cluster_stats.index)": [[15, "unravel.cluster_stats.index.generate_sunburst", false]], "generate_wireframe() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.generate_wireframe", false]], "get_all_region_ids() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.get_all_region_ids", false]], "get_atlas_region_at_coords() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.get_atlas_region_at_coords", false]], "get_dims_from_tifs() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.get_dims_from_tifs", false]], "get_dir_name_from_args() (in module unravel.core.utils)": [[31, "unravel.core.utils.get_dir_name_from_args", false]], "get_fill_color() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.get_fill_color", false]], "get_groups_info() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.get_groups_info", false]], "get_max_region_id_from_csvs() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "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)": [[62, "unravel.region_stats.rstats_mean_IF_summary.get_region_details", false]], "get_region_details() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.get_region_details", false]], "get_samples() (in module unravel.core.utils)": [[31, "unravel.core.utils.get_samples", false]], "get_top_regions_and_percent_vols() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.get_top_regions_and_percent_vols", false]], "group_hemisphere_data() (in module unravel.cluster_stats.group_bilateral_data)": [[14, "unravel.cluster_stats.group_bilateral_data.group_hemisphere_data", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.hedges_g", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[85, "unravel.voxel_stats.hemi_to_LR_avg.hemi_to_LR_avg", false]], "initialize_progress_bar() (in module unravel.core.utils)": [[31, "unravel.core.utils.initialize_progress_bar", false]], "load_3d_img() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_3D_img", false]], "load_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.load_3D_tif", false]], "load_config() (in module unravel.core.utils)": [[31, "unravel.core.utils.load_config", false]], "load_czi() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_czi", false]], "load_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.load_data", false]], "load_h5() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_h5", false]], "load_h5() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.load_h5", false]], "load_image_metadata_from_txt() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_image_metadata_from_txt", false]], "load_mask() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.load_mask", false]], "load_nii() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_nii", false]], "load_nii_orientation() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_nii_orientation", false]], "load_nii_subset() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_nii_subset", false]], "load_text_from_file() (in module unravel.core.utils)": [[31, "unravel.core.utils.load_text_from_file", false]], "load_tif() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.load_tif", false]], "load_tif() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.load_tif", false]], "load_tifs() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_tifs", false]], "load_zarr() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_zarr", false]], "main() (in module unravel.cluster_stats.brain_model)": [[3, "unravel.cluster_stats.brain_model.main", false]], "main() (in module unravel.cluster_stats.cluster_summary)": [[4, "unravel.cluster_stats.cluster_summary.main", false]], "main() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.main", false]], "main() (in module unravel.cluster_stats.crop)": [[6, "unravel.cluster_stats.crop.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.main", false]], "main() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.main", false]], "main() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.main", false]], "main() (in module unravel.cluster_stats.find_incongruent_clusters)": [[13, "unravel.cluster_stats.find_incongruent_clusters.main", false]], "main() (in module unravel.cluster_stats.group_bilateral_data)": [[14, "unravel.cluster_stats.group_bilateral_data.main", false]], "main() (in module unravel.cluster_stats.index)": [[15, "unravel.cluster_stats.index.main", false]], "main() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.main", false]], "main() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.main", false]], "main() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.main", false]], "main() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[19, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.main", false]], "main() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.main", false]], "main() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.main", false]], "main() (in module unravel.cluster_stats.sunburst)": [[22, "unravel.cluster_stats.sunburst.main", false]], "main() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.main", false]], "main() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.main", false]], "main() (in module unravel.image_io.img_to_npy)": [[33, "unravel.image_io.img_to_npy.main", false]], "main() (in module unravel.image_io.io_img)": [[34, "unravel.image_io.io_img.main", false]], "main() (in module unravel.image_io.io_nii)": [[35, "unravel.image_io.io_nii.main", false]], "main() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.main", false]], "main() (in module unravel.image_io.nii_hd)": [[37, "unravel.image_io.nii_hd.main", false]], "main() (in module unravel.image_io.nii_info)": [[38, "unravel.image_io.nii_info.main", false]], "main() (in module unravel.image_io.nii_to_tifs)": [[39, "unravel.image_io.nii_to_tifs.main", false]], "main() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.main", false]], "main() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.main", false]], "main() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.main", false]], "main() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.main", false]], "main() (in module unravel.image_tools.atlas.relabel_nii)": [[46, "unravel.image_tools.atlas.relabel_nii.main", false]], "main() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.main", false]], "main() (in module unravel.image_tools.avg)": [[49, "unravel.image_tools.avg.main", false]], "main() (in module unravel.image_tools.bbox)": [[50, "unravel.image_tools.bbox.main", false]], "main() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.main", false]], "main() (in module unravel.image_tools.extend)": [[51, "unravel.image_tools.extend.main", false]], "main() (in module unravel.image_tools.max)": [[52, "unravel.image_tools.max.main", false]], "main() (in module unravel.image_tools.pad)": [[53, "unravel.image_tools.pad.main", false]], "main() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.main", false]], "main() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.main", false]], "main() (in module unravel.image_tools.transpose_axes)": [[57, "unravel.image_tools.transpose_axes.main", false]], "main() (in module unravel.image_tools.unique_intensities)": [[58, "unravel.image_tools.unique_intensities.main", false]], "main() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.main", false]], "main() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.main", false]], "main() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.main", false]], "main() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.main", false]], "main() (in module unravel.register.reg)": [[66, "unravel.register.reg.main", false]], "main() (in module unravel.register.reg_check)": [[67, "unravel.register.reg_check.main", false]], "main() (in module unravel.register.reg_check_brain_mask)": [[68, "unravel.register.reg_check_brain_mask.main", false]], "main() (in module unravel.register.reg_prep)": [[69, "unravel.register.reg_prep.main", false]], "main() (in module unravel.segment.brain_mask)": [[71, "unravel.segment.brain_mask.main", false]], "main() (in module unravel.segment.copy_tifs)": [[72, "unravel.segment.copy_tifs.main", false]], "main() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.main", false]], "main() (in module unravel.unravel_commands)": [[76, "unravel.unravel_commands.main", false]], "main() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[77, "unravel.utilities.aggregate_files_from_sample_dirs.main", false]], "main() (in module unravel.utilities.aggregate_files_w_recursive_search)": [[78, "unravel.utilities.aggregate_files_w_recursive_search.main", false]], "main() (in module unravel.utilities.clean_tif_dirs)": [[79, "unravel.utilities.clean_tif_dirs.main", false]], "main() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.main", false]], "main() (in module unravel.utilities.rename)": [[81, "unravel.utilities.rename.main", false]], "main() (in module unravel.utilities.toggle_samples)": [[83, "unravel.utilities.toggle_samples.main", false]], "main() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.main", false]], "main() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[85, "unravel.voxel_stats.hemi_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.mirror)": [[86, "unravel.voxel_stats.mirror.main", false]], "main() (in module unravel.voxel_stats.other.if_outliers)": [[87, "unravel.voxel_stats.other.IF_outliers.main", false]], "main() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.main", false]], "main() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.main", false]], "main() (in module unravel.voxel_stats.vstats_prep)": [[92, "unravel.voxel_stats.vstats_prep.main", false]], "main() (in module unravel.voxel_stats.whole_to_lr_avg)": [[93, "unravel.voxel_stats.whole_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.z_score)": [[94, "unravel.voxel_stats.z_score.main", false]], "main() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.main", false]], "main() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.main", false]], "main() (in module unravel.warp.warp)": [[98, "unravel.warp.warp.main", false]], "mean_intensity_in_brain() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.mean_intensity_in_brain", false]], "mean_intensity_within_mask() (in module unravel.voxel_stats.other.if_outliers)": [[87, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.mean_std_count", false]], "metadata() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.metadata", false]], "metadata_from_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.metadata_from_3D_tif", false]], "metadata_from_h5() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.metadata_from_h5", false]], "mirror() (in module unravel.voxel_stats.mirror)": [[86, "unravel.voxel_stats.mirror.mirror", false]], "module": [[3, "module-unravel.cluster_stats.brain_model", false], [4, "module-unravel.cluster_stats.cluster_summary", false], [5, "module-unravel.cluster_stats.cluster_validation", false], [6, "module-unravel.cluster_stats.crop", false], [7, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false], [8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false], [9, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false], [11, "module-unravel.cluster_stats.fdr", false], [12, "module-unravel.cluster_stats.fdr_range", false], [13, "module-unravel.cluster_stats.find_incongruent_clusters", false], [14, "module-unravel.cluster_stats.group_bilateral_data", false], [15, "module-unravel.cluster_stats.index", false], [16, "module-unravel.cluster_stats.legend", false], [17, "module-unravel.cluster_stats.org_data", false], [18, "module-unravel.cluster_stats.prism", false], [19, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false], [20, "module-unravel.cluster_stats.stats", false], [21, "module-unravel.cluster_stats.stats_table", false], [22, "module-unravel.cluster_stats.sunburst", false], [23, "module-unravel.cluster_stats.table", false], [25, "module-unravel.core.argparse_utils", false], [26, "module-unravel.core.argparse_utils_rich", false], [27, "module-unravel.core.config", false], [28, "module-unravel.core.img_io", false], [29, "module-unravel.core.img_tools", false], [31, "module-unravel.core.utils", false], [32, "module-unravel.image_io.h5_to_tifs", false], [33, "module-unravel.image_io.img_to_npy", false], [34, "module-unravel.image_io.io_img", false], [35, "module-unravel.image_io.io_nii", false], [36, "module-unravel.image_io.metadata", false], [37, "module-unravel.image_io.nii_hd", false], [38, "module-unravel.image_io.nii_info", false], [39, "module-unravel.image_io.nii_to_tifs", false], [40, "module-unravel.image_io.nii_to_zarr", false], [41, "module-unravel.image_io.reorient_nii", false], [42, "module-unravel.image_io.tif_to_tifs", false], [44, "module-unravel.image_io.zarr_to_nii", false], [45, "module-unravel.image_tools.DoG", false], [46, "module-unravel.image_tools.atlas.relabel_nii", false], [48, "module-unravel.image_tools.atlas.wireframe", false], [49, "module-unravel.image_tools.avg", false], [50, "module-unravel.image_tools.bbox", false], [51, "module-unravel.image_tools.extend", false], [52, "module-unravel.image_tools.max", false], [53, "module-unravel.image_tools.pad", false], [54, "module-unravel.image_tools.rb", false], [55, "module-unravel.image_tools.spatial_averaging", false], [57, "module-unravel.image_tools.transpose_axes", false], [58, "module-unravel.image_tools.unique_intensities", false], [59, "module-unravel.region_stats.rstats", false], [60, "module-unravel.region_stats.rstats_mean_IF", false], [61, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false], [62, "module-unravel.region_stats.rstats_mean_IF_summary", false], [63, "module-unravel.region_stats.rstats_summary", false], [65, "module-unravel.register.affine_initializer", false], [66, "module-unravel.register.reg", false], [67, "module-unravel.register.reg_check", false], [68, "module-unravel.register.reg_check_brain_mask", false], [69, "module-unravel.register.reg_prep", false], [71, "module-unravel.segment.brain_mask", false], [72, "module-unravel.segment.copy_tifs", false], [73, "module-unravel.segment.ilastik_pixel_classification", false], [76, "module-unravel.unravel_commands", false], [77, "module-unravel.utilities.aggregate_files_from_sample_dirs", false], [78, "module-unravel.utilities.aggregate_files_w_recursive_search", false], [79, "module-unravel.utilities.clean_tif_dirs", false], [80, "module-unravel.utilities.prepend_conditions", false], [81, "module-unravel.utilities.rename", false], [83, "module-unravel.utilities.toggle_samples", false], [84, "module-unravel.voxel_stats.apply_mask", false], [85, "module-unravel.voxel_stats.hemi_to_LR_avg", false], [86, "module-unravel.voxel_stats.mirror", false], [87, "module-unravel.voxel_stats.other.IF_outliers", false], [88, "module-unravel.voxel_stats.other.r_to_p", false], [91, "module-unravel.voxel_stats.vstats", false], [92, "module-unravel.voxel_stats.vstats_prep", false], [93, "module-unravel.voxel_stats.whole_to_LR_avg", false], [94, "module-unravel.voxel_stats.z_score", false], [95, "module-unravel.warp.to_atlas", false], [96, "module-unravel.warp.to_native", false], [98, "module-unravel.warp.warp", false]], "nii_axis_codes() (in module unravel.image_io.nii_info)": [[38, "unravel.image_io.nii_info.nii_axis_codes", false]], "nii_to_ndarray() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.nii_to_ndarray", false]], "nii_to_tifs() (in module unravel.image_io.nii_to_tifs)": [[39, "unravel.image_io.nii_to_tifs.nii_to_tifs", false]], "organize_validation_data() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.organize_validation_data", false]], "pad() (in module unravel.core.img_tools)": [[29, "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.cluster_summary)": [[4, "unravel.cluster_stats.cluster_summary.parse_args", false]], "parse_args() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.parse_args", false]], "parse_args() (in module unravel.cluster_stats.crop)": [[6, "unravel.cluster_stats.crop.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.parse_args", false]], "parse_args() (in module unravel.cluster_stats.find_incongruent_clusters)": [[13, "unravel.cluster_stats.find_incongruent_clusters.parse_args", false]], "parse_args() (in module unravel.cluster_stats.group_bilateral_data)": [[14, "unravel.cluster_stats.group_bilateral_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.index)": [[15, "unravel.cluster_stats.index.parse_args", false]], "parse_args() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.parse_args", false]], "parse_args() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.parse_args", false]], "parse_args() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[19, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.parse_args", false]], "parse_args() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.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.sunburst)": [[22, "unravel.cluster_stats.sunburst.parse_args", false]], "parse_args() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.parse_args", false]], "parse_args() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.img_to_npy)": [[33, "unravel.image_io.img_to_npy.parse_args", false]], "parse_args() (in module unravel.image_io.io_img)": [[34, "unravel.image_io.io_img.parse_args", false]], "parse_args() (in module unravel.image_io.io_nii)": [[35, "unravel.image_io.io_nii.parse_args", false]], "parse_args() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.parse_args", false]], "parse_args() (in module unravel.image_io.nii_hd)": [[37, "unravel.image_io.nii_hd.parse_args", false]], "parse_args() (in module unravel.image_io.nii_info)": [[38, "unravel.image_io.nii_info.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_tifs)": [[39, "unravel.image_io.nii_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.parse_args", false]], "parse_args() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.parse_args", false]], "parse_args() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.relabel_nii)": [[46, "unravel.image_tools.atlas.relabel_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.parse_args", false]], "parse_args() (in module unravel.image_tools.avg)": [[49, "unravel.image_tools.avg.parse_args", false]], "parse_args() (in module unravel.image_tools.bbox)": [[50, "unravel.image_tools.bbox.parse_args", false]], "parse_args() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.parse_args", false]], "parse_args() (in module unravel.image_tools.extend)": [[51, "unravel.image_tools.extend.parse_args", false]], "parse_args() (in module unravel.image_tools.max)": [[52, "unravel.image_tools.max.parse_args", false]], "parse_args() (in module unravel.image_tools.pad)": [[53, "unravel.image_tools.pad.parse_args", false]], "parse_args() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.parse_args", false]], "parse_args() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.parse_args", false]], "parse_args() (in module unravel.image_tools.transpose_axes)": [[57, "unravel.image_tools.transpose_axes.parse_args", false]], "parse_args() (in module unravel.image_tools.unique_intensities)": [[58, "unravel.image_tools.unique_intensities.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.parse_args", false]], "parse_args() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.parse_args", false]], "parse_args() (in module unravel.register.reg)": [[66, "unravel.register.reg.parse_args", false]], "parse_args() (in module unravel.register.reg_check)": [[67, "unravel.register.reg_check.parse_args", false]], "parse_args() (in module unravel.register.reg_check_brain_mask)": [[68, "unravel.register.reg_check_brain_mask.parse_args", false]], "parse_args() (in module unravel.register.reg_prep)": [[69, "unravel.register.reg_prep.parse_args", false]], "parse_args() (in module unravel.segment.brain_mask)": [[71, "unravel.segment.brain_mask.parse_args", false]], "parse_args() (in module unravel.segment.copy_tifs)": [[72, "unravel.segment.copy_tifs.parse_args", false]], "parse_args() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.parse_args", false]], "parse_args() (in module unravel.unravel_commands)": [[76, "unravel.unravel_commands.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[77, "unravel.utilities.aggregate_files_from_sample_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_w_recursive_search)": [[78, "unravel.utilities.aggregate_files_w_recursive_search.parse_args", false]], "parse_args() (in module unravel.utilities.clean_tif_dirs)": [[79, "unravel.utilities.clean_tif_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.parse_args", false]], "parse_args() (in module unravel.utilities.rename)": [[81, "unravel.utilities.rename.parse_args", false]], "parse_args() (in module unravel.utilities.toggle_samples)": [[83, "unravel.utilities.toggle_samples.parse_args", false]], "parse_args() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.parse_args", false]], "parse_args() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[85, "unravel.voxel_stats.hemi_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.mirror)": [[86, "unravel.voxel_stats.mirror.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.if_outliers)": [[87, "unravel.voxel_stats.other.IF_outliers.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats_prep)": [[92, "unravel.voxel_stats.vstats_prep.parse_args", false]], "parse_args() (in module unravel.voxel_stats.whole_to_lr_avg)": [[93, "unravel.voxel_stats.whole_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.z_score)": [[94, "unravel.voxel_stats.z_score.parse_args", false]], "parse_args() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.parse_args", false]], "parse_args() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.parse_args", false]], "parse_args() (in module unravel.warp.warp)": [[98, "unravel.warp.warp.parse_args", false]], "parse_color_argument() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.parse_color_argument", false]], "perform_t_tests() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.perform_t_tests", false]], "perform_tukey_test() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.perform_tukey_test", false]], "pixel_classification() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.pixel_classification", false]], "plot_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.plot_data", false]], "prepend_conditions() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.prepend_conditions", false]], "print_cmd_and_times() (in module unravel.core.utils)": [[31, "unravel.core.utils.print_cmd_and_times", false]], "print_func_name_args_times() (in module unravel.core.utils)": [[31, "unravel.core.utils.print_func_name_args_times", false]], "print_metadata() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.print_metadata", false]], "process_and_plot_data() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.process_and_plot_data", false]], "process_fdr_and_clusters() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.process_fdr_and_clusters", false]], "process_file() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[19, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.process_file", false]], "process_intensity() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.process_intensity", false]], "process_slice() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.process_slice", false]], "r_to_z() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.r_to_z", false]], "reg_prep() (in module unravel.register.reg_prep)": [[69, "unravel.register.reg_prep.reg_prep", false]], "relative_hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[9, "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)": [[62, "unravel.region_stats.rstats_mean_IF_summary.remove_zero_intensity_regions", false]], "rename_files() (in module unravel.utilities.rename)": [[81, "unravel.utilities.rename.rename_files", false]], "rename_items() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.rename_items", false]], "render() (unravel.core.utils.averagetimeperiterationcolumn method)": [[31, "unravel.core.utils.AverageTimePerIterationColumn.render", false]], "render() (unravel.core.utils.custommofncompletecolumn method)": [[31, "unravel.core.utils.CustomMofNCompleteColumn.render", false]], "render() (unravel.core.utils.customtimeelapsedcolumn method)": [[31, "unravel.core.utils.CustomTimeElapsedColumn.render", false]], "render() (unravel.core.utils.customtimeremainingcolumn method)": [[31, "unravel.core.utils.CustomTimeRemainingColumn.render", false]], "reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reorient_for_raw_to_nii_conv", false]], "reorient_ndarray() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reorient_ndarray", false]], "reorient_ndarray2() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reorient_ndarray2", false]], "reorient_nii() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.reorient_nii", false]], "resample() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.resample", false]], "resolve_path() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.resolve_path", false]], "return_3d_img() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.return_3D_img", false]], "reverse_clusters() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.reverse_clusters", false]], "reverse_reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reverse_reorient_for_raw_to_nii_conv", false]], "rolling_ball_subtraction() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.rolling_ball_subtraction", false]], "rolling_ball_subtraction_opencv_parallel() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.rolling_ball_subtraction_opencv_parallel", false]], "run_randomise_parallel() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.run_randomise_parallel", false]], "run_script() (in module unravel.cluster_stats.cluster_summary)": [[4, "unravel.cluster_stats.cluster_summary.run_script", false]], "run_with_timeout() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.run_with_timeout", false]], "save_as_h5() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_h5", false]], "save_as_nii() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_nii", false]], "save_as_nii() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.save_as_nii", false]], "save_as_tifs() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.save_as_tifs", false]], "save_as_zarr() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_zarr", false]], "save_as_zarr() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.save_as_zarr", false]], "save_cropped_img() (in module unravel.cluster_stats.crop)": [[6, "unravel.cluster_stats.crop.save_cropped_img", false]], "save_labels_as_masks() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.save_labels_as_masks", false]], "save_metadata_to_file() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_metadata_to_file", false]], "save_tif() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.save_tif", false]], "save_tif() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.save_tif", false]], "scale_bool_to_full_res() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.scale_bool_to_full_res", false]], "scale_to_full_res() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.scale_to_full_res", false]], "sm (class in unravel.core.argparse_utils)": [[25, "unravel.core.argparse_utils.SM", false]], "sm (class in unravel.core.argparse_utils_rich)": [[26, "unravel.core.argparse_utils_rich.SM", false]], "smart_float_format() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.smart_float_format", false]], "sort_samples() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.sort_samples", false]], "sort_sunburst_hierarchy() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.sort_sunburst_hierarchy", false]], "spatial_average_2d() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.spatial_average_2D", false]], "spatial_average_3d() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.spatial_average_3D", false]], "split_clusters_based_on_effect() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.split_clusters_based_on_effect", false]], "summarize_significance() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.summarize_significance", false]], "sunburst() (in module unravel.cluster_stats.sunburst)": [[22, "unravel.cluster_stats.sunburst.sunburst", false]], "suppressmetavar (class in unravel.core.argparse_utils)": [[25, "unravel.core.argparse_utils.SuppressMetavar", false]], "suppressmetavar (class in unravel.core.argparse_utils_rich)": [[26, "unravel.core.argparse_utils_rich.SuppressMetavar", false]], "to_atlas() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.to_atlas", false]], "to_native() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.to_native", false]], "transform_nii_affine() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.transform_nii_affine", false]], "transpose_img() (in module unravel.image_tools.transpose_axes)": [[57, "unravel.image_tools.transpose_axes.transpose_img", false]], "undo_fill_with_original() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.undo_fill_with_original", false]], "uniq_intensities() (in module unravel.image_tools.unique_intensities)": [[58, "unravel.image_tools.unique_intensities.uniq_intensities", false]], "unravel.cluster_stats.brain_model": [[3, "module-unravel.cluster_stats.brain_model", false]], "unravel.cluster_stats.cluster_summary": [[4, "module-unravel.cluster_stats.cluster_summary", false]], "unravel.cluster_stats.cluster_validation": [[5, "module-unravel.cluster_stats.cluster_validation", false]], "unravel.cluster_stats.crop": [[6, "module-unravel.cluster_stats.crop", false]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[9, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false]], "unravel.cluster_stats.fdr": [[11, "module-unravel.cluster_stats.fdr", false]], "unravel.cluster_stats.fdr_range": [[12, "module-unravel.cluster_stats.fdr_range", false]], "unravel.cluster_stats.find_incongruent_clusters": [[13, "module-unravel.cluster_stats.find_incongruent_clusters", false]], "unravel.cluster_stats.group_bilateral_data": [[14, "module-unravel.cluster_stats.group_bilateral_data", false]], "unravel.cluster_stats.index": [[15, "module-unravel.cluster_stats.index", false]], "unravel.cluster_stats.legend": [[16, "module-unravel.cluster_stats.legend", false]], "unravel.cluster_stats.org_data": [[17, "module-unravel.cluster_stats.org_data", false]], "unravel.cluster_stats.prism": [[18, "module-unravel.cluster_stats.prism", false]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[19, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false]], "unravel.cluster_stats.stats": [[20, "module-unravel.cluster_stats.stats", false]], "unravel.cluster_stats.stats_table": [[21, "module-unravel.cluster_stats.stats_table", false]], "unravel.cluster_stats.sunburst": [[22, "module-unravel.cluster_stats.sunburst", false]], "unravel.cluster_stats.table": [[23, "module-unravel.cluster_stats.table", false]], "unravel.core.argparse_utils": [[25, "module-unravel.core.argparse_utils", false]], "unravel.core.argparse_utils_rich": [[26, "module-unravel.core.argparse_utils_rich", false]], "unravel.core.config": [[27, "module-unravel.core.config", false]], "unravel.core.img_io": [[28, "module-unravel.core.img_io", false]], "unravel.core.img_tools": [[29, "module-unravel.core.img_tools", false]], "unravel.core.utils": [[31, "module-unravel.core.utils", false]], "unravel.image_io.h5_to_tifs": [[32, "module-unravel.image_io.h5_to_tifs", false]], "unravel.image_io.img_to_npy": [[33, "module-unravel.image_io.img_to_npy", false]], "unravel.image_io.io_img": [[34, "module-unravel.image_io.io_img", false]], "unravel.image_io.io_nii": [[35, "module-unravel.image_io.io_nii", false]], "unravel.image_io.metadata": [[36, "module-unravel.image_io.metadata", false]], "unravel.image_io.nii_hd": [[37, "module-unravel.image_io.nii_hd", false]], "unravel.image_io.nii_info": [[38, "module-unravel.image_io.nii_info", false]], "unravel.image_io.nii_to_tifs": [[39, "module-unravel.image_io.nii_to_tifs", false]], "unravel.image_io.nii_to_zarr": [[40, "module-unravel.image_io.nii_to_zarr", false]], "unravel.image_io.reorient_nii": [[41, "module-unravel.image_io.reorient_nii", false]], "unravel.image_io.tif_to_tifs": [[42, "module-unravel.image_io.tif_to_tifs", false]], "unravel.image_io.zarr_to_nii": [[44, "module-unravel.image_io.zarr_to_nii", false]], "unravel.image_tools.atlas.relabel_nii": [[46, "module-unravel.image_tools.atlas.relabel_nii", false]], "unravel.image_tools.atlas.wireframe": [[48, "module-unravel.image_tools.atlas.wireframe", false]], "unravel.image_tools.avg": [[49, "module-unravel.image_tools.avg", false]], "unravel.image_tools.bbox": [[50, "module-unravel.image_tools.bbox", false]], "unravel.image_tools.dog": [[45, "module-unravel.image_tools.DoG", false]], "unravel.image_tools.extend": [[51, "module-unravel.image_tools.extend", false]], "unravel.image_tools.max": [[52, "module-unravel.image_tools.max", false]], "unravel.image_tools.pad": [[53, "module-unravel.image_tools.pad", false]], "unravel.image_tools.rb": [[54, "module-unravel.image_tools.rb", false]], "unravel.image_tools.spatial_averaging": [[55, "module-unravel.image_tools.spatial_averaging", false]], "unravel.image_tools.transpose_axes": [[57, "module-unravel.image_tools.transpose_axes", false]], "unravel.image_tools.unique_intensities": [[58, "module-unravel.image_tools.unique_intensities", false]], "unravel.region_stats.rstats": [[59, "module-unravel.region_stats.rstats", false]], "unravel.region_stats.rstats_mean_if": [[60, "module-unravel.region_stats.rstats_mean_IF", false]], "unravel.region_stats.rstats_mean_if_in_segmented_voxels": [[61, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false]], "unravel.region_stats.rstats_mean_if_summary": [[62, "module-unravel.region_stats.rstats_mean_IF_summary", false]], "unravel.region_stats.rstats_summary": [[63, "module-unravel.region_stats.rstats_summary", false]], "unravel.register.affine_initializer": [[65, "module-unravel.register.affine_initializer", false]], "unravel.register.reg": [[66, "module-unravel.register.reg", false]], "unravel.register.reg_check": [[67, "module-unravel.register.reg_check", false]], "unravel.register.reg_check_brain_mask": [[68, "module-unravel.register.reg_check_brain_mask", false]], "unravel.register.reg_prep": [[69, "module-unravel.register.reg_prep", false]], "unravel.segment.brain_mask": [[71, "module-unravel.segment.brain_mask", false]], "unravel.segment.copy_tifs": [[72, "module-unravel.segment.copy_tifs", false]], "unravel.segment.ilastik_pixel_classification": [[73, "module-unravel.segment.ilastik_pixel_classification", false]], "unravel.unravel_commands": [[76, "module-unravel.unravel_commands", false]], "unravel.utilities.aggregate_files_from_sample_dirs": [[77, "module-unravel.utilities.aggregate_files_from_sample_dirs", false]], "unravel.utilities.aggregate_files_w_recursive_search": [[78, "module-unravel.utilities.aggregate_files_w_recursive_search", false]], "unravel.utilities.clean_tif_dirs": [[79, "module-unravel.utilities.clean_tif_dirs", false]], "unravel.utilities.prepend_conditions": [[80, "module-unravel.utilities.prepend_conditions", false]], "unravel.utilities.rename": [[81, "module-unravel.utilities.rename", false]], "unravel.utilities.toggle_samples": [[83, "module-unravel.utilities.toggle_samples", false]], "unravel.voxel_stats.apply_mask": [[84, "module-unravel.voxel_stats.apply_mask", false]], "unravel.voxel_stats.hemi_to_lr_avg": [[85, "module-unravel.voxel_stats.hemi_to_LR_avg", false]], "unravel.voxel_stats.mirror": [[86, "module-unravel.voxel_stats.mirror", false]], "unravel.voxel_stats.other.if_outliers": [[87, "module-unravel.voxel_stats.other.IF_outliers", false]], "unravel.voxel_stats.other.r_to_p": [[88, "module-unravel.voxel_stats.other.r_to_p", false]], "unravel.voxel_stats.vstats": [[91, "module-unravel.voxel_stats.vstats", false]], "unravel.voxel_stats.vstats_prep": [[92, "module-unravel.voxel_stats.vstats_prep", false]], "unravel.voxel_stats.whole_to_lr_avg": [[93, "module-unravel.voxel_stats.whole_to_LR_avg", false]], "unravel.voxel_stats.z_score": [[94, "module-unravel.voxel_stats.z_score", false]], "unravel.warp.to_atlas": [[95, "module-unravel.warp.to_atlas", false]], "unravel.warp.to_native": [[96, "module-unravel.warp.to_native", false]], "unravel.warp.warp": [[98, "module-unravel.warp.warp", false]], "valid_clusters_t_test() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.valid_clusters_t_test", false]], "verbose (unravel.core.config.configuration attribute)": [[27, "unravel.core.config.Configuration.verbose", false]], "warp() (in module unravel.warp.warp)": [[98, "unravel.warp.warp.warp", false]], "whole_to_lr_avg() (in module unravel.voxel_stats.whole_to_lr_avg)": [[93, "unravel.voxel_stats.whole_to_LR_avg.whole_to_LR_avg", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.write_to_csv", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.write_to_csv", false]], "z_score() (in module unravel.voxel_stats.z_score)": [[94, "unravel.voxel_stats.z_score.z_score", false]], "z_to_p() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.z_to_p", false]], "zarr_to_ndarray() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.zarr_to_ndarray", false]]}, "objects": {"unravel": [[76, 0, 0, "-", "unravel_commands"]], "unravel.cluster_stats": [[3, 0, 0, "-", "brain_model"], [4, 0, 0, "-", "cluster_summary"], [5, 0, 0, "-", "cluster_validation"], [6, 0, 0, "-", "crop"], [11, 0, 0, "-", "fdr"], [12, 0, 0, "-", "fdr_range"], [13, 0, 0, "-", "find_incongruent_clusters"], [14, 0, 0, "-", "group_bilateral_data"], [15, 0, 0, "-", "index"], [16, 0, 0, "-", "legend"], [17, 0, 0, "-", "org_data"], [18, 0, 0, "-", "prism"], [19, 0, 0, "-", "recursively_mirror_rev_cluster_indices"], [20, 0, 0, "-", "stats"], [21, 0, 0, "-", "stats_table"], [22, 0, 0, "-", "sunburst"], [23, 0, 0, "-", "table"]], "unravel.cluster_stats.brain_model": [[3, 1, 1, "", "main"], [3, 1, 1, "", "parse_args"]], "unravel.cluster_stats.cluster_summary": [[4, 1, 1, "", "main"], [4, 1, 1, "", "parse_args"], [4, 1, 1, "", "run_script"]], "unravel.cluster_stats.cluster_validation": [[5, 1, 1, "", "cluster_bbox"], [5, 1, 1, "", "cluster_bbox_parallel"], [5, 1, 1, "", "count_cells"], [5, 1, 1, "", "crop_outer_space"], [5, 1, 1, "", "density_in_cluster"], [5, 1, 1, "", "density_in_cluster_parallel"], [5, 1, 1, "", "main"], [5, 1, 1, "", "parse_args"]], "unravel.cluster_stats.crop": [[6, 1, 1, "", "main"], [6, 1, 1, "", "parse_args"], [6, 1, 1, "", "save_cropped_img"]], "unravel.cluster_stats.effect_sizes": [[7, 0, 0, "-", "effect_sizes"], [8, 0, 0, "-", "effect_sizes_by_sex__absolute"], [9, 0, 0, "-", "effect_sizes_by_sex__relative"]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[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__absolute": [[8, 1, 1, "", "condition_selector"], [8, 1, 1, "", "filter_dataframe"], [8, 1, 1, "", "hedges_g"], [8, 1, 1, "", "main"], [8, 1, 1, "", "parse_args"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[9, 1, 1, "", "condition_selector"], [9, 1, 1, "", "filter_dataframe"], [9, 1, 1, "", "main"], [9, 1, 1, "", "mean_std_count"], [9, 1, 1, "", "parse_args"], [9, 1, 1, "", "relative_hedges_g"]], "unravel.cluster_stats.fdr": [[11, 1, 1, "", "cluster_index"], [11, 1, 1, "", "fdr"], [11, 1, 1, "", "main"], [11, 1, 1, "", "parse_args"], [11, 1, 1, "", "process_fdr_and_clusters"], [11, 1, 1, "", "reverse_clusters"], [11, 1, 1, "", "split_clusters_based_on_effect"]], "unravel.cluster_stats.fdr_range": [[12, 1, 1, "", "fdr_range"], [12, 1, 1, "", "main"], [12, 1, 1, "", "parse_args"], [12, 1, 1, "", "smart_float_format"]], "unravel.cluster_stats.find_incongruent_clusters": [[13, 1, 1, "", "find_incongruent_clusters"], [13, 1, 1, "", "main"], [13, 1, 1, "", "parse_args"]], "unravel.cluster_stats.group_bilateral_data": [[14, 1, 1, "", "group_hemisphere_data"], [14, 1, 1, "", "main"], [14, 1, 1, "", "parse_args"]], "unravel.cluster_stats.index": [[15, 1, 1, "", "generate_sunburst"], [15, 1, 1, "", "main"], [15, 1, 1, "", "parse_args"]], "unravel.cluster_stats.legend": [[16, 1, 1, "", "apply_rgb_to_cell"], [16, 1, 1, "", "extract_unique_regions_from_file"], [16, 1, 1, "", "main"], [16, 1, 1, "", "parse_args"]], "unravel.cluster_stats.org_data": [[17, 1, 1, "", "copy_stats_files"], [17, 1, 1, "", "cp"], [17, 1, 1, "", "find_matching_directory"], [17, 1, 1, "", "main"], [17, 1, 1, "", "organize_validation_data"], [17, 1, 1, "", "parse_args"]], "unravel.cluster_stats.prism": [[18, 1, 1, "", "generate_summary_table"], [18, 1, 1, "", "main"], [18, 1, 1, "", "parse_args"], [18, 1, 1, "", "sort_samples"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[19, 1, 1, "", "main"], [19, 1, 1, "", "parse_args"], [19, 1, 1, "", "process_file"]], "unravel.cluster_stats.stats": [[20, 1, 1, "", "cluster_validation_data_df"], [20, 1, 1, "", "condition_selector"], [20, 1, 1, "", "main"], [20, 1, 1, "", "parse_args"], [20, 1, 1, "", "perform_tukey_test"], [20, 1, 1, "", "valid_clusters_t_test"]], "unravel.cluster_stats.stats_table": [[21, 1, 1, "", "cluster_summary"], [21, 1, 1, "", "main"], [21, 1, 1, "", "parse_args"]], "unravel.cluster_stats.sunburst": [[22, 1, 1, "", "calculate_regional_volumes"], [22, 1, 1, "", "main"], [22, 1, 1, "", "parse_args"], [22, 1, 1, "", "sunburst"]], "unravel.cluster_stats.table": [[23, 1, 1, "", "calculate_top_regions"], [23, 1, 1, "", "can_collapse"], [23, 1, 1, "", "collapse_hierarchy"], [23, 1, 1, "", "fill_na_with_last_known"], [23, 1, 1, "", "get_fill_color"], [23, 1, 1, "", "get_top_regions_and_percent_vols"], [23, 1, 1, "", "main"], [23, 1, 1, "", "parse_args"], [23, 1, 1, "", "sort_sunburst_hierarchy"], [23, 1, 1, "", "undo_fill_with_original"]], "unravel.core": [[25, 0, 0, "-", "argparse_utils"], [26, 0, 0, "-", "argparse_utils_rich"], [27, 0, 0, "-", "config"], [28, 0, 0, "-", "img_io"], [29, 0, 0, "-", "img_tools"], [31, 0, 0, "-", "utils"]], "unravel.core.argparse_utils": [[25, 2, 1, "", "SM"], [25, 2, 1, "", "SuppressMetavar"]], "unravel.core.argparse_utils_rich": [[26, 2, 1, "", "SM"], [26, 2, 1, "", "SuppressMetavar"]], "unravel.core.config": [[27, 2, 1, "", "AttrDict"], [27, 2, 1, "", "Config"], [27, 2, 1, "", "Configuration"]], "unravel.core.config.Configuration": [[27, 3, 1, "", "verbose"]], "unravel.core.img_io": [[28, 1, 1, "", "extract_resolution"], [28, 1, 1, "", "load_3D_img"], [28, 1, 1, "", "load_czi"], [28, 1, 1, "", "load_h5"], [28, 1, 1, "", "load_image_metadata_from_txt"], [28, 1, 1, "", "load_nii"], [28, 1, 1, "", "load_nii_orientation"], [28, 1, 1, "", "load_nii_subset"], [28, 1, 1, "", "load_tifs"], [28, 1, 1, "", "load_zarr"], [28, 1, 1, "", "metadata"], [28, 1, 1, "", "resolve_path"], [28, 1, 1, "", "return_3D_img"], [28, 1, 1, "", "save_as_h5"], [28, 1, 1, "", "save_as_nii"], [28, 1, 1, "", "save_as_tifs"], [28, 1, 1, "", "save_as_zarr"], [28, 1, 1, "", "save_metadata_to_file"]], "unravel.core.img_tools": [[29, 1, 1, "", "cluster_IDs"], [29, 1, 1, "", "crop"], [29, 1, 1, "", "find_bounding_box"], [29, 1, 1, "", "pad"], [29, 1, 1, "", "pixel_classification"], [29, 1, 1, "", "process_slice"], [29, 1, 1, "", "reorient_for_raw_to_nii_conv"], [29, 1, 1, "", "reorient_ndarray"], [29, 1, 1, "", "reorient_ndarray2"], [29, 1, 1, "", "resample"], [29, 1, 1, "", "reverse_reorient_for_raw_to_nii_conv"], [29, 1, 1, "", "rolling_ball_subtraction_opencv_parallel"]], "unravel.core.utils": [[31, 2, 1, "", "AverageTimePerIterationColumn"], [31, 2, 1, "", "CustomMofNCompleteColumn"], [31, 2, 1, "", "CustomTimeElapsedColumn"], [31, 2, 1, "", "CustomTimeRemainingColumn"], [31, 1, 1, "", "copy_files"], [31, 1, 1, "", "get_dir_name_from_args"], [31, 1, 1, "", "get_samples"], [31, 1, 1, "", "initialize_progress_bar"], [31, 1, 1, "", "load_config"], [31, 1, 1, "", "load_text_from_file"], [31, 1, 1, "", "print_cmd_and_times"], [31, 1, 1, "", "print_func_name_args_times"]], "unravel.core.utils.AverageTimePerIterationColumn": [[31, 4, 1, "", "render"]], "unravel.core.utils.CustomMofNCompleteColumn": [[31, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeElapsedColumn": [[31, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeRemainingColumn": [[31, 4, 1, "", "render"]], "unravel.image_io": [[32, 0, 0, "-", "h5_to_tifs"], [33, 0, 0, "-", "img_to_npy"], [34, 0, 0, "-", "io_img"], [35, 0, 0, "-", "io_nii"], [36, 0, 0, "-", "metadata"], [37, 0, 0, "-", "nii_hd"], [38, 0, 0, "-", "nii_info"], [39, 0, 0, "-", "nii_to_tifs"], [40, 0, 0, "-", "nii_to_zarr"], [41, 0, 0, "-", "reorient_nii"], [42, 0, 0, "-", "tif_to_tifs"], [44, 0, 0, "-", "zarr_to_nii"]], "unravel.image_io.h5_to_tifs": [[32, 1, 1, "", "find_largest_h5_file"], [32, 1, 1, "", "load_h5"], [32, 1, 1, "", "main"], [32, 1, 1, "", "metadata_from_h5"], [32, 1, 1, "", "parse_args"], [32, 1, 1, "", "save_as_tifs"]], "unravel.image_io.img_to_npy": [[33, 1, 1, "", "main"], [33, 1, 1, "", "parse_args"]], "unravel.image_io.io_img": [[34, 1, 1, "", "main"], [34, 1, 1, "", "parse_args"]], "unravel.image_io.io_nii": [[35, 1, 1, "", "convert_dtype"], [35, 1, 1, "", "main"], [35, 1, 1, "", "parse_args"]], "unravel.image_io.metadata": [[36, 1, 1, "", "get_dims_from_tifs"], [36, 1, 1, "", "main"], [36, 1, 1, "", "parse_args"], [36, 1, 1, "", "print_metadata"]], "unravel.image_io.nii_hd": [[37, 1, 1, "", "main"], [37, 1, 1, "", "parse_args"]], "unravel.image_io.nii_info": [[38, 1, 1, "", "main"], [38, 1, 1, "", "nii_axis_codes"], [38, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_tifs": [[39, 1, 1, "", "main"], [39, 1, 1, "", "nii_to_tifs"], [39, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_zarr": [[40, 1, 1, "", "main"], [40, 1, 1, "", "nii_to_ndarray"], [40, 1, 1, "", "parse_args"], [40, 1, 1, "", "save_as_zarr"]], "unravel.image_io.reorient_nii": [[41, 1, 1, "", "main"], [41, 1, 1, "", "parse_args"], [41, 1, 1, "", "reorient_nii"], [41, 1, 1, "", "transform_nii_affine"]], "unravel.image_io.tif_to_tifs": [[42, 1, 1, "", "find_largest_tif_file"], [42, 1, 1, "", "load_3D_tif"], [42, 1, 1, "", "main"], [42, 1, 1, "", "metadata_from_3D_tif"], [42, 1, 1, "", "parse_args"], [42, 1, 1, "", "save_as_tifs"]], "unravel.image_io.zarr_to_nii": [[44, 1, 1, "", "define_zarr_to_nii_output"], [44, 1, 1, "", "main"], [44, 1, 1, "", "parse_args"], [44, 1, 1, "", "save_as_nii"], [44, 1, 1, "", "zarr_to_ndarray"]], "unravel.image_tools": [[45, 0, 0, "-", "DoG"], [49, 0, 0, "-", "avg"], [50, 0, 0, "-", "bbox"], [51, 0, 0, "-", "extend"], [52, 0, 0, "-", "max"], [53, 0, 0, "-", "pad"], [54, 0, 0, "-", "rb"], [55, 0, 0, "-", "spatial_averaging"], [57, 0, 0, "-", "transpose_axes"], [58, 0, 0, "-", "unique_intensities"]], "unravel.image_tools.DoG": [[45, 1, 1, "", "difference_of_gaussians"], [45, 1, 1, "", "load_tif"], [45, 1, 1, "", "main"], [45, 1, 1, "", "parse_args"], [45, 1, 1, "", "save_tif"]], "unravel.image_tools.atlas": [[46, 0, 0, "-", "relabel_nii"], [48, 0, 0, "-", "wireframe"]], "unravel.image_tools.atlas.relabel_nii": [[46, 1, 1, "", "main"], [46, 1, 1, "", "parse_args"]], "unravel.image_tools.atlas.wireframe": [[48, 1, 1, "", "generate_wireframe"], [48, 1, 1, "", "main"], [48, 1, 1, "", "parse_args"], [48, 1, 1, "", "process_intensity"]], "unravel.image_tools.avg": [[49, 1, 1, "", "main"], [49, 1, 1, "", "parse_args"]], "unravel.image_tools.bbox": [[50, 1, 1, "", "main"], [50, 1, 1, "", "parse_args"]], "unravel.image_tools.extend": [[51, 1, 1, "", "extend_one_side_3d_array"], [51, 1, 1, "", "main"], [51, 1, 1, "", "parse_args"]], "unravel.image_tools.max": [[52, 1, 1, "", "find_max_intensity"], [52, 1, 1, "", "main"], [52, 1, 1, "", "parse_args"]], "unravel.image_tools.pad": [[53, 1, 1, "", "main"], [53, 1, 1, "", "parse_args"]], "unravel.image_tools.rb": [[54, 1, 1, "", "load_tif"], [54, 1, 1, "", "main"], [54, 1, 1, "", "parse_args"], [54, 1, 1, "", "rolling_ball_subtraction"], [54, 1, 1, "", "save_tif"]], "unravel.image_tools.spatial_averaging": [[55, 1, 1, "", "apply_2D_mean_filter"], [55, 1, 1, "", "main"], [55, 1, 1, "", "parse_args"], [55, 1, 1, "", "spatial_average_2D"], [55, 1, 1, "", "spatial_average_3D"]], "unravel.image_tools.transpose_axes": [[57, 1, 1, "", "main"], [57, 1, 1, "", "parse_args"], [57, 1, 1, "", "transpose_img"]], "unravel.image_tools.unique_intensities": [[58, 1, 1, "", "main"], [58, 1, 1, "", "parse_args"], [58, 1, 1, "", "uniq_intensities"]], "unravel.region_stats": [[59, 0, 0, "-", "rstats"], [60, 0, 0, "-", "rstats_mean_IF"], [61, 0, 0, "-", "rstats_mean_IF_in_segmented_voxels"], [62, 0, 0, "-", "rstats_mean_IF_summary"], [63, 0, 0, "-", "rstats_summary"]], "unravel.region_stats.rstats": [[59, 1, 1, "", "calculate_regional_cell_densities"], [59, 1, 1, "", "calculate_regional_volumes"], [59, 1, 1, "", "count_cells_in_regions"], [59, 1, 1, "", "get_atlas_region_at_coords"], [59, 1, 1, "", "main"], [59, 1, 1, "", "parse_args"]], "unravel.region_stats.rstats_mean_IF": [[60, 1, 1, "", "calculate_mean_intensity"], [60, 1, 1, "", "main"], [60, 1, 1, "", "parse_args"], [60, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels": [[61, 1, 1, "", "calculate_mean_intensity"], [61, 1, 1, "", "main"], [61, 1, 1, "", "parse_args"], [61, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_summary": [[62, 1, 1, "", "filter_region_ids"], [62, 1, 1, "", "get_all_region_ids"], [62, 1, 1, "", "get_max_region_id_from_csvs"], [62, 1, 1, "", "get_region_details"], [62, 1, 1, "", "load_data"], [62, 1, 1, "", "main"], [62, 1, 1, "", "parse_args"], [62, 1, 1, "", "perform_t_tests"], [62, 1, 1, "", "plot_data"], [62, 1, 1, "", "remove_zero_intensity_regions"]], "unravel.region_stats.rstats_summary": [[63, 1, 1, "", "get_region_details"], [63, 1, 1, "", "main"], [63, 1, 1, "", "parse_args"], [63, 1, 1, "", "parse_color_argument"], [63, 1, 1, "", "process_and_plot_data"], [63, 1, 1, "", "summarize_significance"]], "unravel.register": [[65, 0, 0, "-", "affine_initializer"], [66, 0, 0, "-", "reg"], [67, 0, 0, "-", "reg_check"], [68, 0, 0, "-", "reg_check_brain_mask"], [69, 0, 0, "-", "reg_prep"]], "unravel.register.affine_initializer": [[65, 1, 1, "", "affine_initializer_wrapper"], [65, 1, 1, "", "main"], [65, 1, 1, "", "parse_args"], [65, 1, 1, "", "run_with_timeout"]], "unravel.register.reg": [[66, 1, 1, "", "bias_correction"], [66, 1, 1, "", "main"], [66, 1, 1, "", "parse_args"]], "unravel.register.reg_check": [[67, 1, 1, "", "main"], [67, 1, 1, "", "parse_args"]], "unravel.register.reg_check_brain_mask": [[68, 1, 1, "", "main"], [68, 1, 1, "", "parse_args"]], "unravel.register.reg_prep": [[69, 1, 1, "", "main"], [69, 1, 1, "", "parse_args"], [69, 1, 1, "", "reg_prep"]], "unravel.segment": [[71, 0, 0, "-", "brain_mask"], [72, 0, 0, "-", "copy_tifs"], [73, 0, 0, "-", "ilastik_pixel_classification"]], "unravel.segment.brain_mask": [[71, 1, 1, "", "main"], [71, 1, 1, "", "parse_args"]], "unravel.segment.copy_tifs": [[72, 1, 1, "", "copy_specific_slices"], [72, 1, 1, "", "main"], [72, 1, 1, "", "parse_args"]], "unravel.segment.ilastik_pixel_classification": [[73, 1, 1, "", "count_files"], [73, 1, 1, "", "main"], [73, 1, 1, "", "parse_args"], [73, 1, 1, "", "save_labels_as_masks"]], "unravel.unravel_commands": [[76, 1, 1, "", "main"], [76, 1, 1, "", "parse_args"]], "unravel.utilities": [[77, 0, 0, "-", "aggregate_files_from_sample_dirs"], [78, 0, 0, "-", "aggregate_files_w_recursive_search"], [79, 0, 0, "-", "clean_tif_dirs"], [80, 0, 0, "-", "prepend_conditions"], [81, 0, 0, "-", "rename"], [83, 0, 0, "-", "toggle_samples"]], "unravel.utilities.aggregate_files_from_sample_dirs": [[77, 1, 1, "", "aggregate_files_from_sample_dirs"], [77, 1, 1, "", "main"], [77, 1, 1, "", "parse_args"]], "unravel.utilities.aggregate_files_w_recursive_search": [[78, 1, 1, "", "find_and_copy_files"], [78, 1, 1, "", "main"], [78, 1, 1, "", "parse_args"]], "unravel.utilities.clean_tif_dirs": [[79, 1, 1, "", "clean_tifs_dir"], [79, 1, 1, "", "main"], [79, 1, 1, "", "parse_args"]], "unravel.utilities.prepend_conditions": [[80, 1, 1, "", "main"], [80, 1, 1, "", "parse_args"], [80, 1, 1, "", "prepend_conditions"], [80, 1, 1, "", "rename_items"]], "unravel.utilities.rename": [[81, 1, 1, "", "main"], [81, 1, 1, "", "parse_args"], [81, 1, 1, "", "rename_files"]], "unravel.utilities.toggle_samples": [[83, 1, 1, "", "main"], [83, 1, 1, "", "parse_args"]], "unravel.voxel_stats": [[84, 0, 0, "-", "apply_mask"], [85, 0, 0, "-", "hemi_to_LR_avg"], [86, 0, 0, "-", "mirror"], [91, 0, 0, "-", "vstats"], [92, 0, 0, "-", "vstats_prep"], [93, 0, 0, "-", "whole_to_LR_avg"], [94, 0, 0, "-", "z_score"]], "unravel.voxel_stats.apply_mask": [[84, 1, 1, "", "apply_mask_to_ndarray"], [84, 1, 1, "", "dilate_mask"], [84, 1, 1, "", "load_mask"], [84, 1, 1, "", "main"], [84, 1, 1, "", "mean_intensity_in_brain"], [84, 1, 1, "", "parse_args"], [84, 1, 1, "", "scale_bool_to_full_res"]], "unravel.voxel_stats.hemi_to_LR_avg": [[85, 1, 1, "", "hemi_to_LR_avg"], [85, 1, 1, "", "main"], [85, 1, 1, "", "parse_args"]], "unravel.voxel_stats.mirror": [[86, 1, 1, "", "main"], [86, 1, 1, "", "mirror"], [86, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other": [[87, 0, 0, "-", "IF_outliers"], [88, 0, 0, "-", "r_to_p"]], "unravel.voxel_stats.other.IF_outliers": [[87, 1, 1, "", "detect_outliers"], [87, 1, 1, "", "main"], [87, 1, 1, "", "mean_intensity_within_mask"], [87, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other.r_to_p": [[88, 1, 1, "", "main"], [88, 1, 1, "", "parse_args"], [88, 1, 1, "", "r_to_z"], [88, 1, 1, "", "z_to_p"]], "unravel.voxel_stats.vstats": [[91, 1, 1, "", "calculate_fragments"], [91, 1, 1, "", "check_fdr_command"], [91, 1, 1, "", "create_design_ttest2"], [91, 1, 1, "", "get_groups_info"], [91, 1, 1, "", "main"], [91, 1, 1, "", "parse_args"], [91, 1, 1, "", "run_randomise_parallel"]], "unravel.voxel_stats.vstats_prep": [[92, 1, 1, "", "main"], [92, 1, 1, "", "parse_args"]], "unravel.voxel_stats.whole_to_LR_avg": [[93, 1, 1, "", "main"], [93, 1, 1, "", "parse_args"], [93, 1, 1, "", "whole_to_LR_avg"]], "unravel.voxel_stats.z_score": [[94, 1, 1, "", "main"], [94, 1, 1, "", "parse_args"], [94, 1, 1, "", "z_score"]], "unravel.warp": [[95, 0, 0, "-", "to_atlas"], [96, 0, 0, "-", "to_native"], [98, 0, 0, "-", "warp"]], "unravel.warp.to_atlas": [[95, 1, 1, "", "copy_nii_header"], [95, 1, 1, "", "main"], [95, 1, 1, "", "parse_args"], [95, 1, 1, "", "to_atlas"]], "unravel.warp.to_native": [[96, 1, 1, "", "calculate_resampled_padded_dimensions"], [96, 1, 1, "", "main"], [96, 1, 1, "", "parse_args"], [96, 1, 1, "", "scale_to_full_res"], [96, 1, 1, "", "to_native"]], "unravel.warp.warp": [[98, 1, 1, "", "main"], [98, 1, 1, "", "parse_args"], [98, 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, 4, 5, 7, 8, 9, 23, 24, 26, 29, 41, 51, 59, 61, 63, 64, 66, 69, 72, 75, 76, 78, 79, 88, 91, 94], "0": [0, 7, 8, 9, 11, 16, 28, 29, 35, 41, 45, 48, 54, 58, 62, 66, 75, 85, 86, 90, 93, 96], "000": 0, "0000": 0, "0005": 0, "0010": 72, "005": 0, "0050": 0, "0060": 72, "01": 0, "0100": [0, 72], "0110": 72, "05": [0, 11], "0500": [0, 72], "1": [0, 2, 7, 8, 9, 11, 15, 18, 20, 23, 29, 35, 41, 45, 48, 54, 58, 71, 75, 85, 90, 93], "10": [0, 22, 65], "100": [0, 51, 56, 75], "1000": [0, 28, 72], "10000": [0, 63], "11": 2, "15": [29, 53, 96], "18000": 91, "1st": [0, 41, 69, 92, 95], "2": [0, 2, 7, 8, 9, 11, 15, 18, 20, 25, 26, 41, 45, 54, 55, 66, 85, 86, 93], "20": 0, "2020": 0, "24": [25, 26], "25": [15, 22, 88], "255": 35, "26": 55, "27af2": 63, "2d": [45, 55], "2d67c8": 63, "2nd": [0, 41], "2x2": 0, "3": [2, 15, 18, 22, 29, 35, 36, 41, 45, 55, 66, 73, 87, 92, 95], "300": 91, "33063286": 0, "3d": [0, 1, 5, 28, 29, 33, 34, 42, 45, 48, 51, 54, 55, 58, 61, 69, 95], "3post3": 2, "3rd": [0, 41], "3x3": 55, "3x3x3": [0, 55], "4": [0, 54, 66, 92], "400": 0, "488": 42, "4d": 0, "5": [7, 8, 9, 45], "50": 96, "5232": [36, 92, 95], "6": [5, 36, 92, 95], "6e10_rb20": 84, "6e10_rb20_wo_artifact": 84, "6e10_seg_ilastik_2": 84, "7": 0, "7f25d3": 63, "8": [7, 8, 9, 29, 43, 55, 75], "9": 12, "A": [0, 7, 8, 9, 13, 20, 25, 26, 27, 31, 41, 48, 66], "As": 23, "For": [0, 2, 5, 11, 13, 14, 15, 22, 41, 48, 73, 76, 80, 83, 91], "IF": [0, 13, 61, 62], "If": [1, 2, 5, 7, 8, 9, 20, 28, 29, 31, 32, 41, 42, 62, 76, 80, 94, 98], "In": 0, "It": [0, 14, 27], "Its": 0, "One": 76, "Or": 0, "The": [0, 1, 3, 4, 7, 8, 9, 11, 14, 20, 23, 25, 26, 27, 28, 41, 45, 55, 62, 66, 80, 83, 86], "These": [0, 93], "To": [0, 54, 63, 73], "With": [0, 35], "_": [0, 7, 8, 9, 18, 20, 83], "_6e10_seg_ilastik_2": 84, "__call__": [25, 26], "__getattr__": 27, "__init__": [25, 26, 27], "__main__": 31, "__name__": 31, "_cfos_rb4_atlas_spac": [0, 94], "_cfos_rb4_atlas_space_z": 0, "_cluster_validation_info": 13, "_data": 5, "_densiti": 18, "_density_data": [18, 20], "_density_data_lh": [18, 20], "_density_data_rh": [18, 20], "_description_": [29, 58], "_f_gt_m": 9, "_f_gt_m_valid_clust": 9, "_fill_text": [25, 26], "_format_action_invoc": [25, 26], "_fos_rb4_gubra_space_z_lravg": 77, "_gt_": 11, "_hedges_g_": [7, 8, 9], "_iba1_seg_ilastik_2": 84, "_lh": [14, 18, 20], "_lt_": 11, "_ochann_rb4_gubra_spac": 92, "_other": 0, "_p_value_map": 88, "_p_value_map_fdr_correct": 88, "_rev_cluster_index": [0, 5], "_rev_cluster_index_": 0, "_rh": [14, 18, 20], "_seg_dir": [5, 61], "_seg_dir_1": 0, "_seg_dir_regional_mean_if_in_seg": 61, "_strip_com": 27, "_sunburst": 15, "_type_": 58, "_v_": 11, "_valid_clust": [7, 8], "_valid_clusters_stat": 20, "_valid_clusters_t": 16, "_vox_p_": 0, "_z": 94, "_z_score_map": 88, "a1": [0, 11], "a2": [0, 11], "aba": [3, 22], "aba_seg": 61, "abbr": [0, 62, 63], "abbrevi": [16, 22], "abcasei": 1, "about": 0, "absolut": [0, 31], "access": [0, 27], "accident": 0, "accod": 11, "accordingli": 35, "account": 0, "accur": 0, "across": [1, 22, 26, 62], "action": [17, 25, 26], "activ": [2, 75, 82], "actual": 0, "ad": [0, 31, 45, 76], "adapt": [0, 1], "add": [1, 2, 53, 54, 62, 63], "add_argu": [25, 26], "add_prefix": 77, "addit": 27, "adj_p_val_img_path": 11, "adjust": [0, 11, 23, 86], "adjusted_pval_output_path": 11, "administr": 2, "affect": 0, "affin": [28, 38, 41], "affine_initi": [1, 70, 75], "affine_initializer_wrapp": [65, 70, 75], "after": [1, 2, 19, 20, 24, 29, 55, 62, 65, 75, 76, 86], "again": [0, 76], "against": [7, 8, 9, 20], "aggreg": [0, 4, 17, 20, 23, 62, 77, 92], "aggregate_files_from_sample_dir": [0, 1, 75, 82], "aggregate_files_w_recursive_search": [1, 75, 82], "algorithm": 54, "alia": [0, 2, 76], "alias": 76, "align": [0, 41], "all": [1, 5, 7, 8, 9, 20, 22, 23, 26, 29, 31, 56, 59, 62, 75, 82], "allen": 1, "allow": [0, 27, 65, 84], "along": 86, "alphabet": 0, "alreadi": [0, 64, 75, 82], "also": [0, 41, 54, 59, 65, 85, 93], "alt": 62, "altern": [0, 20], "ama": 94, "amyloid": 0, "an": [1, 7, 8, 9, 20, 25, 26, 28, 29, 31, 32, 33, 35, 36, 38, 39, 40, 44, 45, 48, 50, 52, 53, 54, 55, 59, 66, 73, 75, 76, 84, 86, 90, 92, 93, 96, 98], "analys": 91, "analyz": [0, 4, 94], "ani": [1, 7, 8, 9, 18, 20], "anoth": [0, 20, 45, 76], "anova": [0, 11], "anterior": [0, 41, 66], "antspi": [1, 95, 98], "antspy_init_tform": 65, "app": 22, "append": 0, "appli": [0, 2, 3, 5, 16, 19, 41, 45, 55, 85, 93, 98], "applic": [27, 84], "apply_2d_mean_filt": [55, 56, 75], "apply_mask": [1, 75, 90], "apply_mask_to_ndarrai": [75, 84, 90], "apply_rgb_to_cel": [16, 24, 75], "approach": 35, "apt": 2, "ar": [0, 1, 2, 4, 11, 20, 23, 31, 41, 45, 48, 55, 56, 75, 76, 86], "arctanh": 88, "arg": [5, 6, 19, 25, 26, 31, 48, 61, 63, 84], "argpars": [25, 26, 61], "argparse_util": [1, 30, 75], "argparse_utils_rich": [1, 30, 75], "argument": [0, 25, 26, 31, 36, 61, 69, 79], "argumentpars": [25, 26], "around": [5, 45], "arr": 55, "arrai": [0, 28, 29, 48, 55], "artifact": [0, 75, 90], "associ": 27, "assum": [29, 32, 79], "asterisk": [11, 15, 16, 17, 18, 20, 22, 23, 32, 42, 49, 60, 61, 62, 67, 69, 71, 73, 78, 86, 87, 92, 95], "atla": [1, 2, 3, 5, 15, 22, 29, 56, 60, 61, 64, 66, 75, 86, 90, 92, 95, 96, 97], "atlas": [1, 65, 86], "atlas_img": [59, 98], "atlas_img_w": 48, "atlas_img_w_id": 48, "atlas_in_tissue_spac": [0, 67, 98], "atlas_mask": [85, 93, 94], "atlas_ndarrai": 48, "atlas_relabel": [0, 46], "atlas_res_in_um": [15, 22], "atlas_spac": [0, 77, 92, 94], "atlas_split": [0, 59], "atlas_wirefram": [0, 48], "attempt": [18, 20], "attrdict": [27, 30, 75], "attribut": 27, "austen": [0, 1], "autofl": [0, 32, 66], "autofl_": [0, 67, 69, 71], "autofl_50um": 53, "autofl_50um_brain_mask": 94, "autofl_50um_masked_fixed_reg_input": [65, 98], "autofl_50um_tif": 72, "autofluo": [0, 69], "autofluo_50_mask": 68, "autofluo_50um": 68, "autofluoresc": 0, "autom": 1, "automat": 85, "avail": [0, 64, 75, 76, 91], "averag": [0, 11, 31, 45, 49, 55, 66, 85, 86, 93, 94], "averagetimeperiterationcolumn": [30, 31, 75], "avg": [0, 1, 56, 75], "avg_img1": 11, "avg_img2": 11, "avoid": 76, "ax": [0, 28, 38, 41, 57, 66], "axi": [41, 66, 85, 86, 93], "axis_1": 57, "axis_2": 57, "axis_3": 57, "axis_ord": [32, 42], "b": [2, 6, 13, 73, 76, 91], "back": [1, 51], "background": [29, 45, 48, 54, 92], "backtick": 0, "ball": [0, 29, 45, 54], "bar": [0, 31], "barbosa": 1, "base": [0, 1, 7, 8, 9, 11, 14, 20, 23, 25, 26, 27, 28, 29, 31, 46, 59, 80, 81, 84, 91], "base_path": [14, 17, 80], "bash": 2, "bashrc": [0, 1, 76], "basic": 0, "bbox": [1, 6, 29, 56, 75], "bc": [0, 66], "beauti": 26, "becom": 35, "been": [0, 23], "befor": [0, 18, 19, 20], "being": [0, 11, 75, 76, 82], "below": 0, "beta": 0, "better": 71, "between": [0, 7, 8, 9, 13, 62], "bheifet": 1, "bia": 66, "bias_correct": [66, 70, 75], "bilater": [0, 3, 11, 14, 18, 20], "bilinear": 29, "bin": [0, 2, 76], "binar": [0, 3, 35], "binari": [35, 48, 84], "binary_mask": 48, "bit": [43, 75], "blue": 0, "blur": 45, "bool": [28, 29, 31, 41, 58, 66, 79, 98], "boolean": [7, 8, 9, 20, 27], "bori": 1, "both": [0, 25, 26, 31, 75, 81, 90], "botleneck": 0, "bottom": [0, 51], "bound": [0, 5, 6, 29, 50], "boundari": 48, "bounding_box": 50, "box": [0, 5, 6, 29, 50], "bracket": 0, "brain": [1, 11, 19, 48, 60, 61, 66, 71, 75, 90, 94], "brain_mask": [0, 1, 74, 75], "brain_mask_ilp": 0, "brain_mask_tif": 69, "brain_model": [1, 24, 75], "bright": 0, "browser": 1, "bspline": 95, "build": 2, "button": 0, "bz2": 2, "c": [0, 2, 4, 7, 8, 9, 13, 59, 76, 83], "c1": [0, 7, 8, 9], "c2": [0, 7, 8, 9], "c3": 0, "calcul": [0, 7, 8, 9, 22, 59, 60, 61, 91], "calculate_frag": [75, 90, 91], "calculate_mean_intens": [60, 61, 64, 75], "calculate_regional_cell_dens": [59, 64, 75], "calculate_regional_volum": [22, 24, 59, 64, 75], "calculate_resampled_padded_dimens": [75, 96, 97], "calculate_top_region": [23, 24, 75], "call": 76, "callabl": 55, "camel": 0, "can": [2, 23, 27, 31, 36, 71, 73, 76, 80, 81, 85, 93], "can_collaps": [23, 24, 75], "captur": 4, "case": [0, 20], "casei": 1, "cat": 0, "categori": 22, "cc3d": 1, "ccfv3": [0, 41], "cd": [0, 60, 76], "cell": [0, 1, 5, 13, 16, 17, 18, 20, 59, 63], "cell_count": [5, 18, 20], "cell_dens": [5, 18, 20], "cell_density_data": 0, "cell_des": 59, "cellular": 1, "center": [1, 86], "certain": [75, 82], "cfo": [0, 73], "cfos_rb4_atlas_spac": 0, "cfos_seg": 73, "cfos_seg_ilastik_1": [0, 5], "chang": [0, 2, 76, 81], "channel": 28, "chart": 0, "check": [0, 7, 8, 9, 20, 31, 56, 67, 75, 76, 87, 91], "check_fdr_command": [75, 90, 91], "checkout": 2, "choos": 0, "ci": [7, 8, 9, 15], "class": [25, 26, 27, 28, 31], "classif": [0, 29, 71, 73], "clean": [1, 79], "clean_tif_dir": [1, 75, 82], "clean_tifs_dir": [75, 79, 82], "cli": [75, 97], "click": 0, "clone": [2, 76], "close": 0, "cluster": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 29, 56, 63, 75, 90], "cluster_": 15, "cluster_1": [7, 8, 9], "cluster_2": [7, 8, 9], "cluster_bbox": [5, 24, 75], "cluster_bbox_parallel": [5, 24, 75], "cluster_bbox_result": 5, "cluster_brain_model": [0, 3, 4], "cluster_column": 9, "cluster_crop": [0, 6], "cluster_data": 5, "cluster_fdr": [1, 11, 13, 19, 91], "cluster_fdr_rang": [1, 12, 91], "cluster_find_incongru": 13, "cluster_find_incongruent_clust": 0, "cluster_group_data": [0, 4, 14], "cluster_id": [5, 13, 18, 20, 29, 30, 75], "cluster_idx": 17, "cluster_index": [0, 4, 11, 15, 22, 23, 24, 75], "cluster_index_dir": 5, "cluster_index_img": 11, "cluster_index_nii": 11, "cluster_info": 23, "cluster_legend": [0, 4, 16], "cluster_list": [7, 8, 9], "cluster_mirror_indic": [1, 11, 19], "cluster_org_data": [0, 14, 17, 18, 24, 75], "cluster_pr": [0, 4, 18], "cluster_stat": [0, 1, 75], "cluster_summari": [1, 5, 21, 24, 75], "cluster_sunburst": [0, 22], "cluster_t": [0, 4, 16, 23], "cluster_valid": [1, 11, 14, 17, 19, 20, 22, 24, 75], "cluster_valid_results_1": 14, "cluster_valid_results_1_lh": 14, "cluster_valid_results_1_rh": 14, "cluster_valid_results_2": 14, "cluster_valid_results_2_lh": 14, "cluster_valid_results_2_rh": 14, "cluster_validation_data_df": [20, 24, 75], "cluster_validation_dir": 14, "cluster_validation_info": 21, "cluster_validation_summari": [18, 21], "cluster_volum": [18, 20], "cluster_volume_in_cubic_mm": 5, "clusters_path": 17, "code": [22, 29, 38, 41, 63, 66], "codebas": 1, "col_num": 16, "col_w_label": 16, "cold": 1, "collabor": 1, "collaps": 23, "collapse_hierarchi": [23, 24, 75], "color": [3, 22], "color_arg": 63, "column": [0, 7, 8, 9, 13, 16, 18, 20, 22, 23, 31, 41, 62, 63, 80], "com": 2, "combin": 23, "commad": 2, "command": [1, 2, 4, 5, 14, 18, 19, 20, 23, 25, 31, 32, 36, 42, 45, 61, 65, 69, 71, 75, 79, 80, 83, 91], "command_log": 0, "comment": 27, "common": [1, 75], "compact": 31, "compar": [9, 20], "comparison": [0, 7, 8, 9, 13, 20, 91], "complet": [0, 31], "compon": 5, "compris": 22, "comput": [0, 2], "concaten": 21, "condit": [0, 4, 7, 8, 9, 18, 20, 59, 64, 73, 75, 80, 82, 84], "condition1_sample01_": [18, 20], "condition1_sample02_": [18, 20], "condition2_sample03_": [18, 20], "condition2_sample04_": [18, 20], "condition_1": [7, 8, 9], "condition_2": [7, 8, 9], "condition_column": [7, 8, 9, 20], "condition_prefix": 20, "condition_selector": [7, 8, 9, 10, 20, 24, 75], "config": [0, 1, 4, 30, 31, 75], "config_fil": 27, "config_path": 31, "configpars": 27, "configur": [2, 26, 27, 30, 31, 75, 76], "confirm": 2, "conflict": 76, "connect": [5, 59], "consid": [0, 94], "consol": 26, "consolid": 14, "contain": [7, 8, 9, 14, 20, 22, 28, 29, 31, 48, 61, 63, 72, 79, 80, 98], "content": [0, 31, 86], "context": 0, "context1": 0, "context2": 0, "contrast": [0, 11, 91], "contrast_vox_p_tstat1_q": 0, "control": [0, 4, 27, 62, 80, 83], "control_": 0, "control_avg": 0, "control_sample01_cell_density_data": 0, "control_sample01_cfos_rb4_atlas_space_z": 62, "control_sample01_fil": 80, "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": 27, "convent": [0, 14, 18, 20, 29], "convers": [29, 35, 69], "convert": [0, 13, 33, 35, 39, 40, 44, 46, 88], "convert_dtyp": [35, 43, 75], "coordin": [28, 41, 59], "copi": [0, 17, 31, 67, 68, 72, 75, 78, 82, 86, 95], "copy_fil": [30, 31, 75], "copy_nii_head": [75, 95, 97], "copy_specific_slic": [72, 74, 75], "copy_stats_fil": [17, 24, 75], "copy_tif": [0, 1, 74, 75], "core": [1, 75], "corr_factor": [7, 8, 9], "correct": [1, 7, 8, 9, 11, 12, 17, 66, 76, 91], "correl": 88, "correlation_map": 88, "correspond": 14, "could": 45, "count": [0, 5, 23, 59, 73], "count_cel": [5, 24, 75], "count_cells_in_region": [59, 64, 75], "count_fil": [73, 74, 75], "counterpart": 85, "cp": [17, 21, 24, 75], "creat": [0, 2, 7, 8, 9, 14, 15, 20, 23, 28, 76, 91], "create_design_ttest2": [75, 90, 91], "criteria": 23, "criterion": 23, "crop": [0, 1, 5, 24, 29, 30, 75], "crop_outer_spac": [5, 24, 75], "csv": [1, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 17, 18, 20, 21, 22, 46, 59, 60, 61, 62, 63, 80, 83], "csv_file": [18, 20, 80], "csv_path": 62, "csv_pattern": 21, "ctrl": 0, "cubic": 55, "curl": 2, "current": [0, 4, 5, 32, 42, 55, 63, 67, 68, 80, 86], "custom": [22, 25, 26, 64, 75], "custom_atla": 62, "custommofncompletecolumn": [30, 31, 75], "customtimeelapsedcolumn": [30, 31, 75], "customtimeremainingcolumn": [30, 31, 75], "cvd": [0, 4, 17], "cwd": [32, 42], "czi": [0, 28, 33, 34, 36, 50, 55, 61, 69, 73, 92, 95], "czi_path": 28, "d": [0, 35, 36, 55, 63, 69, 76, 78, 79], "d32525": 63, "d_type": 40, "dan": 0, "daniel": 1, "danrij": [1, 2], "dark": 31, "data": [1, 4, 7, 8, 9, 11, 15, 17, 18, 20, 22, 28, 29, 35, 38, 41, 55, 60, 61, 84, 86], "data_col": 20, "data_col_pool": 20, "data_column_nam": 18, "data_df": 20, "data_typ": [11, 15, 28, 35], "databas": 27, "database_config": 27, "datafram": [7, 8, 9, 16, 20, 23, 62, 63], "dataset": [1, 32], "dbarbosa": 1, "decor": 31, "decreas": 13, "deep_avg": 0, "deeper": 23, "default": [28, 29, 31, 32, 41, 42, 55, 58, 61, 81, 84, 86, 95, 98], "defin": [1, 11, 25, 26, 27, 28], "define_zarr_to_nii_output": [43, 44, 75], "delet": 0, "densens": 63, "densiti": [0, 1, 5, 7, 8, 9, 13, 17, 20, 59], "density_col": 20, "density_in_clust": [5, 24, 75], "density_in_cluster_parallel": [5, 24, 75], "density_typ": 17, "depend": [2, 55], "depth": [22, 23], "depth_": 22, "depth_col": 23, "descend": 23, "describ": 0, "descript": [0, 1, 25, 26, 75], "design": [0, 25, 26, 91], "design_fts_path": 91, "desir": [0, 28, 95], "desired_axis_ord": [28, 32, 42], "dest": [17, 25, 26], "dest_dir": 78, "dest_path": 17, "destin": [17, 78], "detail": [0, 2, 31], "detect_outli": [87, 89, 90], "determin": [0, 23, 35, 41, 66, 76], "dev": 2, "deviat": [45, 94], "devnul": 65, "df": [7, 8, 9, 13, 20, 23, 62, 63], "df_collaps": 23, "df_origin": 23, "df_sort": 23, "df_w_rgb": 16, "di": 84, "diagnos": 76, "diagon": 41, "dict": [22, 27], "dictionari": [22, 27], "differ": [0, 13, 20, 45], "difference_of_gaussian": [45, 56, 75], "diffus": 0, "dilat": [48, 84], "dilate_mask": [75, 84, 90], "dimens": [28, 36, 55, 84, 96], "dir": [1, 4, 5, 18, 23, 31, 36, 59, 62, 67, 68, 69, 71, 74, 75, 77, 79, 81, 82], "dir_nam": [0, 4, 80, 83], "direct": [0, 11, 13, 41, 66, 84], "directioanl": 0, "directli": [24, 75], "directori": [0, 2, 4, 11, 14, 15, 16, 17, 28, 31, 32, 36, 42, 63, 67, 68, 69, 71, 72, 73, 75, 77, 79, 80, 82, 92, 95], "dirnam": 0, "displai": [25, 26], "distribut": 2, "distrubut": 0, "do": [0, 54, 63], "doc": 0, "document": [0, 2, 76], "doe": [0, 1, 13, 76], "dog": [1, 56, 75], "don": [28, 63], "done": 0, "doubl": [0, 63], "download": 2, "drag": 0, "draw": 0, "drive": 2, "drop": 0, "drug": 0, "drug_sample01_atlas_space_z": 0, "dry_run": 81, "dsi": 0, "dsi_studio": 3, "dtype": [35, 84, 95], "dunnett": 63, "durat": 31, "dure": 0, "dynam": 23, "e": [0, 2, 4, 5, 7, 8, 9, 11, 12, 17, 20, 21, 25, 26, 36, 41, 45, 46, 51, 61, 62, 67, 68, 69, 73, 74, 75, 76, 77, 79, 83, 90, 92, 95, 98], "each": [0, 5, 7, 8, 9, 11, 14, 20, 22, 23, 31, 36, 55, 56, 59, 60, 61, 62, 63, 67, 68, 75], "earli": 1, "earliest": 23, "easi": 0, "easier": 0, "echo": 2, "edg": [45, 55], "edit": [0, 1], "edu": [1, 2], "effect": [0, 7, 8, 9, 11, 20], "effect_s": [0, 1, 24, 75], "effect_sizes_by_sex__absolut": [10, 24, 75], "effect_sizes_by_sex__rel": [10, 24, 75], "effect_sizes_sex_ab": [0, 8], "effect_sizes_sex_rel": [0, 9], "either": [28, 32, 41, 42], "elaps": 31, "elapsed_when_finish": 31, "element": 0, "els": 0, "empti": [0, 25, 26], "enabl": 79, "encount": 76, "end": 31, "enhanc": [25, 26, 31], "enough": [0, 45], "ensur": [0, 23, 45], "enter": [0, 8, 9], "environ": [2, 76], "epilog": [25, 26], "error": [7, 8, 9, 20, 65], "essenti": 2, "establish": 23, "etc": [1, 2, 11, 98], "ev": 0, "ev1": 0, "ev2": 0, "ev3": 0, "ev4": 0, "eval": 2, "everi": 35, "exact": [7, 8, 9, 20], "exactli": [7, 8, 9, 20], "exampl": [1, 2, 13, 14, 15, 18, 20, 22, 25, 26, 27, 31, 41, 63, 69, 76, 80, 92, 95], "exclud": [0, 73, 75, 90], "exec": 2, "execut": [31, 76], "exist": 28, "exp": [1, 4, 69, 71, 74, 75], "exp1": 31, "exp2": 31, "exp_dir": 0, "exp_dir_path": 31, "exp_path": 36, "expect": 76, "expected_higher_mean_group": 13, "expected_lower_mean_group": 13, "experi": [1, 5, 17, 31, 36, 61, 67, 68, 69, 71, 79, 92], "explicit": 31, "explor": 1, "export": 2, "extend": [0, 1, 27, 56, 75], "extend_one_side_3d_arrai": [51, 56, 75], "extens": [51, 55, 79], "extern": 0, "extra": 0, "extract": [0, 28, 43, 75], "extract_resolut": [28, 30, 75], "extract_unique_regions_from_fil": [16, 24, 75], "extrem": 0, "ey": 0, "f": [0, 8, 9, 62, 65, 80, 98], "f1": 0, "f2": 0, "f3": 0, "face": 0, "factor": 66, "fals": [22, 23, 27, 28, 29, 31, 32, 41, 42, 58, 62, 66, 77, 81, 96, 98], "faster": [0, 64, 75], "fdr": [0, 1, 12, 24, 75, 88, 91], "fdr_path": 11, "fdr_rang": [0, 1, 24, 75], "featur": [0, 1, 45, 54, 73], "fiber": 0, "field": 66, "file": [0, 2, 4, 5, 14, 16, 17, 18, 19, 20, 22, 27, 28, 29, 31, 32, 33, 36, 41, 42, 45, 48, 50, 52, 54, 59, 60, 61, 62, 72, 73, 75, 76, 78, 79, 80, 82, 83, 93, 98], "file_path": [16, 19, 28, 31, 52], "filenam": [0, 31, 80, 81], "fill": 0, "fill_na_with_last_known": [23, 24, 75], "filter": [0, 55, 62], "filter_datafram": [7, 8, 9, 10, 24], "filter_func": 55, "filter_region_id": [62, 64, 75], "final": 0, "find": [0, 13, 21, 29, 32, 42, 48, 52], "find_and_copy_fil": [75, 78, 82], "find_bounding_box": [29, 30, 75], "find_incongruent_clust": [1, 24, 75], "find_largest_h5_fil": [32, 43, 75], "find_largest_tif_fil": [42, 43, 75], "find_matching_directori": [17, 24, 75], "find_max_intens": [52, 56, 75], "first": [4, 18, 20, 32, 41, 45, 62], "fisher": 88, "fix": [0, 35, 76, 95], "fixed_imag": 65, "fixed_image_path": 65, "fixed_img_path": 98, "fixed_reg_in": [95, 96], "fixed_scal": 35, "fixed_scale_rang": 35, "flag": [0, 22, 27], "flank": 63, "flip": [0, 86], "float": [11, 12, 28, 35], "float32": [28, 35, 94], "float64": 35, "flourish": 22, "fluoresc": 1, "fo": [0, 84], "focu": 25, "folder": [1, 14, 36, 61, 69, 73, 79, 80, 98], "follow": [0, 2, 4, 14, 76, 80, 83], "foreground": 0, "form": 0, "form_cod": 41, "format": [0, 4, 12, 25, 26, 28, 83], "formatter_class": [25, 26], "forward": [75, 97], "fos_rb4_gubra_space_z_lravg": 77, "fos_seg_ilastik": 84, "fos_seg_ilastik_2": 84, "fos_wo_halo": 84, "found": [7, 8, 9, 20, 28, 31], "fragment": 91, "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 83, 85, 86, 90, 91, 92, 93, 94, 95, 96, 98], "front": 51, "fsl": [0, 1, 2, 91], "fslconf": 2, "fsldir": 2, "fsley": 0, "fsleyes_lut": 0, "fslpy": 1, "fstat": 0, "fstat1": 0, "fstat2": 0, "fstat3": 0, "full": [0, 28, 31, 32, 42, 61, 69, 74, 75, 84, 96], "full_res_dim": [84, 96], "full_res_img": [0, 36], "func": 31, "function": [0, 7, 8, 9, 20, 29, 30, 31, 55, 75], "fund": 1, "fuse": 0, "futur": [2, 45], "g": [0, 2, 7, 8, 9, 11, 12, 13, 20, 21, 41, 45, 46, 62, 73, 75, 90, 95, 98], "g1": 45, "g2": 45, "gap": 0, "gaussian": [0, 45], "gener": [0, 11, 15, 22, 48, 62], "generate_summary_t": [18, 24, 75], "generate_sunburst": [15, 24, 75], "generate_wirefram": [47, 48, 56], "get": [0, 2, 5, 29, 31, 34, 38, 41, 59, 87], "get_all_region_id": [62, 64, 75], "get_atlas_region_at_coord": [59, 64, 75], "get_dims_from_tif": [36, 43, 75], "get_dir_name_from_arg": [30, 31, 75], "get_fill_color": [23, 24, 75], "get_groups_info": [75, 90, 91], "get_max_region_id_from_csv": [62, 64, 75], "get_region_detail": [62, 63, 64, 75], "get_sampl": [30, 31, 75], "get_top_regions_and_percent_vol": [23, 24, 75], "git": 2, "github": [1, 2, 73, 76, 91], "given": [11, 15, 27, 31, 48, 59, 84], "glm": 0, "glob": [0, 28, 36, 69, 78, 92, 95], "global": 27, "go": 0, "googl": [0, 2], "gov": 0, "gradient": 0, "greater": [20, 58, 84], "green": 31, "gregori": 1, "group": [0, 4, 7, 8, 9, 11, 13, 20, 23, 62, 63, 91], "group1": [0, 4, 11, 20, 62, 63], "group1_avg": 11, "group1_siz": 91, "group2": [0, 4, 11, 20, 62, 63], "group2_avg": 11, "group2_siz": 91, "group3": [20, 62], "group4": 20, "group_1": 62, "group_2": 62, "group_3": 62, "group_bilateral_data": [1, 24, 75], "group_column": 63, "group_hemisphere_data": [14, 24, 75], "groupa": 13, "groupb": 13, "gubra": [1, 65, 86], "gubra_ano_25um_bin": 0, "gubra_ano_combined_25um": 0, "gubra_ano_split_25um": [0, 3], "gubra_mask_25um_wo_ventricles_root_fibers_lh": 0, "gubra_mask_25um_wo_ventricles_root_fibers_rh": 0, "gubra_template_25um": [0, 65], "gui": 0, "guid": [1, 2, 73, 91], "guidanc": 1, "gz": [0, 3, 5, 6, 11, 12, 15, 19, 20, 22, 28, 29, 34, 35, 36, 37, 38, 39, 40, 41, 44, 46, 48, 49, 50, 52, 53, 55, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 77, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "h": [0, 2, 76], "h5": [0, 28, 32, 34, 36, 55, 69, 92, 95], "h5_to_tif": [1, 43, 75], "ha": [0, 13, 18, 20, 23, 32, 41, 62, 76], "handl": [0, 7, 8, 9, 20, 25, 26, 28, 31], "has_hemispher": 20, "have": [0, 1, 4, 11, 45, 76, 80, 83], "hdf5": [28, 32], "hdf5_path": [28, 32], "header": [0, 37, 95], "headless": 0, "hedg": [7, 8, 9], "hedges_g": [7, 8, 10, 24], "heifet": [0, 1, 2, 73, 76, 91], "help": [1, 2, 13, 25, 26, 45, 73, 76], "helper": [30, 75], "helpformatt": 25, "hemi": [0, 63], "hemi_to_lr_avg": [0, 1, 75, 90], "hemispher": [0, 11, 14, 20, 85, 94], "here": 0, "hex": 63, "hidden": [0, 31], "hide": 0, "hierarchi": [22, 24, 75], "higher": 0, "higher_mean_group": [13, 20], "highest": 32, "highlight": 45, "histori": 0, "hold": 27, "home": [0, 2], "hot": 1, "how": 91, "hsd": 20, "html": [73, 91], "http": [0, 2, 22, 73, 76, 91], "hypothesi": 20, "i": [0, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 20, 22, 23, 25, 26, 28, 29, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 64, 66, 69, 72, 73, 75, 76, 79, 82, 83, 84, 86, 88, 91, 92, 94, 95, 96], "iba1_rb20": 84, "iba1_rb20_clust": 84, "iba1_seg_ilastik_2": 84, "ic": 46, "id": [0, 3, 11, 13, 15, 18, 22, 29, 46, 48, 62, 63], "ideal": [0, 45], "identifi": [23, 76], "idisco": [0, 1], "if_img": 61, "if_outli": [75, 89, 90], "ilastik": [1, 2, 29, 69, 71, 72, 73], "ilastik_brain_mask": [0, 72], "ilastik_log": 29, "ilastik_pixel_classif": [0, 1, 74, 75], "ilastik_project": [29, 73], "ilastik_segment": [0, 72], "ilp": [0, 71, 73], "imag": [3, 5, 6, 11, 15, 22, 28, 29, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 66, 69, 73, 74, 75, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98], "image_io": [0, 1, 2, 75], "image_nam": 60, "image_path": 66, "image_pir": 41, "image_pir_appli": 41, "image_to_warp_from_atlas_spac": 96, "image_tool": [0, 1, 75], "img": [6, 15, 19, 22, 35, 37, 38, 40, 44, 45, 50, 54, 57, 84, 86, 94, 95, 96], "img_avg": [1, 11, 49], "img_bbox": [0, 50], "img_crop": 6, "img_dog": [0, 45], "img_extend": [0, 51], "img_in_atlas_spac": 95, "img_io": [1, 30, 75], "img_max": [0, 52], "img_pad": [0, 53], "img_path": [28, 40, 44], "img_rb": [0, 54], "img_resampl": 69, "img_spatial_avg": [0, 55], "img_to_npi": [1, 43, 75], "img_tool": [1, 30, 75], "img_transpos": [0, 57], "img_uniqu": [0, 58, 62], "img_wb": 3, "immunofluo": [0, 92], "immunofluoresc": [0, 1, 60, 61, 74, 75], "immunolabel": 0, "immunostain": 11, "implement": 45, "import": [25, 26, 27, 31, 65, 96], "improv": [0, 2, 25], "inactiv": 83, "includ": [28, 31, 69], "incongru": 13, "increas": [0, 13, 31, 79], "indent": [25, 26], "indent_incr": [25, 26], "index": [0, 1, 3, 5, 11, 24, 29, 75], "indic": [0, 11, 13, 19, 20, 35, 41], "individu": 23, "inferior": 41, "info": [1, 17, 21, 31, 73, 91, 95], "inform": 11, "inherit": [25, 26], "ini": [0, 4, 27, 31], "init": 2, "initi": [0, 1, 2, 25, 26, 27, 29, 31], "initialize_progress_bar": [30, 31, 75], "inlin": 27, "innacuraci": 0, "inp": 98, "input": [0, 3, 7, 8, 9, 11, 12, 13, 15, 16, 18, 20, 22, 28, 32, 34, 35, 36, 41, 42, 45, 46, 54, 55, 58, 62, 66, 69, 71, 85, 91, 92, 93, 94, 95, 98], "input_image_path": 91, "input_img": [58, 94], "input_img_lh": 85, "input_img_lravg": [85, 93], "input_img_rh": 85, "input_img_s100_lravg": 85, "input_name_rev_cluster_index": 11, "input_nii_path": 28, "input_path": [11, 12, 22], "input_sunburst": 22, "insid": 48, "inspir": 1, "instal": [0, 1, 31, 76], "instanc": 76, "instead": [0, 45, 76], "institut": 1, "instruct": [0, 2], "int": [26, 28, 29, 41, 55, 58, 66, 86], "int16": 35, "int32": 35, "int64": 35, "int8": 35, "integ": 35, "intend": 45, "intens": [0, 11, 13, 29, 35, 46, 48, 52, 56, 59, 60, 61, 62, 75, 87, 90, 94], "interact": 0, "interest": [0, 1, 7, 8, 9, 20, 45, 54], "interior": [0, 66], "intern": 48, "interpol": [29, 84, 95, 96, 98], "introduc": 13, "inv": 98, "invers": [75, 97], "invoc": [25, 26], "invok": 76, "involv": 79, "io": [73, 76, 91], "io_h5_to_tif": [0, 32], "io_img": [0, 1, 43, 75], "io_img_to_npi": [0, 33], "io_metadata": [0, 2, 36, 96], "io_nii": [0, 1, 43, 75], "io_nii_hd": [0, 37], "io_nii_info": [0, 38], "io_nii_to_tif": [0, 39], "io_nii_to_zarr": [0, 40], "io_reorient_nii": [0, 41], "io_tif_to_tif": [0, 42], "io_zarr_to_nii": [0, 44], "is_fil": 28, "isol": 0, "issu": [2, 76], "item": 31, "iter": [31, 84], "its": [27, 28, 37, 38, 41, 48, 52, 55, 92, 93], "j": 0, "k": [0, 85, 93], "keep": [0, 45, 76], "kei": [22, 27, 80], "kernel": [0, 55, 85, 93], "kernel_s": 55, "kill": 65, "kwarg": [25, 26, 31], "l": [0, 13, 41, 66], "lab": [0, 1], "label": [0, 1, 5, 13, 16, 17, 18, 20, 22, 46, 62, 71, 73], "label_dens": [5, 18, 20], "label_volum": [18, 20], "larg": [0, 7, 8, 9], "larger": [0, 23, 45, 54], "largest": [0, 11, 32, 42, 48], "last": [0, 20], "launch": 0, "layer": 0, "lead": 1, "learn": 0, "least": 45, "leav": 54, "left": [0, 14, 41, 51, 66], "legaci": 29, "legend": [0, 1, 24, 75], "len": 31, "less": [0, 20, 54, 84], "letter": [29, 38, 41, 66], "level": [0, 22, 23], "lh": [0, 20], "lh_file": 85, "libbz2": 2, "libffi": 2, "liblzma": 2, "libncurses5": 2, "libncursesw5": 2, "librari": [25, 26], "libreadlin": 2, "libsqlite3": 2, "libssl": 2, "lightsheet": [0, 1], "like": [2, 27, 38], "line": [0, 1, 2, 25, 31, 61], "linear": [95, 98], "link": [0, 2], "linux": [0, 1], "list": [1, 5, 7, 8, 9, 12, 17, 20, 29, 31, 48, 58, 63, 67, 68, 69, 72, 76, 83, 92], "list_of_exp_dir_path": 83, "live": 0, "llvm": 2, "load": [0, 5, 6, 28, 31, 32, 34, 37, 38, 42, 45, 50, 51, 52, 54, 55, 58, 69, 84, 86, 87, 92], "load_3d_img": [28, 30, 75], "load_3d_tif": [42, 43, 75], "load_config": [30, 31, 75], "load_czi": [28, 30, 75], "load_data": [62, 64, 75], "load_h5": [28, 30, 32, 43, 75], "load_image_metadata_from_txt": [28, 30, 75], "load_mask": [75, 84, 90], "load_nii": [28, 30, 75], "load_nii_orient": [28, 30, 75], "load_nii_subset": [28, 30, 75], "load_text_from_fil": [30, 31, 75], "load_tif": [28, 30, 45, 54, 56, 75], "load_zarr": [28, 30, 75], "local": [2, 65], "locat": [0, 2, 76], "log": [1, 31], "long_nam": 17, "longer": 0, "look": 62, "lower": [0, 69], "lp": 41, "lsfm": [0, 1], "lut": [0, 62], "m": [0, 3, 5, 8, 9, 19, 58, 59, 65, 66, 76, 79, 84, 87, 96, 98], "ma": [0, 11, 12, 84, 91], "maco": 0, "mai": [0, 13, 54, 86, 93], "main": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 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], "main_effect_": 0, "maintain": [1, 23], "mainten": 1, "make": [1, 2, 11, 76, 81], "make_par": 28, "malenka": 1, "manag": [2, 25, 26], "map": [0, 1, 11, 12, 13, 88], "mask": [0, 5, 11, 12, 48, 66, 68, 71, 75, 85, 87, 90, 91, 93], "mask_condit": 84, "mask_dir": [74, 75], "mask_ndarrai": 84, "mask_path": [11, 12, 66, 84, 91], "mat_fil": 91, "match": [0, 7, 8, 9, 13, 17, 20, 21, 29, 31, 69, 78, 80, 84, 87, 92, 95, 96], "matrix": [0, 28, 38, 41, 91], "max": [0, 1, 35, 56, 75], "max_cluster_id": 11, "max_decim": 12, "max_help_posit": [25, 26], "max_region_id": 62, "max_valu": 23, "maximum": [52, 62], "mdma": [0, 63, 83], "mdma_sample01": [0, 63], "mean": [0, 13, 55, 60, 61, 62, 75, 76, 87, 90, 94], "mean_if_in_seg": 61, "mean_if_intens": 62, "mean_intensities_dict": 61, "mean_intensity_in_brain": [75, 84, 90], "mean_intensity_within_mask": [87, 89, 90], "mean_std_count": [9, 10, 24], "meandiff": 63, "meaning": 23, "means_in_mask_plot": 87, "measur": [0, 5, 60, 61], "medium": [7, 8, 9], "meet": 23, "mehrdad": 1, "member": 0, "memori": 31, "menu": 2, "messag": [25, 26, 65], "met": 23, "metacel": 1, "metadata": [0, 1, 2, 28, 30, 32, 34, 42, 43, 75, 96], "metadata_from_3d_tif": [42, 43, 75], "metadata_from_h5": [32, 43, 75], "metadata_path": 36, "metadata_rel_path": 96, "metavar": [25, 26], "meth": [0, 63], "meth_sample23": [0, 63], "method": [25, 26, 27, 45], "mi": 95, "microglia": [75, 90], "micron": [0, 15, 22, 28, 29, 32, 36, 42, 69], "microscopi": 1, "microsoft": 2, "mid": 0, "middl": 0, "might": 45, "mimic": [29, 69], "min": [35, 56, 75], "min_cluster_size_in_voxel": [0, 11], "min_ext": [29, 58], "min_siz": 11, "minext": 29, "minim": 0, "minimum": 23, "minu": 0, "miracl": [1, 29, 69, 96], "mirror": [0, 1, 11, 19, 75, 85, 90, 93], "misc": 0, "miss": 0, "mm": [0, 22], "mode": [0, 29], "model": 0, "modifi": [25, 26], "modul": [0, 1, 2, 10, 24, 30, 43, 47, 56, 64, 70, 74, 82, 89, 90, 97], "mofncompletecolumn": 31, "more": 54, "most": 0, "mous": 0, "move": [0, 14, 23, 79], "moving_imag": 65, "moving_image_path": 65, "moving_img": 5, "moving_img_path": [96, 98], "much": 0, "multilabel": [95, 98], "multipl": [25, 26, 29, 91], "multipli": 3, "must": [0, 55], "mv": 2, "n": [2, 81, 94], "n4": 66, "name": [1, 5, 7, 8, 9, 11, 14, 16, 17, 18, 20, 31, 62, 63, 75, 79, 82, 83, 95], "namespac": [25, 26, 61], "narg": [25, 26], "nativ": [0, 29, 64, 75, 95, 96], "native_": 96, "native_atlas_split": [0, 59], "native_cluster_index": 5, "native_cluster_index_crop": 5, "native_img": 96, "navig": [0, 2], "ncbi": 0, "ndarrai": [11, 15, 22, 28, 29, 32, 33, 35, 40, 41, 42, 44, 45, 48, 51, 54, 55, 57, 59, 61, 66, 69, 84, 86, 88, 94, 96], "ndarray_axis_ord": [28, 32, 42], "ndimag": 69, "nearest": [84, 96], "nearestneighbor": [95, 98], "necessari": 31, "need": [0, 2, 11, 27, 43, 45, 62, 75, 80, 86], "neg": 41, "neighbor": [0, 55, 84, 96], "neither": [7, 8, 9, 20], "new": [0, 1, 14, 17, 19, 23, 41, 76], "new_affin": 41, "new_imag": 46, "new_img": 95, "new_nii": 41, "new_text": 81, "new_valu": 84, "next": [0, 5, 11, 32, 36, 42, 59, 60, 61, 66, 69, 71, 91, 92, 93, 94], "nfi": 2, "ngregori": 1, "nibabel": [1, 37, 38, 41], "nick": 1, "nida": 1, "nifti": [0, 15, 28, 29, 38, 41, 48, 49, 52], "nifti1": 41, "nifti1imag": 41, "nih": 0, "nii": [0, 3, 5, 6, 11, 12, 15, 19, 20, 22, 28, 29, 34, 35, 36, 37, 38, 39, 40, 41, 44, 46, 48, 49, 50, 52, 53, 55, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 77, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "nii_axis_cod": [38, 43, 75], "nii_hd": [1, 43, 75], "nii_img": 95, "nii_info": [1, 43, 75], "nii_path": [28, 39, 41], "nii_to_ndarrai": [40, 43, 75], "nii_to_tif": [1, 43, 75], "nii_to_zarr": [1, 43, 75], "nlm": 0, "node": 0, "nois": [0, 45, 54], "non": [0, 11, 13, 41, 56, 75, 79], "none": [6, 11, 20, 23, 25, 26, 28, 29, 31, 35, 41, 60, 62, 66, 84, 85, 93, 96], "nor": [7, 8, 9, 20], "notabl": 0, "note": [1, 25, 26, 27, 44, 59], "now": 63, "np": [28, 41, 48, 55, 61, 69, 86, 88, 96], "npy": 33, "nuclei": [0, 45], "null": 2, "nullifi": 0, "num_contrast": 91, "num_group": 63, "num_of_items_to_iter": 31, "number": [0, 5, 16, 23, 55, 56, 59, 72, 73, 75, 84, 86, 91], "numpi": [0, 1, 28, 29, 35, 48, 55], "o": [0, 5, 6, 11, 21, 33, 34, 39, 40, 44, 46, 49, 50, 51, 55, 65, 72, 73, 81, 84, 87, 92, 95, 96, 98], "object": [0, 5, 20, 27, 31, 59], "oc": 46, "ochann": [51, 92, 95], "ochann_extend": 51, "ochann_rb4_gubra_spac": 92, "odt": 46, "off": 0, "often": [0, 71], "ok": [0, 4], "old_imag": 46, "old_text": 81, "om": [34, 55, 79], "one": [0, 13, 20, 45, 51], "onli": 23, "onlin": 0, "open": [2, 65], "opencv": [29, 45, 54], "openpyxl": 16, "openssl": 2, "oper": [0, 2, 81], "optim": 0, "option": [1, 17, 20, 22, 25, 26, 28, 29, 32, 35, 42, 58, 63, 66, 76, 84, 91], "option_str": [25, 26], "orang": 31, "order": [0, 4, 23, 28, 29, 62, 66, 69, 76, 96], "org": 2, "org_data": [1, 24, 75], "organ": [0, 14, 17, 18, 73, 76], "organize_validation_data": [17, 24, 75], "orient": [28, 29, 38, 41, 44, 66], "orientation_str": 29, "origin": [14, 29, 41, 76, 86], "original_dimens": 96, "ort": [0, 66], "ort_cod": 66, "other": [0, 1, 4, 11, 19, 32, 35, 42, 54, 75, 86, 90], "other_mask": 84, "otherwis": [0, 23], "our": 86, "out": [0, 1, 65, 75, 90], "out_dir": 63, "outer": 5, "outer_bound": 5, "outer_xmax": 5, "outer_xmin": 5, "outer_ymax": 5, "outer_ymin": 5, "outer_zmax": 5, "outer_zmin": 5, "outlier": 87, "outlin": 48, "output": [0, 1, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 26, 28, 32, 34, 36, 41, 42, 44, 48, 55, 59, 60, 61, 62, 63, 66, 69, 71, 85, 88, 92, 93, 94, 95, 96], "output_dir": [11, 15, 29, 39, 66], "output_fil": 60, "output_file_path": 29, "output_img": 6, "output_index": 11, "output_nam": [73, 91], "output_path": [5, 22, 28, 40, 44, 45, 54, 61, 98], "output_rgb_lut": 22, "outsid": [0, 48], "outward": 0, "over": 0, "overrid": 22, "p": [0, 11, 12, 13, 17, 20, 41, 63, 66, 78, 87, 88], "p50": 1, "p_val_txt": 17, "p_value_threshold": [0, 11], "packag": [0, 1, 76], "pad": [0, 1, 29, 30, 55, 56, 66, 75], "pad_fract": 96, "pad_width": 29, "page": [0, 1], "paint": 0, "pan": 0, "panda": 1, "parallel": [0, 5, 28, 29, 55], "parallel_load": 28, "param": [7, 8, 9], "paramet": [0, 7, 8, 9, 11, 12, 15, 16, 17, 20, 22, 23, 26, 28, 29, 31, 32, 35, 36, 41, 42, 48, 55, 58, 61, 63, 66, 69, 72, 79, 81, 84, 86, 94, 95, 96, 98], "parent": [0, 23, 28, 79], "pars": [25, 27], "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, 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], "parse_color_argu": [63, 64, 75], "parser": [25, 26], "part": 0, "pass": 0, "password": 2, "past": 22, "path": [1, 2, 3, 4, 5, 6, 11, 12, 15, 17, 21, 22, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 48, 50, 52, 55, 57, 58, 59, 60, 61, 62, 66, 69, 73, 74, 75, 76, 78, 79, 80, 83, 87, 88, 91, 92, 94, 95, 96, 98], "path_or_pattern": 28, "path_to_tif_dir": 79, "pathlib": 31, "pattern": [0, 17, 28, 31, 36, 77, 78, 87], "pd": [7, 8, 9, 20], "pdf": 87, "pearson": 88, "pennmedicin": 1, "per": [31, 73], "percent": 53, "percent_vol": 23, "percent_vol_threshold": 23, "percentag": [23, 29], "perform": [0, 11, 12, 20, 54, 62, 66, 81, 93, 94], "perform_t_test": [62, 64, 75], "perform_tukey_test": [20, 24, 75], "period": 2, "permut": 91, "permutations_per_frag": 91, "pi": 1, "pip": [0, 2, 76], "pir": 41, "pixel": [0, 29, 45, 55, 71, 73, 94], "pixel_classif": [29, 30, 75], "place": 12, "placehold": 0, "plane": 28, "plaqu": 0, "pleas": [0, 1, 2], "plot": [0, 15, 18, 22, 62, 63, 87], "plot_data": [62, 64, 75], "point": [35, 76], "pool": [7, 8, 9, 14, 18, 20], "posit": [0, 41, 66], "possibl": 35, "posterior": [0, 41, 66], "powershel": 2, "pre": 0, "precis": 84, "predict": 0, "prefer": [2, 76], "prefix": [0, 7, 8, 9, 20, 76, 80], "prep": [3, 74, 75], "prepar": [0, 69], "prepend": [0, 31, 75, 80, 82, 83], "prepend_condit": [0, 1, 75, 82], "preprocess": [0, 69], "prereq": [22, 23, 59, 62, 66, 71, 91, 92, 93, 94, 95, 96, 98], "present": [0, 7, 8, 9, 20, 56, 75], "preserv": [0, 44, 75, 90], "press": 0, "prevent": 0, "preview": [0, 22], "previou": 23, "print": [0, 1, 17, 27, 29, 31, 37, 38, 52, 56, 66, 75, 81], "print_cmd_and_tim": [30, 31, 75], "print_dir": 31, "print_func_name_args_tim": [30, 31, 75], "print_id": 29, "print_metadata": [36, 43, 75], "print_siz": [29, 58], "prior": 0, "priorit": 23, "prism": [0, 1, 24, 75], "probability_threshold": 11, "probabl": 11, "process": [0, 11, 19, 29, 31, 48, 55, 65, 69, 92, 95], "process_and_plot_data": [63, 64, 75], "process_fdr_and_clust": [11, 24, 75], "process_fil": [19, 24, 75], "process_intens": [47, 48, 56], "process_slic": [29, 30, 75], "profil": 0, "prog": [25, 26], "progress": 31, "progresscolumn": 31, "project": [1, 71, 73, 76], "prompt": 2, "properti": 0, "provid": [0, 1, 5, 11, 27, 31, 35, 36, 62, 69, 79, 84, 96], "psilocybin": [7, 8, 9, 20], "public": 1, "pubm": 0, "pull": [0, 2], "punctat": 0, "pwd": 0, "py": [0, 21, 87, 88], "pyenv": 2, "pyenv_root": 2, "pypi": 2, "pyproject": [0, 76], "python": [1, 2, 70, 75, 97], "q": [0, 11, 12], "q_valu": [0, 11, 12], "qc": [67, 68], "qform": 41, "qualiti": 0, "quantif": 1, "quantifi": [0, 5, 59], "question": [1, 2], "queue": 65, "quickli": 0, "quot": 63, "r": [0, 26, 41, 63, 66, 80, 81], "r_to_p": [75, 89, 90], "r_to_z": [88, 89, 90], "ra": [29, 38, 41, 44], "radii": 54, "radiu": [0, 29, 45, 54], "rais": [7, 8, 9, 20], "random": 0, "randomis": 0, "randomise_parallel": [0, 91], "rang": [0, 35], "ratio": 45, "raw": [1, 61], "raw_tif_dir": [0, 72], "rawconfigpars": 27, "rb": [0, 1, 56, 75, 92], "re": [0, 29, 32, 42, 69, 76, 84], "reach": 1, "read": 27, "readabl": 25, "readi": 11, "recommend": 0, "rectangl": 0, "recurs": [0, 19, 21, 80, 81], "recursively_mirror_rev_cluster_indic": [0, 1, 24, 75], "recus": 78, "red": [0, 31], "refer": [0, 28, 98], "refin": 0, "reflect": 13, "reg": [1, 59, 69, 70, 71, 75, 76, 92, 95, 98], "reg_affine_initi": [0, 65], "reg_check": [1, 66, 70, 75], "reg_check_brain_mask": [0, 1, 70, 75], "reg_input": [0, 53, 69, 71, 72], "reg_output": [0, 65, 96, 98], "reg_outputs_path": [65, 98], "reg_prep": [1, 32, 36, 42, 59, 66, 70, 71, 74, 75], "reg_r": [69, 96], "reg_result": 0, "regard": 59, "region": [1, 3, 13, 16, 22, 23, 29, 48, 59, 60, 61, 62, 63], "region_abbr": 63, "region_id": [0, 59, 61, 62, 63], "region_intens": 62, "region_nam": 63, "region_stat": [0, 1, 75], "regional_cell_dens": 0, "regional_cell_densities_summari": 0, "regional_counts_df": 59, "regional_volumes_df": 59, "regist": [0, 1, 75, 76], "registr": [1, 29, 32, 36, 42, 67, 69, 71, 95, 98], "reinstal": [0, 76], "rel": [0, 5, 9, 13, 28, 36, 69, 92, 95], "rel_path": [0, 36, 59], "rel_path_to_src_fil": 77, "relabel": 0, "relabel_nii": [47, 56, 75], "relat": 0, "related": 76, "relative_hedges_g": [9, 10, 24], "reli": [25, 26], "reload": 76, "remain": [0, 31], "remot": 0, "remov": [0, 14, 54, 62, 83], "remove_zero_intensity_region": [62, 64, 75], "renam": [0, 1, 64, 75, 76, 80, 82], "rename_dir": 80, "rename_fil": [75, 80, 81, 82], "rename_item": [75, 80, 82], "rename_typ": 81, "render": 31, "reopen": 0, "reorder": [64, 75], "reorient": [0, 29, 41, 69], "reorient_for_raw_to_nii_conv": [29, 30, 75], "reorient_ndarrai": [29, 30, 75], "reorient_ndarray2": [29, 30, 75], "reorient_nii": [1, 43, 75], "replac": [0, 11, 75, 79, 81, 90], "repo": [0, 1, 76], "repo_root_dir": 0, "repositori": [0, 1, 2], "repres": [23, 75, 90], "request": 28, "requir": 55, "resampl": [0, 29, 30, 66, 69, 75], "resolut": [0, 15, 22, 28, 29, 32, 42, 55, 61, 69, 74, 75, 96], "resolv": [28, 31, 76], "resolve_path": [28, 30, 75], "respect": [0, 4], "restart": 2, "restrict": 84, "result": [0, 5, 14, 20, 59, 63, 87], "retain": 28, "retriev": 62, "return": [5, 7, 8, 9, 11, 20, 22, 23, 27, 28, 29, 31, 32, 35, 38, 41, 42, 45, 48, 54, 55, 58, 61, 63, 66, 69, 84, 96], "return_3d_img": [28, 30, 75], "return_metadata": 28, "return_r": [28, 32, 42], "rev_cluster_index": [0, 15, 17, 20, 22], "rev_cluster_index_img": 11, "rev_cluster_index_to_warp_from_atlas_spac": [0, 5], "rev_cluster_index_valid_clust": 15, "revers": [0, 11], "reverse_clust": [11, 24, 75], "reverse_reorient_for_raw_to_nii_conv": [29, 30, 75], "review": [0, 2], "rgb": [16, 22], "rgba": 3, "rh": [0, 19, 20], "rh_file": 85, "rh_mask": 94, "rhz": 94, "rich": [26, 31], "rich_argpars": 26, "richhelpformatt": 26, "right": [0, 14, 41, 51, 66], "rijsket": 1, "rlapsi": 29, "ro": 98, "roll": [0, 29, 45, 54], "rolling_ball_subtract": [54, 56, 75], "rolling_ball_subtraction_opencv_parallel": [29, 30, 75], "root": 0, "roughli": [0, 76], "row": [0, 7, 8, 9, 20, 23, 41, 80], "rp": 0, "rstat": [1, 64, 75], "rstats_if_mean": 62, "rstats_if_mean_in_seg": 62, "rstats_mean_if": [0, 1, 64, 75], "rstats_mean_if_in_seg": [0, 61], "rstats_mean_if_in_segmented_voxel": [1, 64, 75], "rstats_mean_if_summari": [0, 1, 60, 61, 64, 75], "rstats_summari": [1, 59, 64, 75], "run": [2, 11, 14, 19, 23, 24, 36, 57, 61, 65, 69, 71, 73, 75, 76, 79, 91, 92, 93, 94], "run_ilastik": 2, "run_randomise_parallel": [75, 90, 91], "run_script": [4, 24, 75], "run_with_timeout": [65, 70, 75], "ryskamp": 1, "sa": 3, "salin": [0, 7, 8, 9, 20, 59, 63, 83], "saline_sample06": [0, 63], "saline_sample07": [0, 63], "same": [23, 55, 76], "sampl": [1, 5, 7, 8, 9, 17, 18, 20, 31, 36, 61, 67, 68, 69, 72, 73, 75, 79, 82, 84, 92, 94, 95], "sample01": [4, 80, 83], "sample01_cfos_correlation_map": 88, "sample01_fil": 80, "sample01_slice_0000": 0, "sample01_slice_0005": 0, "sample01_slice_0050": 0, "sample02": [4, 80, 83], "sample02_fil": 80, "sample03": 0, "sample04": 0, "sample04_slice_0050": 0, "sample14": [0, 59], "sample36": [0, 59], "sample_dir_list": 31, "sample_dir_pattern": 31, "sample_kei": [1, 4, 62, 80, 83], "sample_nam": 18, "sample_path": [17, 31, 59, 72, 77, 95, 96], "save": [0, 5, 6, 11, 18, 19, 28, 32, 33, 34, 36, 42, 45, 50, 51, 53, 54, 55, 64, 66, 71, 75, 86, 98], "save_as_h5": [28, 30, 75], "save_as_nii": [28, 30, 43, 44, 75], "save_as_tif": [28, 30, 32, 42, 43, 75], "save_as_zarr": [28, 30, 40, 43, 75], "save_cropped_img": [6, 24, 75], "save_labels_as_mask": [73, 74, 75], "save_metadata": 28, "save_metadata_to_fil": [28, 30, 75], "save_tif": [45, 54, 56, 75], "scale": [0, 43, 44, 75, 84, 96], "scale_bool_to_full_r": [75, 84, 90], "scale_mod": 35, "scale_to_full_r": [75, 96, 97], "scanner": 41, "scienc": 1, "scipi": [1, 29, 69], "score": [0, 13, 43, 75, 84, 88, 90, 93], "script": [1, 2, 4, 25, 26, 27, 31, 76], "script_arg": 4, "script_nam": 4, "scroll": 0, "sd": 87, "se": [7, 8, 9], "search": [1, 29, 31, 81], "second": [11, 18, 20, 41, 45, 84], "section": [0, 27, 76], "see": [0, 73, 91], "seg_brain_mask": [1, 66, 69, 71, 74, 75, 94], "seg_copy_tif": [1, 66, 69, 72, 73], "seg_crop": 5, "seg_dir": [0, 5, 61], "seg_ilastik": [1, 59, 61, 73, 74, 75], "seg_img": 59, "seg_in_clust": 5, "seg_mask": 84, "seg_volume_in_cubic_mm": 5, "segment": [1, 5, 29, 61, 75, 90], "segmentation_dir": 73, "segmentation_imag": [0, 59], "select": [0, 7, 8, 9, 20, 31, 72, 81], "selector": [7, 8, 9, 20], "send": 2, "sensit": 0, "separ": [0, 29, 31, 58], "seper": 65, "seri": [0, 7, 8, 9, 20, 28, 29, 32, 34, 36, 39, 42, 50, 55, 69, 71, 79], "server": 0, "session": 0, "set": [1, 25, 26, 27, 31, 41, 91], "setup": 0, "sex": [0, 8, 9], "sform": 41, "sh": 2, "shamloo": 1, "shape": 38, "share": [0, 23], "sheet": 0, "shell": [1, 2, 76], "shift": [0, 85, 86, 93], "should": [0, 4, 7, 8, 9, 23, 31, 36, 45, 54, 80, 83], "show": [0, 31, 76], "show_plot": 62, "shrink": 66, "shrink_factor": 66, "side": [0, 19, 20, 29, 41, 51, 62, 63, 66, 75, 90], "sigma1": 45, "sigma2": 45, "sign": 35, "signal": [0, 1, 75, 90], "signifi": 0, "signific": [0, 13, 20, 22, 45], "simga2": 45, "similar": 0, "sinc": [0, 20, 41], "singl": [0, 25, 26, 45, 48, 54, 55], "situat": 76, "size": [1, 7, 8, 9, 22, 28, 29, 36, 38, 45, 54, 55, 56, 75], "sk": [0, 4, 62, 80], "slice": [0, 29, 31, 55, 72, 73], "slice_": [32, 42, 71], "slice_numb": 72, "slicer": 0, "slow": 84, "slowli": 0, "sm": [0, 25, 26, 30, 66, 75], "small": [0, 7, 8, 9], "smaller": [0, 45, 48, 54], "smallest": 48, "smart_float_format": [12, 24, 75], "smooth": [0, 85, 93], "so": [2, 11, 41], "some": 54, "someth": 2, "sort": [24, 48, 75], "sort_sampl": [18, 24, 75], "sort_sunburst_hierarchi": [23, 24, 75], "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "source_dir": [31, 72], "source_img": 95, "space": [0, 1, 5, 29, 58, 60, 64, 75, 79, 90, 92, 95, 96, 97], "sparser": 0, "spatial": [0, 28, 41, 45, 55, 84], "spatial_averag": [0, 1, 56, 75], "spatial_average_2d": [55, 56, 75], "spatial_average_3d": [55, 56, 75], "spatial_avg": 55, "specif": [0, 2, 26, 29, 31, 75, 86, 90], "specifi": [0, 5, 7, 8, 9, 20, 23, 25, 26, 27, 29, 31, 34, 35, 36, 55, 74, 75, 80, 81, 84, 86], "speed": 0, "split": [3, 11], "split_clusters_based_on_effect": [11, 24, 75], "spool": [7, 8, 9], "spot": 1, "spread": 0, "squar": 0, "src": 17, "src_dir": 78, "ssd": 0, "stack": 1, "stain": [1, 60, 61], "standard": [35, 45, 94], "stanford": [1, 2], "start": [0, 2, 7, 8, 9, 16, 20, 23, 31], "startup": 2, "stat": [1, 11, 12, 24, 75, 91, 93, 94], "static": 27, "statist": [0, 63], "stats_df": 20, "stats_info_g1_v_g2": 11, "stats_tabl": [1, 24, 75], "stderr": 65, "step": [1, 23, 59, 61, 66, 69, 76, 91, 92, 93, 94], "stick": 0, "stitch": 1, "storag": 0, "store": 2, "str": [7, 8, 9, 11, 20, 26, 28, 29, 31, 41, 66, 79, 98], "string": [25, 26, 29, 31], "strip": [12, 27], "struct_el": 29, "structur": [1, 14], "studio": [0, 22], "style": [26, 27], "subclass": 27, "subdir": [0, 20, 31, 79], "subdirectori": [73, 79], "subfold": 0, "subject": 0, "subpackag": 1, "subprocess": [4, 65], "subset": [0, 28, 72], "subsystem": 1, "subtract": [29, 45, 54, 92], "succinctli": 0, "sudo": 2, "suffix": 76, "suggest": [0, 1], "sum": 23, "summar": [0, 16, 21, 23, 59, 63], "summari": [0, 63], "summarize_signific": [63, 64, 75], "summary_df": 63, "sunburst": [0, 1, 15, 24, 75], "sunburst_csv_path": 23, "sunburst_rgb": 22, "superior": [0, 41, 66], "support": [0, 54], "suppress": [25, 26, 65], "suppressmetavar": [25, 26, 30, 75], "surfac": 48, "symbol": 0, "system": [2, 4, 76, 91], "t": [0, 7, 8, 9, 24, 28, 32, 41, 42, 63, 64, 65, 73, 75, 79, 81, 83, 91], "tab": [0, 22], "tabl": [0, 1, 24, 62, 75], "table_column": 31, "tag": 1, "tail": [0, 88], "tar": 2, "target": [0, 17, 31, 35, 41, 67, 68, 72, 77], "target_dir": [14, 17, 31, 72, 77], "target_ort": 41, "target_output_dir": [67, 68], "target_r": 96, "target_rang": 35, "task": 31, "task_id": 31, "task_messag": 31, "td": [0, 17, 67, 68, 69], "templat": [0, 2, 66], "tensoranalyt": 1, "terastitch": 0, "termin": [0, 2, 26], "test": [0, 24, 45, 63, 64, 75, 91], "test_df": 63, "test_typ": 62, "text": [25, 26, 28, 31, 32, 42, 81], "than": [0, 45, 58], "thei": [0, 20, 23, 28], "them": [0, 2, 22, 23, 25, 26, 27, 29, 31, 81], "thi": [0, 2, 4, 7, 8, 9, 13, 14, 19, 20, 23, 25, 26, 27, 28, 29, 31, 32, 36, 45, 61, 63, 65, 69, 76, 80, 84, 85, 93], "thin": [0, 48], "thing": 0, "third": 41, "those": [7, 8, 9, 20], "though": 4, "thread": [29, 55], "three": 38, "threshold": [0, 11, 17], "tif": [1, 28, 29, 31, 32, 34, 36, 39, 42, 45, 50, 51, 54, 55, 69, 71, 72, 79, 92, 95], "tif_dir": [0, 29, 34, 36, 55, 73], "tif_dir_out": [28, 32, 42], "tif_folder_nam": 79, "tif_path": [28, 42, 45, 54], "tif_to_tif": [1, 43, 75], "tiff": [0, 54], "tifs_path": 36, "tile": 0, "time": [4, 31, 45, 54, 65], "timeelapsedcolumn": 31, "timeout": 65, "timeremainingcolumn": 31, "timeseri": 0, "tissu": [0, 5, 29, 71, 75, 90, 96, 97], "tissue_in_atlas_spac": 98, "tissue_mask": 84, "tk": 2, "to_atla": [1, 75, 97], "to_n": [1, 75, 97], "togeth": [0, 86, 94], "toggl": [0, 75, 82], "toggle_sampl": [1, 75, 82], "toml": [0, 76], "tool": [0, 1], "top": [23, 51], "top_n": 23, "top_region": 23, "total": [0, 23, 31, 91], "total_permutations_per_contrast": 91, "touch": 0, "tp": [0, 85, 93], "traceback": 31, "track": 0, "tract": 0, "trail": 12, "train": [1, 69, 71, 72, 73], "trained_ilastik_project": 0, "transform": [41, 88, 98], "transform_nii_affin": [41, 43, 75], "transpar": 0, "transpos": [0, 57], "transpose_ax": [1, 56, 75], "transpose_img": [56, 57, 75], "treat": 20, "treatment": [0, 4, 62, 80, 83], "treatment_sample02_fil": 80, "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, "true": [28, 31, 32, 41, 42, 81, 98], "tstat1": 0, "tstat2": 0, "ttest": 62, "ttest_result": 13, "tukei": [24, 64, 75], "tukey_result": 13, "tupl": [25, 26, 28, 32, 35, 42, 48, 55], "turn": 0, "tutori": [0, 2], "two": [7, 8, 9, 20, 62, 80, 88, 91], "txt": [3, 5, 6, 11, 23, 28, 36, 50, 78, 96], "type": [0, 7, 8, 9, 11, 15, 17, 20, 22, 28, 29, 31, 34, 35, 38, 41, 48, 54, 55, 58, 59, 61, 63, 69, 81, 84, 95, 98], "typic": 1, "ubuntu": 2, "uint16": [35, 46, 48, 95], "uint32": 35, "uint64": 35, "uint8": [35, 48, 95], "um": [32, 42, 69, 71], "um_brain_mask": [0, 71], "um_mask": [0, 71], "um_masked_fixed_reg_input": [0, 67], "um_tif": [0, 69, 71], "um_tifs_ilastik_brain_seg": 71, "unbias": [7, 8, 9], "uncorrect": 0, "undefin": 0, "under": 0, "underscor": 79, "undo_fill_with_origin": [23, 24, 75], "unfamiliar": [0, 2], "unilater": [0, 11, 18, 20], "uniq_intens": [56, 58, 75], "uniqu": [0, 7, 8, 9, 20, 29, 48, 58, 76], "unique_condit": [7, 8, 9, 20], "unique_intens": [1, 48, 56, 75], "unnecessari": 12, "unpair": [20, 91], "unravel": 0, "unravel_command": [0, 1, 75], "unravel_env": 76, "unravel_reg": 76, "unsign": 35, "until": 23, "up": [1, 12, 23, 62, 79, 91], "updat": [0, 2], "upenn": 1, "upper": 0, "upstream_path": 28, "us": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "usag": [0, 1, 8, 10, 24, 25, 26, 27, 31, 43, 47, 51, 56, 64, 70, 74, 75, 82, 89, 90, 92, 97], "user": [0, 1, 2], "usernam": [2, 27], "usr": [2, 65, 76], "util": [0, 1, 2, 30, 75], "utils_agg_fil": [1, 61, 62, 77, 92], "utils_agg_files_rec": [0, 78], "utils_clean_tif": 79, "utils_prepend": [1, 4, 62, 80], "utils_renam": [0, 80, 81], "utils_toggl": [0, 83], "v": [0, 2, 3, 4, 5, 6, 11, 17, 19, 22, 51, 55, 69, 71, 77, 79, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 98], "valid": [4, 7, 8, 9, 11, 15, 17, 20, 21, 22], "valid_clust": [15, 23], "valid_clusters_t_test": [20, 24, 75], "validation_dir": 17, "validation_dir_pattern": 17, "valu": [0, 11, 12, 13, 16, 17, 20, 22, 23, 25, 26, 27, 35, 41, 48, 52, 58, 63, 87, 88], "valud": 41, "variabl": 1, "variou": 28, "vd": [0, 4, 17], "ventricl": 0, "verbos": [23, 27, 31, 66, 77, 79, 91], "verifi": 76, "version": [0, 2, 3, 45, 84, 86, 93], "via": [1, 2, 88], "video": [0, 1], "view": [0, 2], "virtual": 2, "virtualenv": 2, "visit": 2, "visual": 0, "vizual": 3, "volum": [0, 5, 22, 24, 55, 59, 75], "volume_summari": 46, "volumes_dict": 22, "vox_p": 0, "vox_p_": [11, 12], "vox_p_fstat1": [0, 11], "vox_p_fstat2": 0, "vox_p_fstat3": 0, "vox_p_tstat1": [0, 11, 12], "vox_p_tstat2": 0, "voxel": [1, 5, 22, 29, 36, 38, 51, 55, 56, 61, 75, 86, 87, 90, 91, 93, 94], "voxel_stat": [0, 1, 75], "voxl": 0, "vstat": [1, 11, 12, 17, 75, 90, 92, 93, 94], "vstats_apply_mask": [0, 84], "vstats_dir": [0, 4, 17], "vstats_hemi_to_avg": [0, 85, 94], "vstats_mirror": [0, 86], "vstats_path": 17, "vstats_prep": [1, 45, 69, 75, 90, 91, 93, 94], "vstats_whole_to_avg": [1, 91, 93, 94], "vstats_z_scor": [1, 71, 91, 93, 94], "w": [0, 3, 5, 7, 8, 9, 16, 20, 22, 63, 64, 65, 69, 71, 75, 79, 90], "wa": [0, 1, 13, 56, 75], "wai": 76, "want": [0, 2, 45], "warp": [0, 1, 5, 29, 75, 90, 92], "warp_to_atla": [0, 95], "warp_to_n": [0, 64, 75, 96], "we": [0, 1, 2, 23], "web": 1, "websit": 2, "well": 36, "were": [0, 1, 74, 75], "weslei": 1, "weszhao": 1, "wget": 2, "what": 81, "whatev": 0, "wheel": 0, "when": [4, 43, 75, 76, 82, 86], "where": [0, 2, 7, 8, 9, 13, 20, 23, 31, 48, 72, 75, 76, 90, 98], "whether": [20, 28, 81], "which": [56, 75, 76], "whole": [11, 94], "whole_to_lr_avg": [0, 1, 75, 90], "whose": [7, 8, 9, 20], "wide": 1, "width": [25, 26], "window": [0, 1], "wirefram": [0, 47, 56, 75], "wireframe_imag": 48, "wireframe_image_id": 48, "wise": [1, 91, 93, 94], "within": [0, 23, 29, 31, 62], "without": 81, "withs": 62, "word": [0, 18, 20, 62], "work": [0, 4, 16, 18, 23, 26, 62, 67, 68], "workflow": [1, 76], "worksheet": 16, "write": [29, 60, 61], "write_to_csv": [60, 61, 64, 75], "wsl": 1, "x": [1, 6, 23, 28, 29, 36, 41, 51, 59, 66, 69, 84, 88, 92, 95, 96], "x_dim": 28, "xjf": 2, "xlsx": 16, "xmax": [5, 28, 29], "xmin": [5, 28, 29], "xy": [0, 6, 28, 55], "xy_r": [5, 6, 28, 29, 32, 42, 59, 69, 96], "xy_voxel_s": [32, 42], "xyz": [28, 32, 42, 66], "xyz_res_in_um": 15, "xz": 2, "y": [1, 2, 28, 29, 36, 41, 59, 66, 69, 84, 96], "y_dim": 28, "yeild": [0, 12], "yellow": 0, "yield": 0, "ymax": [5, 28, 29], "ymin": [5, 28, 29], "you": [0, 1, 2, 45, 76], "your": [0, 1, 2, 31, 76], "z": [1, 6, 13, 28, 29, 36, 41, 43, 55, 59, 66, 69, 75, 84, 88, 90, 92, 93, 95, 96], "z_dim": 28, "z_map": 88, "z_re": [5, 6, 28, 29, 32, 42, 59, 69, 96], "z_score": [0, 1, 75, 90], "z_to_p": [88, 89, 90], "z_voxel_s": [32, 42], "zarr": [0, 28, 34, 40, 44, 55, 84, 92, 95, 96], "zarr_path": 28, "zarr_to_ndarrai": [43, 44, 75], "zarr_to_nii": [1, 43, 75], "zeiss": 0, "zen": 0, "zero": [0, 12, 41, 55, 56, 75, 90], "zero_origin": 41, "zetastitch": 0, "zhao": 1, "zlib1g": 2, "zmax": [5, 28, 29], "zmin": [5, 28, 29], "zoom": [0, 29, 69], "zoom_ord": [29, 69, 96], "zscore": 35, "zscore_rang": 35, "zshrc": [0, 1, 76], "zyx": [32, 42], "\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.cluster_summary module", "unravel.cluster_stats.cluster_validation module", "unravel.cluster_stats.crop 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.index module", "unravel.cluster_stats.legend 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 module", "unravel.cluster_stats.stats_table module", "unravel.cluster_stats.sunburst module", "unravel.cluster_stats.table module", "unravel.cluster_stats package", "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.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.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.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 package", "unravel package", "unravel.unravel_commands module", "unravel.utilities.aggregate_files_from_sample_dirs module", "unravel.utilities.aggregate_files_w_recursive_search 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.to_atlas module", "unravel.warp.to_native module", "unravel.warp package", "unravel.warp.warp module"], "titleterms": {"": [20, 62], "0": 84, "1": 84, "100": 58, "3": 0, "8": 35, "If": 0, "across": 0, "activ": 83, "add": 0, "addit": 1, "affine_initi": 65, "after": [0, 4], "aggregate_files_from_sample_dir": 77, "aggregate_files_w_recursive_search": 78, "all": [0, 58, 76, 83], "allen": 0, "alreadi": [59, 77], "an": [0, 94], "analysi": [0, 1], "apply_mask": 84, "ar": 58, "argparse_util": 25, "argparse_utils_rich": 26, "artifact": 84, "atla": [0, 46, 47, 48, 59, 62, 94, 98], "automat": 0, "avail": 59, "avg": 49, "back": 0, "background": 0, "bashrc": 2, "batch": 0, "bbox": 50, "being": 77, "bias": 1, "bit": 35, "both": 94, "brain": [0, 84], "brain_mask": 71, "brain_model": 3, "can": 0, "certain": 83, "check": 58, "clean": 0, "clean_tif_dir": 79, "cli": 96, "cluster": [0, 58, 84], "cluster_fdr": 0, "cluster_fdr_rang": 0, "cluster_mirror_indic": 0, "cluster_org_data": 4, "cluster_stat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "cluster_summari": [0, 4], "cluster_valid": [0, 4, 5], "code": 0, "color": 0, "command": [0, 76], "common": [0, 76], "condit": [62, 83], "config": 27, "contact": 1, "content": [1, 75], "contribut": 1, "copi": 77, "copy_tif": 72, "core": [25, 26, 27, 28, 29, 30, 31], "correct": 0, "crop": 6, "csv": 0, "custom": 62, "data": 0, "defin": 0, "depend": 1, "descript": 76, "develop": 1, "dir": [0, 72, 83], "directli": 4, "directori": 81, "distribut": 0, "dog": 45, "drive": 0, "e": [72, 84], "each": 58, "edit": 2, "effect_s": [7, 8, 9, 10], "effect_sizes_by_sex__absolut": 8, "effect_sizes_by_sex__rel": 9, "ensembl": 1, "env_var": 0, "etc": 0, "exampl": 0, "exclud": 84, "exp": [0, 72], "exp_not": 0, "experi": 0, "extend": 51, "extract": 36, "faster": 59, "fdr": 11, "fdr_rang": 12, "file": [77, 81], "find_incongruent_clust": 13, "folder": 0, "forward": 98, "from": [1, 59, 84], "full": 72, "function": 28, "g": 84, "get": 1, "group_bilateral_data": 14, "guid": 0, "h5_to_tif": 32, "help": 0, "helper": 28, "hemi_to_lr_avg": 85, "hierarchi": 23, "high": 1, "i": [1, 35, 36, 58, 59, 77], "if_outli": 87, "ilastik": 0, "ilastik_pixel_classif": 73, "imag": [0, 1, 72, 84], "image_io": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "image_tool": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58], "img_avg": 0, "img_io": 28, "img_to_npi": 33, "img_tool": 29, "immunofluoresc": 72, "index": 15, "indic": 1, "info": 0, "instal": 2, "intens": [58, 84], "invers": 98, "io_img": 34, "io_nii": 35, "legend": 16, "letter": 0, "light": 1, "like": 0, "linux": 2, "list": 0, "log": 0, "main": [1, 28], "make": 0, "mask": [84, 94], "mask_dir": 72, "max": 52, "mean": 84, "metadata": 36, "microglia": 84, "min": 58, "mirror": 86, "modul": [3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "more": 0, "multipl": 0, "name": [0, 76, 77], "nativ": 59, "need": 35, "nii_hd": 37, "nii_info": 38, "nii_to_tif": 39, "nii_to_zarr": 40, "non": 58, "note": 0, "number": 58, "open": 0, "option": 0, "org_data": 17, "orient": 0, "other": [87, 88, 89], "out": 84, "overview": 0, "packag": [10, 24, 30, 43, 47, 56, 64, 70, 74, 75, 82, 89, 90, 97], "pad": 53, "path": [0, 72], "prep": 72, "prepend": 77, "prepend_condit": 80, "present": 58, "preserv": 84, "print": [58, 76], "prism": 18, "project": 0, "python": [65, 96], "r_to_p": 88, "raw": 0, "rb": 54, "recursively_mirror_rev_cluster_indic": 19, "reg": [0, 66], "reg_check": [0, 67], "reg_check_brain_mask": 68, "reg_prep": [0, 69, 72], "region": 0, "region_stat": [59, 60, 61, 62, 63, 64], "regist": [65, 66, 67, 68, 69, 70], "registr": 0, "relabel_nii": 46, "renam": [62, 81], "reorder": 62, "reorient_nii": 41, "replac": 84, "repres": 84, "resolut": [1, 72], "rstat": [0, 59], "rstats_mean_if": 60, "rstats_mean_if_in_segmented_voxel": 61, "rstats_mean_if_summari": 62, "rstats_summari": [0, 63], "run": [0, 4], "sampl": [0, 77, 83], "sample01": 0, "sample02": 0, "sample_kei": 0, "save": 59, "scale": 35, "score": [35, 94], "script": 0, "seg_brain_mask": [0, 72], "seg_copy_tif": 0, "seg_ilastik": [0, 72], "segment": [0, 71, 72, 73, 74, 84], "set": [0, 2], "sh": 0, "sheet": 1, "shell": 0, "side": 94, "signal": 84, "size": [0, 58], "sort": 23, "sourc": 0, "space": [59, 94, 98], "spatial_averag": 55, "specif": 94, "specifi": 72, "stack": 0, "start": 1, "stat": [0, 20], "stats_tabl": 21, "step": 0, "stitch": 0, "structur": 0, "subpackag": 75, "subsystem": 2, "subtract": 0, "sunburst": 22, "support": 1, "syntax": 0, "t": [20, 62], "tabl": 23, "test": [20, 62], "tif": 0, "tif_to_tif": 42, "tissu": [94, 98], "to_atla": 95, "to_n": 96, "todo": [0, 2], "toggl": 83, "toggle_sampl": 83, "train": 0, "transpose_ax": 57, "tukei": [20, 62], "txt": 0, "typic": 0, "u": 1, "un": 1, "unique_intens": 58, "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], "unravel_command": 76, "up": [0, 2], "us": 1, "usag": [3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 93, 94, 95, 96, 98], "util": [31, 77, 78, 79, 80, 81, 82, 83], "utils_agg_fil": 0, "utils_clean_tif": 0, "utils_prepend": 0, "valid": [0, 1], "vari": 0, "variabl": 0, "visual": 1, "volum": 23, "voxel": [0, 58, 84], "voxel_stat": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94], "vstat": [0, 91], "vstats_prep": [0, 92], "vstats_whole_to_avg": 0, "vstats_z_scor": 0, "w": [62, 94], "wa": 58, "warp": [94, 95, 96, 97, 98], "warp_to_n": 59, "welcom": 1, "were": 72, "when": [36, 77], "where": 84, "which": 58, "whole_to_lr_avg": 93, "window": 2, "wirefram": 48, "wise": 0, "workflow": 0, "wsl": 2, "x": 0, "y": 0, "z": [0, 35, 94], "z_score": 94, "zarr_to_nii": 44, "zero": [58, 84], "zshrc": 2}})
\ 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:": [[96, "cli-usage"]], "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"]], "Editing .bashrc or .zshrc": [[2, "editing-bashrc-or-zshrc"]], "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"]], "Getting started": [[1, "getting-started"]], "Guide": [[0, "guide"]], "Help on commands": [[0, "help-on-commands"]], "Helper Functions:": [[28, "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"]], "Listing commands": [[0, "listing-commands"]], "Log exp paths, commands, etc.": [[0, "log-exp-paths-commands-etc"]], "Main Functions:": [[28, "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": [[75, "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"]], "Open source options for stitching": [[0, null]], "Optional: clean tifs": [[0, "optional-clean-tifs"]], "Overview and steps for voxel-wise stats": [[0, null]], "Python usage:": [[65, "python-usage"], [96, "python-usage"]], "Region-wise stats": [[0, "region-wise-stats"]], "Registration": [[0, "registration"]], "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:": [[23, "sorting-by-hierarchy-and-volume"]], "Stitch z-stacks": [[0, "stitch-z-stacks"]], "Subpackages": [[75, "subpackages"]], "Support is welcome for": [[1, "support-is-welcome-for"]], "Syntax": [[0, null]], "T-test usage:": [[20, "t-test-usage"]], "Todo": [[0, "id1"], [0, "id2"], [0, "id5"], [2, "id1"]], "Train an Ilastik project": [[0, "train-an-ilastik-project"], [0, null]], "Tukey\u2019s test usage:": [[20, "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": [[3, "usage"], [6, "usage"], [7, "usage"], [9, "usage"], [11, "usage"], [12, "usage"], [13, "usage"], [14, "usage"], [15, "usage"], [17, "usage"], [18, "usage"], [19, "usage"], [61, "usage"]], "Usage for Tukey\u2019s tests w/ reordering and renaming of conditions:": [[62, "usage-for-tukey-s-tests-w-reordering-and-renaming-of-conditions"]], "Usage for activating sample?? dirs for certain conditions:": [[83, "usage-for-activating-sample-dirs-for-certain-conditions"]], "Usage for checking which clusters are present if the min cluster size was 100 voxels:": [[58, "usage-for-checking-which-clusters-are-present-if-the-min-cluster-size-was-100-voxels"]], "Usage for forward warping atlas to tissue space:": [[98, "usage-for-forward-warping-atlas-to-tissue-space"]], "Usage for inverse warping tissue to atlas space:": [[98, "usage-for-inverse-warping-tissue-to-atlas-space"]], "Usage for printing all non-zero intensities:": [[58, "usage-for-printing-all-non-zero-intensities"]], "Usage for printing the number of voxels for each intensity that is present:": [[58, "usage-for-printing-the-number-of-voxels-for-each-intensity-that-is-present"]], "Usage for renaming directories:": [[81, "usage-for-renaming-directories"]], "Usage for renaming files:": [[81, "usage-for-renaming-files"]], "Usage for t-tests:": [[62, "usage-for-t-tests"]], "Usage for toggling all sample?? dirs to active:": [[83, "usage-for-toggling-all-sample-dirs-to-active"]], "Usage for when metadata is extractable:": [[36, "usage-for-when-metadata-is-extractable"]], "Usage for when metadata is not extractable:": [[36, "usage-for-when-metadata-is-not-extractable"]], "Usage for when sample?? is already in the name of files being copied:": [[77, "usage-for-when-sample-is-already-in-the-name-of-files-being-copied"]], "Usage for z-score scaling (if 8 bit is needed):": [[35, "usage-for-z-score-scaling-if-8-bit-is-needed"]], "Usage if running after cluster_validation and cluster_org_data:": [[4, "usage-if-running-after-cluster-validation-and-cluster-org-data"]], "Usage if running directly after cluster_validation:": [[4, "usage-if-running-directly-after-cluster-validation"]], "Usage if the atlas is already in native space from warp_to_native:": [[59, "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):": [[59, "usage-if-the-native-atlas-is-not-available-it-is-not-saved-faster"]], "Usage to prep for seg_brain_mask (if \u2013mask_dir  and -e  were not specified in reg_prep):": [[72, "usage-to-prep-for-seg-brain-mask-if-mask-dir-path-mask-dir-and-e-exp-dir-paths-were-not-specified-in-reg-prep"]], "Usage to prep for seg_ilastik to segment full resolution immunofluorescence images:": [[72, "usage-to-prep-for-seg-ilastik-to-segment-full-resolution-immunofluorescence-images"]], "Usage to prepend sample?? to the name of files being copied:": [[77, "usage-to-prepend-sample-to-the-name-of-files-being-copied"]], "Usage to print all commands and module names:": [[76, "usage-to-print-all-commands-and-module-names"]], "Usage to print common commands and descriptions:": [[76, "usage-to-print-common-commands-and-descriptions"]], "Usage to replace voxels in image with the mean intensity in the brain where mask > 0:": [[84, "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):": [[84, "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):": [[84, "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):": [[94, "usage-w-a-tissue-mask-warped-to-atlas-space"]], "Usage w/ an atlas mask (warped to atlas space):": [[94, "usage-w-an-atlas-mask-warped-to-atlas-space"]], "Usage w/ both masks for side-specific z-scoring:": [[94, "usage-w-both-masks-for-side-specific-z-scoring"]], "Usage with a custom atlas:": [[62, "usage-with-a-custom-atlas"]], "Usage:": [[5, "usage"], [16, "usage"], [21, "usage"], [22, "usage"], [23, "usage"], [32, "usage"], [33, "usage"], [34, "usage"], [35, "usage"], [37, "usage"], [38, "usage"], [39, "usage"], [40, "usage"], [41, "usage"], [42, "usage"], [44, "usage"], [45, "usage"], [46, "usage"], [48, "usage"], [49, "usage"], [50, "usage"], [52, "usage"], [53, "usage"], [54, "usage"], [55, "usage"], [57, "usage"], [60, "usage"], [63, "usage"], [65, "usage"], [66, "usage"], [67, "usage"], [68, "usage"], [69, "usage"], [71, "usage"], [73, "usage"], [78, "usage"], [79, "usage"], [80, "usage"], [85, "usage"], [86, "usage"], [87, "usage"], [88, "usage"], [91, "usage"], [93, "usage"], [95, "usage"]], "Voxel-wise stats": [[0, "voxel-wise-stats"]], "cluster_fdr": [[0, "cluster-fdr"]], "cluster_fdr_range": [[0, "cluster-fdr-range"]], "cluster_mirror_indices": [[0, "cluster-mirror-indices"]], "cluster_summary": [[0, "cluster-summary"]], "cluster_validation": [[0, "id4"]], "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, "id3"]], "seg_ilastik": [[0, "seg-ilastik"]], "unravel package": [[75, "unravel-package"]], "unravel.cluster_stats package": [[24, "unravel-cluster-stats-package"]], "unravel.cluster_stats.brain_model module": [[3, "module-unravel.cluster_stats.brain_model"]], "unravel.cluster_stats.cluster_summary module": [[4, "module-unravel.cluster_stats.cluster_summary"]], "unravel.cluster_stats.cluster_validation module": [[5, "module-unravel.cluster_stats.cluster_validation"]], "unravel.cluster_stats.crop module": [[6, "module-unravel.cluster_stats.crop"]], "unravel.cluster_stats.effect_sizes package": [[10, "unravel-cluster-stats-effect-sizes-package"]], "unravel.cluster_stats.effect_sizes.effect_sizes module": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute module": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative module": [[9, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative"]], "unravel.cluster_stats.fdr module": [[11, "module-unravel.cluster_stats.fdr"]], "unravel.cluster_stats.fdr_range module": [[12, "module-unravel.cluster_stats.fdr_range"]], "unravel.cluster_stats.find_incongruent_clusters module": [[13, "module-unravel.cluster_stats.find_incongruent_clusters"]], "unravel.cluster_stats.group_bilateral_data module": [[14, "module-unravel.cluster_stats.group_bilateral_data"]], "unravel.cluster_stats.index module": [[15, "module-unravel.cluster_stats.index"]], "unravel.cluster_stats.legend module": [[16, "module-unravel.cluster_stats.legend"]], "unravel.cluster_stats.org_data module": [[17, "module-unravel.cluster_stats.org_data"]], "unravel.cluster_stats.prism module": [[18, "module-unravel.cluster_stats.prism"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices module": [[19, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices"]], "unravel.cluster_stats.stats module": [[20, "module-unravel.cluster_stats.stats"]], "unravel.cluster_stats.stats_table module": [[21, "module-unravel.cluster_stats.stats_table"]], "unravel.cluster_stats.sunburst module": [[22, "module-unravel.cluster_stats.sunburst"]], "unravel.cluster_stats.table module": [[23, "module-unravel.cluster_stats.table"]], "unravel.core package": [[30, "unravel-core-package"]], "unravel.core.argparse_utils module": [[25, "module-unravel.core.argparse_utils"]], "unravel.core.argparse_utils_rich module": [[26, "module-unravel.core.argparse_utils_rich"]], "unravel.core.config module": [[27, "module-unravel.core.config"]], "unravel.core.img_io module": [[28, "module-unravel.core.img_io"]], "unravel.core.img_tools module": [[29, "module-unravel.core.img_tools"]], "unravel.core.utils module": [[31, "module-unravel.core.utils"]], "unravel.image_io package": [[43, "unravel-image-io-package"]], "unravel.image_io.h5_to_tifs module": [[32, "module-unravel.image_io.h5_to_tifs"]], "unravel.image_io.img_to_npy module": [[33, "module-unravel.image_io.img_to_npy"]], "unravel.image_io.io_img module": [[34, "module-unravel.image_io.io_img"]], "unravel.image_io.io_nii module": [[35, "module-unravel.image_io.io_nii"]], "unravel.image_io.metadata module": [[36, "module-unravel.image_io.metadata"]], "unravel.image_io.nii_hd module": [[37, "module-unravel.image_io.nii_hd"]], "unravel.image_io.nii_info module": [[38, "module-unravel.image_io.nii_info"]], "unravel.image_io.nii_to_tifs module": [[39, "module-unravel.image_io.nii_to_tifs"]], "unravel.image_io.nii_to_zarr module": [[40, "module-unravel.image_io.nii_to_zarr"]], "unravel.image_io.reorient_nii module": [[41, "module-unravel.image_io.reorient_nii"]], "unravel.image_io.tif_to_tifs module": [[42, "module-unravel.image_io.tif_to_tifs"]], "unravel.image_io.zarr_to_nii module": [[44, "module-unravel.image_io.zarr_to_nii"]], "unravel.image_tools package": [[56, "unravel-image-tools-package"]], "unravel.image_tools.DoG module": [[45, "module-unravel.image_tools.DoG"]], "unravel.image_tools.atlas package": [[47, "unravel-image-tools-atlas-package"]], "unravel.image_tools.atlas.relabel_nii module": [[46, "module-unravel.image_tools.atlas.relabel_nii"]], "unravel.image_tools.atlas.wireframe module": [[48, "module-unravel.image_tools.atlas.wireframe"]], "unravel.image_tools.avg module": [[49, "module-unravel.image_tools.avg"]], "unravel.image_tools.bbox module": [[50, "module-unravel.image_tools.bbox"]], "unravel.image_tools.extend module": [[51, "module-unravel.image_tools.extend"]], "unravel.image_tools.max module": [[52, "module-unravel.image_tools.max"]], "unravel.image_tools.pad module": [[53, "module-unravel.image_tools.pad"]], "unravel.image_tools.rb module": [[54, "module-unravel.image_tools.rb"]], "unravel.image_tools.spatial_averaging module": [[55, "module-unravel.image_tools.spatial_averaging"]], "unravel.image_tools.transpose_axes module": [[57, "module-unravel.image_tools.transpose_axes"]], "unravel.image_tools.unique_intensities module": [[58, "module-unravel.image_tools.unique_intensities"]], "unravel.region_stats package": [[64, "unravel-region-stats-package"]], "unravel.region_stats.rstats module": [[59, "module-unravel.region_stats.rstats"]], "unravel.region_stats.rstats_mean_IF module": [[60, "module-unravel.region_stats.rstats_mean_IF"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels module": [[61, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels"]], "unravel.region_stats.rstats_mean_IF_summary module": [[62, "module-unravel.region_stats.rstats_mean_IF_summary"]], "unravel.region_stats.rstats_summary module": [[63, "module-unravel.region_stats.rstats_summary"]], "unravel.register package": [[70, "unravel-register-package"]], "unravel.register.affine_initializer module": [[65, "module-unravel.register.affine_initializer"]], "unravel.register.reg module": [[66, "module-unravel.register.reg"]], "unravel.register.reg_check module": [[67, "module-unravel.register.reg_check"]], "unravel.register.reg_check_brain_mask module": [[68, "module-unravel.register.reg_check_brain_mask"]], "unravel.register.reg_prep module": [[69, "module-unravel.register.reg_prep"]], "unravel.segment package": [[74, "unravel-segment-package"]], "unravel.segment.brain_mask module": [[71, "module-unravel.segment.brain_mask"]], "unravel.segment.copy_tifs module": [[72, "module-unravel.segment.copy_tifs"]], "unravel.segment.ilastik_pixel_classification module": [[73, "module-unravel.segment.ilastik_pixel_classification"]], "unravel.unravel_commands module": [[76, "module-unravel.unravel_commands"]], "unravel.utilities package": [[82, "unravel-utilities-package"]], "unravel.utilities.aggregate_files_from_sample_dirs module": [[77, "module-unravel.utilities.aggregate_files_from_sample_dirs"]], "unravel.utilities.aggregate_files_w_recursive_search module": [[78, "module-unravel.utilities.aggregate_files_w_recursive_search"]], "unravel.utilities.clean_tif_dirs module": [[79, "module-unravel.utilities.clean_tif_dirs"]], "unravel.utilities.prepend_conditions module": [[80, "module-unravel.utilities.prepend_conditions"]], "unravel.utilities.rename module": [[81, "module-unravel.utilities.rename"]], "unravel.utilities.toggle_samples module": [[83, "module-unravel.utilities.toggle_samples"]], "unravel.voxel_stats package": [[90, "unravel-voxel-stats-package"]], "unravel.voxel_stats.apply_mask module": [[84, "module-unravel.voxel_stats.apply_mask"]], "unravel.voxel_stats.hemi_to_LR_avg module": [[85, "module-unravel.voxel_stats.hemi_to_LR_avg"]], "unravel.voxel_stats.mirror module": [[86, "module-unravel.voxel_stats.mirror"]], "unravel.voxel_stats.other package": [[89, "unravel-voxel-stats-other-package"]], "unravel.voxel_stats.other.IF_outliers module": [[87, "module-unravel.voxel_stats.other.IF_outliers"]], "unravel.voxel_stats.other.r_to_p module": [[88, "module-unravel.voxel_stats.other.r_to_p"]], "unravel.voxel_stats.vstats module": [[91, "module-unravel.voxel_stats.vstats"]], "unravel.voxel_stats.vstats_prep module": [[92, "module-unravel.voxel_stats.vstats_prep"]], "unravel.voxel_stats.whole_to_LR_avg module": [[93, "module-unravel.voxel_stats.whole_to_LR_avg"]], "unravel.voxel_stats.z_score module": [[94, "module-unravel.voxel_stats.z_score"]], "unravel.warp package": [[97, "unravel-warp-package"]], "unravel.warp.to_atlas module": [[95, "module-unravel.warp.to_atlas"]], "unravel.warp.to_native module": [[96, "module-unravel.warp.to_native"]], "unravel.warp.warp module": [[98, "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/cluster_summary", "unravel/cluster_stats/cluster_validation", "unravel/cluster_stats/crop", "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/org_data", "unravel/cluster_stats/prism", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices", "unravel/cluster_stats/stats", "unravel/cluster_stats/stats_table", "unravel/cluster_stats/sunburst", "unravel/cluster_stats/table", "unravel/cluster_stats/toc", "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/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/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/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/toc", "unravel/toc", "unravel/unravel_commands", "unravel/utilities/aggregate_files_from_sample_dirs", "unravel/utilities/aggregate_files_w_recursive_search", "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/to_atlas", "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/cluster_summary.rst", "unravel/cluster_stats/cluster_validation.rst", "unravel/cluster_stats/crop.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/org_data.rst", "unravel/cluster_stats/prism.rst", "unravel/cluster_stats/recursively_mirror_rev_cluster_indices.rst", "unravel/cluster_stats/stats.rst", "unravel/cluster_stats/stats_table.rst", "unravel/cluster_stats/sunburst.rst", "unravel/cluster_stats/table.rst", "unravel/cluster_stats/toc.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/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/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/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/toc.rst", "unravel/toc.rst", "unravel/unravel_commands.rst", "unravel/utilities/aggregate_files_from_sample_dirs.rst", "unravel/utilities/aggregate_files_w_recursive_search.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/to_atlas.rst", "unravel/warp/to_native.rst", "unravel/warp/toc.rst", "unravel/warp/warp.rst"], "indexentries": {"affine_initializer_wrapper() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.affine_initializer_wrapper", false]], "aggregate_files_from_sample_dirs() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[77, "unravel.utilities.aggregate_files_from_sample_dirs.aggregate_files_from_sample_dirs", false]], "apply_2d_mean_filter() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.apply_2D_mean_filter", false]], "apply_mask_to_ndarray() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.apply_mask_to_ndarray", false]], "apply_rgb_to_cell() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.apply_rgb_to_cell", false]], "attrdict (class in unravel.core.config)": [[27, "unravel.core.config.AttrDict", false]], "averagetimeperiterationcolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.AverageTimePerIterationColumn", false]], "bias_correction() (in module unravel.register.reg)": [[66, "unravel.register.reg.bias_correction", false]], "calculate_fragments() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.calculate_fragments", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.calculate_mean_intensity", false]], "calculate_mean_intensity() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.calculate_mean_intensity", false]], "calculate_regional_cell_densities() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.calculate_regional_cell_densities", false]], "calculate_regional_volumes() (in module unravel.cluster_stats.sunburst)": [[22, "unravel.cluster_stats.sunburst.calculate_regional_volumes", false]], "calculate_regional_volumes() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.calculate_regional_volumes", false]], "calculate_resampled_padded_dimensions() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.calculate_resampled_padded_dimensions", false]], "calculate_top_regions() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.calculate_top_regions", false]], "can_collapse() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.can_collapse", false]], "check_fdr_command() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.check_fdr_command", false]], "clean_tifs_dir() (in module unravel.utilities.clean_tif_dirs)": [[79, "unravel.utilities.clean_tif_dirs.clean_tifs_dir", false]], "cluster_bbox() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.cluster_bbox", false]], "cluster_bbox_parallel() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.cluster_bbox_parallel", false]], "cluster_ids() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.cluster_IDs", false]], "cluster_index() (in module unravel.cluster_stats.fdr)": [[11, "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.stats)": [[20, "unravel.cluster_stats.stats.cluster_validation_data_df", false]], "collapse_hierarchy() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.collapse_hierarchy", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.condition_selector", false]], "condition_selector() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.condition_selector", false]], "config (class in unravel.core.config)": [[27, "unravel.core.config.Config", false]], "configuration (class in unravel.core.config)": [[27, "unravel.core.config.Configuration", false]], "convert_dtype() (in module unravel.image_io.io_nii)": [[35, "unravel.image_io.io_nii.convert_dtype", false]], "copy_files() (in module unravel.core.utils)": [[31, "unravel.core.utils.copy_files", false]], "copy_nii_header() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.copy_nii_header", false]], "copy_specific_slices() (in module unravel.segment.copy_tifs)": [[72, "unravel.segment.copy_tifs.copy_specific_slices", false]], "copy_stats_files() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.copy_stats_files", false]], "count_cells() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.count_cells", false]], "count_cells_in_regions() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.count_cells_in_regions", false]], "count_files() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.count_files", false]], "cp() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.cp", false]], "create_design_ttest2() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.create_design_ttest2", false]], "crop() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.crop", false]], "crop_outer_space() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.crop_outer_space", false]], "custommofncompletecolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.CustomMofNCompleteColumn", false]], "customtimeelapsedcolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.CustomTimeElapsedColumn", false]], "customtimeremainingcolumn (class in unravel.core.utils)": [[31, "unravel.core.utils.CustomTimeRemainingColumn", false]], "define_zarr_to_nii_output() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.define_zarr_to_nii_output", false]], "density_in_cluster() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.density_in_cluster", false]], "density_in_cluster_parallel() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.density_in_cluster_parallel", false]], "detect_outliers() (in module unravel.voxel_stats.other.if_outliers)": [[87, "unravel.voxel_stats.other.IF_outliers.detect_outliers", false]], "difference_of_gaussians() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.difference_of_gaussians", false]], "dilate_mask() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.dilate_mask", false]], "extend_one_side_3d_array() (in module unravel.image_tools.extend)": [[51, "unravel.image_tools.extend.extend_one_side_3d_array", false]], "extract_resolution() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.extract_resolution", false]], "extract_unique_regions_from_file() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.extract_unique_regions_from_file", false]], "fdr() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.fdr", false]], "fdr_range() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.fdr_range", false]], "fill_na_with_last_known() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.fill_na_with_last_known", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.filter_dataframe", false]], "filter_dataframe() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "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)": [[62, "unravel.region_stats.rstats_mean_IF_summary.filter_region_ids", false]], "find_and_copy_files() (in module unravel.utilities.aggregate_files_w_recursive_search)": [[78, "unravel.utilities.aggregate_files_w_recursive_search.find_and_copy_files", false]], "find_bounding_box() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.find_bounding_box", false]], "find_incongruent_clusters() (in module unravel.cluster_stats.find_incongruent_clusters)": [[13, "unravel.cluster_stats.find_incongruent_clusters.find_incongruent_clusters", false]], "find_largest_h5_file() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.find_largest_h5_file", false]], "find_largest_tif_file() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.find_largest_tif_file", false]], "find_matching_directory() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.find_matching_directory", false]], "find_max_intensity() (in module unravel.image_tools.max)": [[52, "unravel.image_tools.max.find_max_intensity", false]], "generate_summary_table() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.generate_summary_table", false]], "generate_sunburst() (in module unravel.cluster_stats.index)": [[15, "unravel.cluster_stats.index.generate_sunburst", false]], "generate_wireframe() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.generate_wireframe", false]], "get_all_region_ids() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.get_all_region_ids", false]], "get_atlas_region_at_coords() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.get_atlas_region_at_coords", false]], "get_dims_from_tifs() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.get_dims_from_tifs", false]], "get_dir_name_from_args() (in module unravel.core.utils)": [[31, "unravel.core.utils.get_dir_name_from_args", false]], "get_fill_color() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.get_fill_color", false]], "get_groups_info() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.get_groups_info", false]], "get_max_region_id_from_csvs() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "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)": [[62, "unravel.region_stats.rstats_mean_IF_summary.get_region_details", false]], "get_region_details() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.get_region_details", false]], "get_samples() (in module unravel.core.utils)": [[31, "unravel.core.utils.get_samples", false]], "get_top_regions_and_percent_vols() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.get_top_regions_and_percent_vols", false]], "group_hemisphere_data() (in module unravel.cluster_stats.group_bilateral_data)": [[14, "unravel.cluster_stats.group_bilateral_data.group_hemisphere_data", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.hedges_g", false]], "hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[85, "unravel.voxel_stats.hemi_to_LR_avg.hemi_to_LR_avg", false]], "initialize_progress_bar() (in module unravel.core.utils)": [[31, "unravel.core.utils.initialize_progress_bar", false]], "load_3d_img() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_3D_img", false]], "load_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.load_3D_tif", false]], "load_config() (in module unravel.core.utils)": [[31, "unravel.core.utils.load_config", false]], "load_czi() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_czi", false]], "load_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.load_data", false]], "load_h5() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_h5", false]], "load_h5() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.load_h5", false]], "load_image_metadata_from_txt() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_image_metadata_from_txt", false]], "load_mask() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.load_mask", false]], "load_nii() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_nii", false]], "load_nii_orientation() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_nii_orientation", false]], "load_nii_subset() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_nii_subset", false]], "load_text_from_file() (in module unravel.core.utils)": [[31, "unravel.core.utils.load_text_from_file", false]], "load_tif() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.load_tif", false]], "load_tif() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.load_tif", false]], "load_tifs() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_tifs", false]], "load_zarr() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.load_zarr", false]], "main() (in module unravel.cluster_stats.brain_model)": [[3, "unravel.cluster_stats.brain_model.main", false]], "main() (in module unravel.cluster_stats.cluster_summary)": [[4, "unravel.cluster_stats.cluster_summary.main", false]], "main() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.main", false]], "main() (in module unravel.cluster_stats.crop)": [[6, "unravel.cluster_stats.crop.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.main", false]], "main() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.main", false]], "main() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.main", false]], "main() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.main", false]], "main() (in module unravel.cluster_stats.find_incongruent_clusters)": [[13, "unravel.cluster_stats.find_incongruent_clusters.main", false]], "main() (in module unravel.cluster_stats.group_bilateral_data)": [[14, "unravel.cluster_stats.group_bilateral_data.main", false]], "main() (in module unravel.cluster_stats.index)": [[15, "unravel.cluster_stats.index.main", false]], "main() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.main", false]], "main() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.main", false]], "main() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.main", false]], "main() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[19, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.main", false]], "main() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.main", false]], "main() (in module unravel.cluster_stats.stats_table)": [[21, "unravel.cluster_stats.stats_table.main", false]], "main() (in module unravel.cluster_stats.sunburst)": [[22, "unravel.cluster_stats.sunburst.main", false]], "main() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.main", false]], "main() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.main", false]], "main() (in module unravel.image_io.img_to_npy)": [[33, "unravel.image_io.img_to_npy.main", false]], "main() (in module unravel.image_io.io_img)": [[34, "unravel.image_io.io_img.main", false]], "main() (in module unravel.image_io.io_nii)": [[35, "unravel.image_io.io_nii.main", false]], "main() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.main", false]], "main() (in module unravel.image_io.nii_hd)": [[37, "unravel.image_io.nii_hd.main", false]], "main() (in module unravel.image_io.nii_info)": [[38, "unravel.image_io.nii_info.main", false]], "main() (in module unravel.image_io.nii_to_tifs)": [[39, "unravel.image_io.nii_to_tifs.main", false]], "main() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.main", false]], "main() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.main", false]], "main() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.main", false]], "main() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.main", false]], "main() (in module unravel.image_tools.atlas.relabel_nii)": [[46, "unravel.image_tools.atlas.relabel_nii.main", false]], "main() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.main", false]], "main() (in module unravel.image_tools.avg)": [[49, "unravel.image_tools.avg.main", false]], "main() (in module unravel.image_tools.bbox)": [[50, "unravel.image_tools.bbox.main", false]], "main() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.main", false]], "main() (in module unravel.image_tools.extend)": [[51, "unravel.image_tools.extend.main", false]], "main() (in module unravel.image_tools.max)": [[52, "unravel.image_tools.max.main", false]], "main() (in module unravel.image_tools.pad)": [[53, "unravel.image_tools.pad.main", false]], "main() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.main", false]], "main() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.main", false]], "main() (in module unravel.image_tools.transpose_axes)": [[57, "unravel.image_tools.transpose_axes.main", false]], "main() (in module unravel.image_tools.unique_intensities)": [[58, "unravel.image_tools.unique_intensities.main", false]], "main() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.main", false]], "main() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.main", false]], "main() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.main", false]], "main() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.main", false]], "main() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.main", false]], "main() (in module unravel.register.reg)": [[66, "unravel.register.reg.main", false]], "main() (in module unravel.register.reg_check)": [[67, "unravel.register.reg_check.main", false]], "main() (in module unravel.register.reg_check_brain_mask)": [[68, "unravel.register.reg_check_brain_mask.main", false]], "main() (in module unravel.register.reg_prep)": [[69, "unravel.register.reg_prep.main", false]], "main() (in module unravel.segment.brain_mask)": [[71, "unravel.segment.brain_mask.main", false]], "main() (in module unravel.segment.copy_tifs)": [[72, "unravel.segment.copy_tifs.main", false]], "main() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.main", false]], "main() (in module unravel.unravel_commands)": [[76, "unravel.unravel_commands.main", false]], "main() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[77, "unravel.utilities.aggregate_files_from_sample_dirs.main", false]], "main() (in module unravel.utilities.aggregate_files_w_recursive_search)": [[78, "unravel.utilities.aggregate_files_w_recursive_search.main", false]], "main() (in module unravel.utilities.clean_tif_dirs)": [[79, "unravel.utilities.clean_tif_dirs.main", false]], "main() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.main", false]], "main() (in module unravel.utilities.rename)": [[81, "unravel.utilities.rename.main", false]], "main() (in module unravel.utilities.toggle_samples)": [[83, "unravel.utilities.toggle_samples.main", false]], "main() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.main", false]], "main() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[85, "unravel.voxel_stats.hemi_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.mirror)": [[86, "unravel.voxel_stats.mirror.main", false]], "main() (in module unravel.voxel_stats.other.if_outliers)": [[87, "unravel.voxel_stats.other.IF_outliers.main", false]], "main() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.main", false]], "main() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.main", false]], "main() (in module unravel.voxel_stats.vstats_prep)": [[92, "unravel.voxel_stats.vstats_prep.main", false]], "main() (in module unravel.voxel_stats.whole_to_lr_avg)": [[93, "unravel.voxel_stats.whole_to_LR_avg.main", false]], "main() (in module unravel.voxel_stats.z_score)": [[94, "unravel.voxel_stats.z_score.main", false]], "main() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.main", false]], "main() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.main", false]], "main() (in module unravel.warp.warp)": [[98, "unravel.warp.warp.main", false]], "mean_intensity_in_brain() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.mean_intensity_in_brain", false]], "mean_intensity_within_mask() (in module unravel.voxel_stats.other.if_outliers)": [[87, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.mean_std_count", false]], "metadata() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.metadata", false]], "metadata_from_3d_tif() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.metadata_from_3D_tif", false]], "metadata_from_h5() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.metadata_from_h5", false]], "mirror() (in module unravel.voxel_stats.mirror)": [[86, "unravel.voxel_stats.mirror.mirror", false]], "module": [[3, "module-unravel.cluster_stats.brain_model", false], [4, "module-unravel.cluster_stats.cluster_summary", false], [5, "module-unravel.cluster_stats.cluster_validation", false], [6, "module-unravel.cluster_stats.crop", false], [7, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false], [8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false], [9, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false], [11, "module-unravel.cluster_stats.fdr", false], [12, "module-unravel.cluster_stats.fdr_range", false], [13, "module-unravel.cluster_stats.find_incongruent_clusters", false], [14, "module-unravel.cluster_stats.group_bilateral_data", false], [15, "module-unravel.cluster_stats.index", false], [16, "module-unravel.cluster_stats.legend", false], [17, "module-unravel.cluster_stats.org_data", false], [18, "module-unravel.cluster_stats.prism", false], [19, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false], [20, "module-unravel.cluster_stats.stats", false], [21, "module-unravel.cluster_stats.stats_table", false], [22, "module-unravel.cluster_stats.sunburst", false], [23, "module-unravel.cluster_stats.table", false], [25, "module-unravel.core.argparse_utils", false], [26, "module-unravel.core.argparse_utils_rich", false], [27, "module-unravel.core.config", false], [28, "module-unravel.core.img_io", false], [29, "module-unravel.core.img_tools", false], [31, "module-unravel.core.utils", false], [32, "module-unravel.image_io.h5_to_tifs", false], [33, "module-unravel.image_io.img_to_npy", false], [34, "module-unravel.image_io.io_img", false], [35, "module-unravel.image_io.io_nii", false], [36, "module-unravel.image_io.metadata", false], [37, "module-unravel.image_io.nii_hd", false], [38, "module-unravel.image_io.nii_info", false], [39, "module-unravel.image_io.nii_to_tifs", false], [40, "module-unravel.image_io.nii_to_zarr", false], [41, "module-unravel.image_io.reorient_nii", false], [42, "module-unravel.image_io.tif_to_tifs", false], [44, "module-unravel.image_io.zarr_to_nii", false], [45, "module-unravel.image_tools.DoG", false], [46, "module-unravel.image_tools.atlas.relabel_nii", false], [48, "module-unravel.image_tools.atlas.wireframe", false], [49, "module-unravel.image_tools.avg", false], [50, "module-unravel.image_tools.bbox", false], [51, "module-unravel.image_tools.extend", false], [52, "module-unravel.image_tools.max", false], [53, "module-unravel.image_tools.pad", false], [54, "module-unravel.image_tools.rb", false], [55, "module-unravel.image_tools.spatial_averaging", false], [57, "module-unravel.image_tools.transpose_axes", false], [58, "module-unravel.image_tools.unique_intensities", false], [59, "module-unravel.region_stats.rstats", false], [60, "module-unravel.region_stats.rstats_mean_IF", false], [61, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false], [62, "module-unravel.region_stats.rstats_mean_IF_summary", false], [63, "module-unravel.region_stats.rstats_summary", false], [65, "module-unravel.register.affine_initializer", false], [66, "module-unravel.register.reg", false], [67, "module-unravel.register.reg_check", false], [68, "module-unravel.register.reg_check_brain_mask", false], [69, "module-unravel.register.reg_prep", false], [71, "module-unravel.segment.brain_mask", false], [72, "module-unravel.segment.copy_tifs", false], [73, "module-unravel.segment.ilastik_pixel_classification", false], [76, "module-unravel.unravel_commands", false], [77, "module-unravel.utilities.aggregate_files_from_sample_dirs", false], [78, "module-unravel.utilities.aggregate_files_w_recursive_search", false], [79, "module-unravel.utilities.clean_tif_dirs", false], [80, "module-unravel.utilities.prepend_conditions", false], [81, "module-unravel.utilities.rename", false], [83, "module-unravel.utilities.toggle_samples", false], [84, "module-unravel.voxel_stats.apply_mask", false], [85, "module-unravel.voxel_stats.hemi_to_LR_avg", false], [86, "module-unravel.voxel_stats.mirror", false], [87, "module-unravel.voxel_stats.other.IF_outliers", false], [88, "module-unravel.voxel_stats.other.r_to_p", false], [91, "module-unravel.voxel_stats.vstats", false], [92, "module-unravel.voxel_stats.vstats_prep", false], [93, "module-unravel.voxel_stats.whole_to_LR_avg", false], [94, "module-unravel.voxel_stats.z_score", false], [95, "module-unravel.warp.to_atlas", false], [96, "module-unravel.warp.to_native", false], [98, "module-unravel.warp.warp", false]], "nii_axis_codes() (in module unravel.image_io.nii_info)": [[38, "unravel.image_io.nii_info.nii_axis_codes", false]], "nii_to_ndarray() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.nii_to_ndarray", false]], "nii_to_tifs() (in module unravel.image_io.nii_to_tifs)": [[39, "unravel.image_io.nii_to_tifs.nii_to_tifs", false]], "organize_validation_data() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.organize_validation_data", false]], "pad() (in module unravel.core.img_tools)": [[29, "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.cluster_summary)": [[4, "unravel.cluster_stats.cluster_summary.parse_args", false]], "parse_args() (in module unravel.cluster_stats.cluster_validation)": [[5, "unravel.cluster_stats.cluster_validation.parse_args", false]], "parse_args() (in module unravel.cluster_stats.crop)": [[6, "unravel.cluster_stats.crop.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes)": [[7, "unravel.cluster_stats.effect_sizes.effect_sizes.parse_args", false]], "parse_args() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute)": [[8, "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)": [[9, "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.parse_args", false]], "parse_args() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.parse_args", false]], "parse_args() (in module unravel.cluster_stats.find_incongruent_clusters)": [[13, "unravel.cluster_stats.find_incongruent_clusters.parse_args", false]], "parse_args() (in module unravel.cluster_stats.group_bilateral_data)": [[14, "unravel.cluster_stats.group_bilateral_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.index)": [[15, "unravel.cluster_stats.index.parse_args", false]], "parse_args() (in module unravel.cluster_stats.legend)": [[16, "unravel.cluster_stats.legend.parse_args", false]], "parse_args() (in module unravel.cluster_stats.org_data)": [[17, "unravel.cluster_stats.org_data.parse_args", false]], "parse_args() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.parse_args", false]], "parse_args() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[19, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.parse_args", false]], "parse_args() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.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.sunburst)": [[22, "unravel.cluster_stats.sunburst.parse_args", false]], "parse_args() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.parse_args", false]], "parse_args() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.img_to_npy)": [[33, "unravel.image_io.img_to_npy.parse_args", false]], "parse_args() (in module unravel.image_io.io_img)": [[34, "unravel.image_io.io_img.parse_args", false]], "parse_args() (in module unravel.image_io.io_nii)": [[35, "unravel.image_io.io_nii.parse_args", false]], "parse_args() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.parse_args", false]], "parse_args() (in module unravel.image_io.nii_hd)": [[37, "unravel.image_io.nii_hd.parse_args", false]], "parse_args() (in module unravel.image_io.nii_info)": [[38, "unravel.image_io.nii_info.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_tifs)": [[39, "unravel.image_io.nii_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.parse_args", false]], "parse_args() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.parse_args", false]], "parse_args() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.parse_args", false]], "parse_args() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.relabel_nii)": [[46, "unravel.image_tools.atlas.relabel_nii.parse_args", false]], "parse_args() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.parse_args", false]], "parse_args() (in module unravel.image_tools.avg)": [[49, "unravel.image_tools.avg.parse_args", false]], "parse_args() (in module unravel.image_tools.bbox)": [[50, "unravel.image_tools.bbox.parse_args", false]], "parse_args() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.parse_args", false]], "parse_args() (in module unravel.image_tools.extend)": [[51, "unravel.image_tools.extend.parse_args", false]], "parse_args() (in module unravel.image_tools.max)": [[52, "unravel.image_tools.max.parse_args", false]], "parse_args() (in module unravel.image_tools.pad)": [[53, "unravel.image_tools.pad.parse_args", false]], "parse_args() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.parse_args", false]], "parse_args() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.parse_args", false]], "parse_args() (in module unravel.image_tools.transpose_axes)": [[57, "unravel.image_tools.transpose_axes.parse_args", false]], "parse_args() (in module unravel.image_tools.unique_intensities)": [[58, "unravel.image_tools.unique_intensities.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats)": [[59, "unravel.region_stats.rstats.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.parse_args", false]], "parse_args() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.parse_args", false]], "parse_args() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.parse_args", false]], "parse_args() (in module unravel.register.reg)": [[66, "unravel.register.reg.parse_args", false]], "parse_args() (in module unravel.register.reg_check)": [[67, "unravel.register.reg_check.parse_args", false]], "parse_args() (in module unravel.register.reg_check_brain_mask)": [[68, "unravel.register.reg_check_brain_mask.parse_args", false]], "parse_args() (in module unravel.register.reg_prep)": [[69, "unravel.register.reg_prep.parse_args", false]], "parse_args() (in module unravel.segment.brain_mask)": [[71, "unravel.segment.brain_mask.parse_args", false]], "parse_args() (in module unravel.segment.copy_tifs)": [[72, "unravel.segment.copy_tifs.parse_args", false]], "parse_args() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.parse_args", false]], "parse_args() (in module unravel.unravel_commands)": [[76, "unravel.unravel_commands.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_from_sample_dirs)": [[77, "unravel.utilities.aggregate_files_from_sample_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.aggregate_files_w_recursive_search)": [[78, "unravel.utilities.aggregate_files_w_recursive_search.parse_args", false]], "parse_args() (in module unravel.utilities.clean_tif_dirs)": [[79, "unravel.utilities.clean_tif_dirs.parse_args", false]], "parse_args() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.parse_args", false]], "parse_args() (in module unravel.utilities.rename)": [[81, "unravel.utilities.rename.parse_args", false]], "parse_args() (in module unravel.utilities.toggle_samples)": [[83, "unravel.utilities.toggle_samples.parse_args", false]], "parse_args() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.parse_args", false]], "parse_args() (in module unravel.voxel_stats.hemi_to_lr_avg)": [[85, "unravel.voxel_stats.hemi_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.mirror)": [[86, "unravel.voxel_stats.mirror.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.if_outliers)": [[87, "unravel.voxel_stats.other.IF_outliers.parse_args", false]], "parse_args() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.parse_args", false]], "parse_args() (in module unravel.voxel_stats.vstats_prep)": [[92, "unravel.voxel_stats.vstats_prep.parse_args", false]], "parse_args() (in module unravel.voxel_stats.whole_to_lr_avg)": [[93, "unravel.voxel_stats.whole_to_LR_avg.parse_args", false]], "parse_args() (in module unravel.voxel_stats.z_score)": [[94, "unravel.voxel_stats.z_score.parse_args", false]], "parse_args() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.parse_args", false]], "parse_args() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.parse_args", false]], "parse_args() (in module unravel.warp.warp)": [[98, "unravel.warp.warp.parse_args", false]], "parse_color_argument() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.parse_color_argument", false]], "perform_t_tests() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.perform_t_tests", false]], "perform_tukey_test() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.perform_tukey_test", false]], "pixel_classification() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.pixel_classification", false]], "plot_data() (in module unravel.region_stats.rstats_mean_if_summary)": [[62, "unravel.region_stats.rstats_mean_IF_summary.plot_data", false]], "prepend_conditions() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.prepend_conditions", false]], "print_cmd_and_times() (in module unravel.core.utils)": [[31, "unravel.core.utils.print_cmd_and_times", false]], "print_func_name_args_times() (in module unravel.core.utils)": [[31, "unravel.core.utils.print_func_name_args_times", false]], "print_metadata() (in module unravel.image_io.metadata)": [[36, "unravel.image_io.metadata.print_metadata", false]], "process_and_plot_data() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.process_and_plot_data", false]], "process_fdr_and_clusters() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.process_fdr_and_clusters", false]], "process_file() (in module unravel.cluster_stats.recursively_mirror_rev_cluster_indices)": [[19, "unravel.cluster_stats.recursively_mirror_rev_cluster_indices.process_file", false]], "process_intensity() (in module unravel.image_tools.atlas.wireframe)": [[48, "unravel.image_tools.atlas.wireframe.process_intensity", false]], "process_slice() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.process_slice", false]], "r_to_z() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.r_to_z", false]], "reg_prep() (in module unravel.register.reg_prep)": [[69, "unravel.register.reg_prep.reg_prep", false]], "relative_hedges_g() (in module unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative)": [[9, "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)": [[62, "unravel.region_stats.rstats_mean_IF_summary.remove_zero_intensity_regions", false]], "rename_files() (in module unravel.utilities.rename)": [[81, "unravel.utilities.rename.rename_files", false]], "rename_items() (in module unravel.utilities.prepend_conditions)": [[80, "unravel.utilities.prepend_conditions.rename_items", false]], "render() (unravel.core.utils.averagetimeperiterationcolumn method)": [[31, "unravel.core.utils.AverageTimePerIterationColumn.render", false]], "render() (unravel.core.utils.custommofncompletecolumn method)": [[31, "unravel.core.utils.CustomMofNCompleteColumn.render", false]], "render() (unravel.core.utils.customtimeelapsedcolumn method)": [[31, "unravel.core.utils.CustomTimeElapsedColumn.render", false]], "render() (unravel.core.utils.customtimeremainingcolumn method)": [[31, "unravel.core.utils.CustomTimeRemainingColumn.render", false]], "reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reorient_for_raw_to_nii_conv", false]], "reorient_ndarray() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reorient_ndarray", false]], "reorient_ndarray2() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reorient_ndarray2", false]], "reorient_nii() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.reorient_nii", false]], "resample() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.resample", false]], "resolve_path() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.resolve_path", false]], "return_3d_img() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.return_3D_img", false]], "reverse_clusters() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.reverse_clusters", false]], "reverse_reorient_for_raw_to_nii_conv() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.reverse_reorient_for_raw_to_nii_conv", false]], "rolling_ball_subtraction() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.rolling_ball_subtraction", false]], "rolling_ball_subtraction_opencv_parallel() (in module unravel.core.img_tools)": [[29, "unravel.core.img_tools.rolling_ball_subtraction_opencv_parallel", false]], "run_randomise_parallel() (in module unravel.voxel_stats.vstats)": [[91, "unravel.voxel_stats.vstats.run_randomise_parallel", false]], "run_script() (in module unravel.cluster_stats.cluster_summary)": [[4, "unravel.cluster_stats.cluster_summary.run_script", false]], "run_with_timeout() (in module unravel.register.affine_initializer)": [[65, "unravel.register.affine_initializer.run_with_timeout", false]], "save_as_h5() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_h5", false]], "save_as_nii() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_nii", false]], "save_as_nii() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.save_as_nii", false]], "save_as_tifs() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.h5_to_tifs)": [[32, "unravel.image_io.h5_to_tifs.save_as_tifs", false]], "save_as_tifs() (in module unravel.image_io.tif_to_tifs)": [[42, "unravel.image_io.tif_to_tifs.save_as_tifs", false]], "save_as_zarr() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_as_zarr", false]], "save_as_zarr() (in module unravel.image_io.nii_to_zarr)": [[40, "unravel.image_io.nii_to_zarr.save_as_zarr", false]], "save_cropped_img() (in module unravel.cluster_stats.crop)": [[6, "unravel.cluster_stats.crop.save_cropped_img", false]], "save_labels_as_masks() (in module unravel.segment.ilastik_pixel_classification)": [[73, "unravel.segment.ilastik_pixel_classification.save_labels_as_masks", false]], "save_metadata_to_file() (in module unravel.core.img_io)": [[28, "unravel.core.img_io.save_metadata_to_file", false]], "save_tif() (in module unravel.image_tools.dog)": [[45, "unravel.image_tools.DoG.save_tif", false]], "save_tif() (in module unravel.image_tools.rb)": [[54, "unravel.image_tools.rb.save_tif", false]], "scale_bool_to_full_res() (in module unravel.voxel_stats.apply_mask)": [[84, "unravel.voxel_stats.apply_mask.scale_bool_to_full_res", false]], "scale_to_full_res() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.scale_to_full_res", false]], "sm (class in unravel.core.argparse_utils)": [[25, "unravel.core.argparse_utils.SM", false]], "sm (class in unravel.core.argparse_utils_rich)": [[26, "unravel.core.argparse_utils_rich.SM", false]], "smart_float_format() (in module unravel.cluster_stats.fdr_range)": [[12, "unravel.cluster_stats.fdr_range.smart_float_format", false]], "sort_samples() (in module unravel.cluster_stats.prism)": [[18, "unravel.cluster_stats.prism.sort_samples", false]], "sort_sunburst_hierarchy() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.sort_sunburst_hierarchy", false]], "spatial_average_2d() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.spatial_average_2D", false]], "spatial_average_3d() (in module unravel.image_tools.spatial_averaging)": [[55, "unravel.image_tools.spatial_averaging.spatial_average_3D", false]], "split_clusters_based_on_effect() (in module unravel.cluster_stats.fdr)": [[11, "unravel.cluster_stats.fdr.split_clusters_based_on_effect", false]], "summarize_significance() (in module unravel.region_stats.rstats_summary)": [[63, "unravel.region_stats.rstats_summary.summarize_significance", false]], "sunburst() (in module unravel.cluster_stats.sunburst)": [[22, "unravel.cluster_stats.sunburst.sunburst", false]], "suppressmetavar (class in unravel.core.argparse_utils)": [[25, "unravel.core.argparse_utils.SuppressMetavar", false]], "suppressmetavar (class in unravel.core.argparse_utils_rich)": [[26, "unravel.core.argparse_utils_rich.SuppressMetavar", false]], "to_atlas() (in module unravel.warp.to_atlas)": [[95, "unravel.warp.to_atlas.to_atlas", false]], "to_native() (in module unravel.warp.to_native)": [[96, "unravel.warp.to_native.to_native", false]], "transform_nii_affine() (in module unravel.image_io.reorient_nii)": [[41, "unravel.image_io.reorient_nii.transform_nii_affine", false]], "transpose_img() (in module unravel.image_tools.transpose_axes)": [[57, "unravel.image_tools.transpose_axes.transpose_img", false]], "undo_fill_with_original() (in module unravel.cluster_stats.table)": [[23, "unravel.cluster_stats.table.undo_fill_with_original", false]], "uniq_intensities() (in module unravel.image_tools.unique_intensities)": [[58, "unravel.image_tools.unique_intensities.uniq_intensities", false]], "unravel.cluster_stats.brain_model": [[3, "module-unravel.cluster_stats.brain_model", false]], "unravel.cluster_stats.cluster_summary": [[4, "module-unravel.cluster_stats.cluster_summary", false]], "unravel.cluster_stats.cluster_validation": [[5, "module-unravel.cluster_stats.cluster_validation", false]], "unravel.cluster_stats.crop": [[6, "module-unravel.cluster_stats.crop", false]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[7, "module-unravel.cluster_stats.effect_sizes.effect_sizes", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute": [[8, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__absolute", false]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[9, "module-unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative", false]], "unravel.cluster_stats.fdr": [[11, "module-unravel.cluster_stats.fdr", false]], "unravel.cluster_stats.fdr_range": [[12, "module-unravel.cluster_stats.fdr_range", false]], "unravel.cluster_stats.find_incongruent_clusters": [[13, "module-unravel.cluster_stats.find_incongruent_clusters", false]], "unravel.cluster_stats.group_bilateral_data": [[14, "module-unravel.cluster_stats.group_bilateral_data", false]], "unravel.cluster_stats.index": [[15, "module-unravel.cluster_stats.index", false]], "unravel.cluster_stats.legend": [[16, "module-unravel.cluster_stats.legend", false]], "unravel.cluster_stats.org_data": [[17, "module-unravel.cluster_stats.org_data", false]], "unravel.cluster_stats.prism": [[18, "module-unravel.cluster_stats.prism", false]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[19, "module-unravel.cluster_stats.recursively_mirror_rev_cluster_indices", false]], "unravel.cluster_stats.stats": [[20, "module-unravel.cluster_stats.stats", false]], "unravel.cluster_stats.stats_table": [[21, "module-unravel.cluster_stats.stats_table", false]], "unravel.cluster_stats.sunburst": [[22, "module-unravel.cluster_stats.sunburst", false]], "unravel.cluster_stats.table": [[23, "module-unravel.cluster_stats.table", false]], "unravel.core.argparse_utils": [[25, "module-unravel.core.argparse_utils", false]], "unravel.core.argparse_utils_rich": [[26, "module-unravel.core.argparse_utils_rich", false]], "unravel.core.config": [[27, "module-unravel.core.config", false]], "unravel.core.img_io": [[28, "module-unravel.core.img_io", false]], "unravel.core.img_tools": [[29, "module-unravel.core.img_tools", false]], "unravel.core.utils": [[31, "module-unravel.core.utils", false]], "unravel.image_io.h5_to_tifs": [[32, "module-unravel.image_io.h5_to_tifs", false]], "unravel.image_io.img_to_npy": [[33, "module-unravel.image_io.img_to_npy", false]], "unravel.image_io.io_img": [[34, "module-unravel.image_io.io_img", false]], "unravel.image_io.io_nii": [[35, "module-unravel.image_io.io_nii", false]], "unravel.image_io.metadata": [[36, "module-unravel.image_io.metadata", false]], "unravel.image_io.nii_hd": [[37, "module-unravel.image_io.nii_hd", false]], "unravel.image_io.nii_info": [[38, "module-unravel.image_io.nii_info", false]], "unravel.image_io.nii_to_tifs": [[39, "module-unravel.image_io.nii_to_tifs", false]], "unravel.image_io.nii_to_zarr": [[40, "module-unravel.image_io.nii_to_zarr", false]], "unravel.image_io.reorient_nii": [[41, "module-unravel.image_io.reorient_nii", false]], "unravel.image_io.tif_to_tifs": [[42, "module-unravel.image_io.tif_to_tifs", false]], "unravel.image_io.zarr_to_nii": [[44, "module-unravel.image_io.zarr_to_nii", false]], "unravel.image_tools.atlas.relabel_nii": [[46, "module-unravel.image_tools.atlas.relabel_nii", false]], "unravel.image_tools.atlas.wireframe": [[48, "module-unravel.image_tools.atlas.wireframe", false]], "unravel.image_tools.avg": [[49, "module-unravel.image_tools.avg", false]], "unravel.image_tools.bbox": [[50, "module-unravel.image_tools.bbox", false]], "unravel.image_tools.dog": [[45, "module-unravel.image_tools.DoG", false]], "unravel.image_tools.extend": [[51, "module-unravel.image_tools.extend", false]], "unravel.image_tools.max": [[52, "module-unravel.image_tools.max", false]], "unravel.image_tools.pad": [[53, "module-unravel.image_tools.pad", false]], "unravel.image_tools.rb": [[54, "module-unravel.image_tools.rb", false]], "unravel.image_tools.spatial_averaging": [[55, "module-unravel.image_tools.spatial_averaging", false]], "unravel.image_tools.transpose_axes": [[57, "module-unravel.image_tools.transpose_axes", false]], "unravel.image_tools.unique_intensities": [[58, "module-unravel.image_tools.unique_intensities", false]], "unravel.region_stats.rstats": [[59, "module-unravel.region_stats.rstats", false]], "unravel.region_stats.rstats_mean_if": [[60, "module-unravel.region_stats.rstats_mean_IF", false]], "unravel.region_stats.rstats_mean_if_in_segmented_voxels": [[61, "module-unravel.region_stats.rstats_mean_IF_in_segmented_voxels", false]], "unravel.region_stats.rstats_mean_if_summary": [[62, "module-unravel.region_stats.rstats_mean_IF_summary", false]], "unravel.region_stats.rstats_summary": [[63, "module-unravel.region_stats.rstats_summary", false]], "unravel.register.affine_initializer": [[65, "module-unravel.register.affine_initializer", false]], "unravel.register.reg": [[66, "module-unravel.register.reg", false]], "unravel.register.reg_check": [[67, "module-unravel.register.reg_check", false]], "unravel.register.reg_check_brain_mask": [[68, "module-unravel.register.reg_check_brain_mask", false]], "unravel.register.reg_prep": [[69, "module-unravel.register.reg_prep", false]], "unravel.segment.brain_mask": [[71, "module-unravel.segment.brain_mask", false]], "unravel.segment.copy_tifs": [[72, "module-unravel.segment.copy_tifs", false]], "unravel.segment.ilastik_pixel_classification": [[73, "module-unravel.segment.ilastik_pixel_classification", false]], "unravel.unravel_commands": [[76, "module-unravel.unravel_commands", false]], "unravel.utilities.aggregate_files_from_sample_dirs": [[77, "module-unravel.utilities.aggregate_files_from_sample_dirs", false]], "unravel.utilities.aggregate_files_w_recursive_search": [[78, "module-unravel.utilities.aggregate_files_w_recursive_search", false]], "unravel.utilities.clean_tif_dirs": [[79, "module-unravel.utilities.clean_tif_dirs", false]], "unravel.utilities.prepend_conditions": [[80, "module-unravel.utilities.prepend_conditions", false]], "unravel.utilities.rename": [[81, "module-unravel.utilities.rename", false]], "unravel.utilities.toggle_samples": [[83, "module-unravel.utilities.toggle_samples", false]], "unravel.voxel_stats.apply_mask": [[84, "module-unravel.voxel_stats.apply_mask", false]], "unravel.voxel_stats.hemi_to_lr_avg": [[85, "module-unravel.voxel_stats.hemi_to_LR_avg", false]], "unravel.voxel_stats.mirror": [[86, "module-unravel.voxel_stats.mirror", false]], "unravel.voxel_stats.other.if_outliers": [[87, "module-unravel.voxel_stats.other.IF_outliers", false]], "unravel.voxel_stats.other.r_to_p": [[88, "module-unravel.voxel_stats.other.r_to_p", false]], "unravel.voxel_stats.vstats": [[91, "module-unravel.voxel_stats.vstats", false]], "unravel.voxel_stats.vstats_prep": [[92, "module-unravel.voxel_stats.vstats_prep", false]], "unravel.voxel_stats.whole_to_lr_avg": [[93, "module-unravel.voxel_stats.whole_to_LR_avg", false]], "unravel.voxel_stats.z_score": [[94, "module-unravel.voxel_stats.z_score", false]], "unravel.warp.to_atlas": [[95, "module-unravel.warp.to_atlas", false]], "unravel.warp.to_native": [[96, "module-unravel.warp.to_native", false]], "unravel.warp.warp": [[98, "module-unravel.warp.warp", false]], "valid_clusters_t_test() (in module unravel.cluster_stats.stats)": [[20, "unravel.cluster_stats.stats.valid_clusters_t_test", false]], "verbose (unravel.core.config.configuration attribute)": [[27, "unravel.core.config.Configuration.verbose", false]], "warp() (in module unravel.warp.warp)": [[98, "unravel.warp.warp.warp", false]], "whole_to_lr_avg() (in module unravel.voxel_stats.whole_to_lr_avg)": [[93, "unravel.voxel_stats.whole_to_LR_avg.whole_to_LR_avg", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if)": [[60, "unravel.region_stats.rstats_mean_IF.write_to_csv", false]], "write_to_csv() (in module unravel.region_stats.rstats_mean_if_in_segmented_voxels)": [[61, "unravel.region_stats.rstats_mean_IF_in_segmented_voxels.write_to_csv", false]], "z_score() (in module unravel.voxel_stats.z_score)": [[94, "unravel.voxel_stats.z_score.z_score", false]], "z_to_p() (in module unravel.voxel_stats.other.r_to_p)": [[88, "unravel.voxel_stats.other.r_to_p.z_to_p", false]], "zarr_to_ndarray() (in module unravel.image_io.zarr_to_nii)": [[44, "unravel.image_io.zarr_to_nii.zarr_to_ndarray", false]]}, "objects": {"unravel": [[76, 0, 0, "-", "unravel_commands"]], "unravel.cluster_stats": [[3, 0, 0, "-", "brain_model"], [4, 0, 0, "-", "cluster_summary"], [5, 0, 0, "-", "cluster_validation"], [6, 0, 0, "-", "crop"], [11, 0, 0, "-", "fdr"], [12, 0, 0, "-", "fdr_range"], [13, 0, 0, "-", "find_incongruent_clusters"], [14, 0, 0, "-", "group_bilateral_data"], [15, 0, 0, "-", "index"], [16, 0, 0, "-", "legend"], [17, 0, 0, "-", "org_data"], [18, 0, 0, "-", "prism"], [19, 0, 0, "-", "recursively_mirror_rev_cluster_indices"], [20, 0, 0, "-", "stats"], [21, 0, 0, "-", "stats_table"], [22, 0, 0, "-", "sunburst"], [23, 0, 0, "-", "table"]], "unravel.cluster_stats.brain_model": [[3, 1, 1, "", "main"], [3, 1, 1, "", "parse_args"]], "unravel.cluster_stats.cluster_summary": [[4, 1, 1, "", "main"], [4, 1, 1, "", "parse_args"], [4, 1, 1, "", "run_script"]], "unravel.cluster_stats.cluster_validation": [[5, 1, 1, "", "cluster_bbox"], [5, 1, 1, "", "cluster_bbox_parallel"], [5, 1, 1, "", "count_cells"], [5, 1, 1, "", "crop_outer_space"], [5, 1, 1, "", "density_in_cluster"], [5, 1, 1, "", "density_in_cluster_parallel"], [5, 1, 1, "", "main"], [5, 1, 1, "", "parse_args"]], "unravel.cluster_stats.crop": [[6, 1, 1, "", "main"], [6, 1, 1, "", "parse_args"], [6, 1, 1, "", "save_cropped_img"]], "unravel.cluster_stats.effect_sizes": [[7, 0, 0, "-", "effect_sizes"], [8, 0, 0, "-", "effect_sizes_by_sex__absolute"], [9, 0, 0, "-", "effect_sizes_by_sex__relative"]], "unravel.cluster_stats.effect_sizes.effect_sizes": [[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__absolute": [[8, 1, 1, "", "condition_selector"], [8, 1, 1, "", "filter_dataframe"], [8, 1, 1, "", "hedges_g"], [8, 1, 1, "", "main"], [8, 1, 1, "", "parse_args"]], "unravel.cluster_stats.effect_sizes.effect_sizes_by_sex__relative": [[9, 1, 1, "", "condition_selector"], [9, 1, 1, "", "filter_dataframe"], [9, 1, 1, "", "main"], [9, 1, 1, "", "mean_std_count"], [9, 1, 1, "", "parse_args"], [9, 1, 1, "", "relative_hedges_g"]], "unravel.cluster_stats.fdr": [[11, 1, 1, "", "cluster_index"], [11, 1, 1, "", "fdr"], [11, 1, 1, "", "main"], [11, 1, 1, "", "parse_args"], [11, 1, 1, "", "process_fdr_and_clusters"], [11, 1, 1, "", "reverse_clusters"], [11, 1, 1, "", "split_clusters_based_on_effect"]], "unravel.cluster_stats.fdr_range": [[12, 1, 1, "", "fdr_range"], [12, 1, 1, "", "main"], [12, 1, 1, "", "parse_args"], [12, 1, 1, "", "smart_float_format"]], "unravel.cluster_stats.find_incongruent_clusters": [[13, 1, 1, "", "find_incongruent_clusters"], [13, 1, 1, "", "main"], [13, 1, 1, "", "parse_args"]], "unravel.cluster_stats.group_bilateral_data": [[14, 1, 1, "", "group_hemisphere_data"], [14, 1, 1, "", "main"], [14, 1, 1, "", "parse_args"]], "unravel.cluster_stats.index": [[15, 1, 1, "", "generate_sunburst"], [15, 1, 1, "", "main"], [15, 1, 1, "", "parse_args"]], "unravel.cluster_stats.legend": [[16, 1, 1, "", "apply_rgb_to_cell"], [16, 1, 1, "", "extract_unique_regions_from_file"], [16, 1, 1, "", "main"], [16, 1, 1, "", "parse_args"]], "unravel.cluster_stats.org_data": [[17, 1, 1, "", "copy_stats_files"], [17, 1, 1, "", "cp"], [17, 1, 1, "", "find_matching_directory"], [17, 1, 1, "", "main"], [17, 1, 1, "", "organize_validation_data"], [17, 1, 1, "", "parse_args"]], "unravel.cluster_stats.prism": [[18, 1, 1, "", "generate_summary_table"], [18, 1, 1, "", "main"], [18, 1, 1, "", "parse_args"], [18, 1, 1, "", "sort_samples"]], "unravel.cluster_stats.recursively_mirror_rev_cluster_indices": [[19, 1, 1, "", "main"], [19, 1, 1, "", "parse_args"], [19, 1, 1, "", "process_file"]], "unravel.cluster_stats.stats": [[20, 1, 1, "", "cluster_validation_data_df"], [20, 1, 1, "", "condition_selector"], [20, 1, 1, "", "main"], [20, 1, 1, "", "parse_args"], [20, 1, 1, "", "perform_tukey_test"], [20, 1, 1, "", "valid_clusters_t_test"]], "unravel.cluster_stats.stats_table": [[21, 1, 1, "", "cluster_summary"], [21, 1, 1, "", "main"], [21, 1, 1, "", "parse_args"]], "unravel.cluster_stats.sunburst": [[22, 1, 1, "", "calculate_regional_volumes"], [22, 1, 1, "", "main"], [22, 1, 1, "", "parse_args"], [22, 1, 1, "", "sunburst"]], "unravel.cluster_stats.table": [[23, 1, 1, "", "calculate_top_regions"], [23, 1, 1, "", "can_collapse"], [23, 1, 1, "", "collapse_hierarchy"], [23, 1, 1, "", "fill_na_with_last_known"], [23, 1, 1, "", "get_fill_color"], [23, 1, 1, "", "get_top_regions_and_percent_vols"], [23, 1, 1, "", "main"], [23, 1, 1, "", "parse_args"], [23, 1, 1, "", "sort_sunburst_hierarchy"], [23, 1, 1, "", "undo_fill_with_original"]], "unravel.core": [[25, 0, 0, "-", "argparse_utils"], [26, 0, 0, "-", "argparse_utils_rich"], [27, 0, 0, "-", "config"], [28, 0, 0, "-", "img_io"], [29, 0, 0, "-", "img_tools"], [31, 0, 0, "-", "utils"]], "unravel.core.argparse_utils": [[25, 2, 1, "", "SM"], [25, 2, 1, "", "SuppressMetavar"]], "unravel.core.argparse_utils_rich": [[26, 2, 1, "", "SM"], [26, 2, 1, "", "SuppressMetavar"]], "unravel.core.config": [[27, 2, 1, "", "AttrDict"], [27, 2, 1, "", "Config"], [27, 2, 1, "", "Configuration"]], "unravel.core.config.Configuration": [[27, 3, 1, "", "verbose"]], "unravel.core.img_io": [[28, 1, 1, "", "extract_resolution"], [28, 1, 1, "", "load_3D_img"], [28, 1, 1, "", "load_czi"], [28, 1, 1, "", "load_h5"], [28, 1, 1, "", "load_image_metadata_from_txt"], [28, 1, 1, "", "load_nii"], [28, 1, 1, "", "load_nii_orientation"], [28, 1, 1, "", "load_nii_subset"], [28, 1, 1, "", "load_tifs"], [28, 1, 1, "", "load_zarr"], [28, 1, 1, "", "metadata"], [28, 1, 1, "", "resolve_path"], [28, 1, 1, "", "return_3D_img"], [28, 1, 1, "", "save_as_h5"], [28, 1, 1, "", "save_as_nii"], [28, 1, 1, "", "save_as_tifs"], [28, 1, 1, "", "save_as_zarr"], [28, 1, 1, "", "save_metadata_to_file"]], "unravel.core.img_tools": [[29, 1, 1, "", "cluster_IDs"], [29, 1, 1, "", "crop"], [29, 1, 1, "", "find_bounding_box"], [29, 1, 1, "", "pad"], [29, 1, 1, "", "pixel_classification"], [29, 1, 1, "", "process_slice"], [29, 1, 1, "", "reorient_for_raw_to_nii_conv"], [29, 1, 1, "", "reorient_ndarray"], [29, 1, 1, "", "reorient_ndarray2"], [29, 1, 1, "", "resample"], [29, 1, 1, "", "reverse_reorient_for_raw_to_nii_conv"], [29, 1, 1, "", "rolling_ball_subtraction_opencv_parallel"]], "unravel.core.utils": [[31, 2, 1, "", "AverageTimePerIterationColumn"], [31, 2, 1, "", "CustomMofNCompleteColumn"], [31, 2, 1, "", "CustomTimeElapsedColumn"], [31, 2, 1, "", "CustomTimeRemainingColumn"], [31, 1, 1, "", "copy_files"], [31, 1, 1, "", "get_dir_name_from_args"], [31, 1, 1, "", "get_samples"], [31, 1, 1, "", "initialize_progress_bar"], [31, 1, 1, "", "load_config"], [31, 1, 1, "", "load_text_from_file"], [31, 1, 1, "", "print_cmd_and_times"], [31, 1, 1, "", "print_func_name_args_times"]], "unravel.core.utils.AverageTimePerIterationColumn": [[31, 4, 1, "", "render"]], "unravel.core.utils.CustomMofNCompleteColumn": [[31, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeElapsedColumn": [[31, 4, 1, "", "render"]], "unravel.core.utils.CustomTimeRemainingColumn": [[31, 4, 1, "", "render"]], "unravel.image_io": [[32, 0, 0, "-", "h5_to_tifs"], [33, 0, 0, "-", "img_to_npy"], [34, 0, 0, "-", "io_img"], [35, 0, 0, "-", "io_nii"], [36, 0, 0, "-", "metadata"], [37, 0, 0, "-", "nii_hd"], [38, 0, 0, "-", "nii_info"], [39, 0, 0, "-", "nii_to_tifs"], [40, 0, 0, "-", "nii_to_zarr"], [41, 0, 0, "-", "reorient_nii"], [42, 0, 0, "-", "tif_to_tifs"], [44, 0, 0, "-", "zarr_to_nii"]], "unravel.image_io.h5_to_tifs": [[32, 1, 1, "", "find_largest_h5_file"], [32, 1, 1, "", "load_h5"], [32, 1, 1, "", "main"], [32, 1, 1, "", "metadata_from_h5"], [32, 1, 1, "", "parse_args"], [32, 1, 1, "", "save_as_tifs"]], "unravel.image_io.img_to_npy": [[33, 1, 1, "", "main"], [33, 1, 1, "", "parse_args"]], "unravel.image_io.io_img": [[34, 1, 1, "", "main"], [34, 1, 1, "", "parse_args"]], "unravel.image_io.io_nii": [[35, 1, 1, "", "convert_dtype"], [35, 1, 1, "", "main"], [35, 1, 1, "", "parse_args"]], "unravel.image_io.metadata": [[36, 1, 1, "", "get_dims_from_tifs"], [36, 1, 1, "", "main"], [36, 1, 1, "", "parse_args"], [36, 1, 1, "", "print_metadata"]], "unravel.image_io.nii_hd": [[37, 1, 1, "", "main"], [37, 1, 1, "", "parse_args"]], "unravel.image_io.nii_info": [[38, 1, 1, "", "main"], [38, 1, 1, "", "nii_axis_codes"], [38, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_tifs": [[39, 1, 1, "", "main"], [39, 1, 1, "", "nii_to_tifs"], [39, 1, 1, "", "parse_args"]], "unravel.image_io.nii_to_zarr": [[40, 1, 1, "", "main"], [40, 1, 1, "", "nii_to_ndarray"], [40, 1, 1, "", "parse_args"], [40, 1, 1, "", "save_as_zarr"]], "unravel.image_io.reorient_nii": [[41, 1, 1, "", "main"], [41, 1, 1, "", "parse_args"], [41, 1, 1, "", "reorient_nii"], [41, 1, 1, "", "transform_nii_affine"]], "unravel.image_io.tif_to_tifs": [[42, 1, 1, "", "find_largest_tif_file"], [42, 1, 1, "", "load_3D_tif"], [42, 1, 1, "", "main"], [42, 1, 1, "", "metadata_from_3D_tif"], [42, 1, 1, "", "parse_args"], [42, 1, 1, "", "save_as_tifs"]], "unravel.image_io.zarr_to_nii": [[44, 1, 1, "", "define_zarr_to_nii_output"], [44, 1, 1, "", "main"], [44, 1, 1, "", "parse_args"], [44, 1, 1, "", "save_as_nii"], [44, 1, 1, "", "zarr_to_ndarray"]], "unravel.image_tools": [[45, 0, 0, "-", "DoG"], [49, 0, 0, "-", "avg"], [50, 0, 0, "-", "bbox"], [51, 0, 0, "-", "extend"], [52, 0, 0, "-", "max"], [53, 0, 0, "-", "pad"], [54, 0, 0, "-", "rb"], [55, 0, 0, "-", "spatial_averaging"], [57, 0, 0, "-", "transpose_axes"], [58, 0, 0, "-", "unique_intensities"]], "unravel.image_tools.DoG": [[45, 1, 1, "", "difference_of_gaussians"], [45, 1, 1, "", "load_tif"], [45, 1, 1, "", "main"], [45, 1, 1, "", "parse_args"], [45, 1, 1, "", "save_tif"]], "unravel.image_tools.atlas": [[46, 0, 0, "-", "relabel_nii"], [48, 0, 0, "-", "wireframe"]], "unravel.image_tools.atlas.relabel_nii": [[46, 1, 1, "", "main"], [46, 1, 1, "", "parse_args"]], "unravel.image_tools.atlas.wireframe": [[48, 1, 1, "", "generate_wireframe"], [48, 1, 1, "", "main"], [48, 1, 1, "", "parse_args"], [48, 1, 1, "", "process_intensity"]], "unravel.image_tools.avg": [[49, 1, 1, "", "main"], [49, 1, 1, "", "parse_args"]], "unravel.image_tools.bbox": [[50, 1, 1, "", "main"], [50, 1, 1, "", "parse_args"]], "unravel.image_tools.extend": [[51, 1, 1, "", "extend_one_side_3d_array"], [51, 1, 1, "", "main"], [51, 1, 1, "", "parse_args"]], "unravel.image_tools.max": [[52, 1, 1, "", "find_max_intensity"], [52, 1, 1, "", "main"], [52, 1, 1, "", "parse_args"]], "unravel.image_tools.pad": [[53, 1, 1, "", "main"], [53, 1, 1, "", "parse_args"]], "unravel.image_tools.rb": [[54, 1, 1, "", "load_tif"], [54, 1, 1, "", "main"], [54, 1, 1, "", "parse_args"], [54, 1, 1, "", "rolling_ball_subtraction"], [54, 1, 1, "", "save_tif"]], "unravel.image_tools.spatial_averaging": [[55, 1, 1, "", "apply_2D_mean_filter"], [55, 1, 1, "", "main"], [55, 1, 1, "", "parse_args"], [55, 1, 1, "", "spatial_average_2D"], [55, 1, 1, "", "spatial_average_3D"]], "unravel.image_tools.transpose_axes": [[57, 1, 1, "", "main"], [57, 1, 1, "", "parse_args"], [57, 1, 1, "", "transpose_img"]], "unravel.image_tools.unique_intensities": [[58, 1, 1, "", "main"], [58, 1, 1, "", "parse_args"], [58, 1, 1, "", "uniq_intensities"]], "unravel.region_stats": [[59, 0, 0, "-", "rstats"], [60, 0, 0, "-", "rstats_mean_IF"], [61, 0, 0, "-", "rstats_mean_IF_in_segmented_voxels"], [62, 0, 0, "-", "rstats_mean_IF_summary"], [63, 0, 0, "-", "rstats_summary"]], "unravel.region_stats.rstats": [[59, 1, 1, "", "calculate_regional_cell_densities"], [59, 1, 1, "", "calculate_regional_volumes"], [59, 1, 1, "", "count_cells_in_regions"], [59, 1, 1, "", "get_atlas_region_at_coords"], [59, 1, 1, "", "main"], [59, 1, 1, "", "parse_args"]], "unravel.region_stats.rstats_mean_IF": [[60, 1, 1, "", "calculate_mean_intensity"], [60, 1, 1, "", "main"], [60, 1, 1, "", "parse_args"], [60, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_in_segmented_voxels": [[61, 1, 1, "", "calculate_mean_intensity"], [61, 1, 1, "", "main"], [61, 1, 1, "", "parse_args"], [61, 1, 1, "", "write_to_csv"]], "unravel.region_stats.rstats_mean_IF_summary": [[62, 1, 1, "", "filter_region_ids"], [62, 1, 1, "", "get_all_region_ids"], [62, 1, 1, "", "get_max_region_id_from_csvs"], [62, 1, 1, "", "get_region_details"], [62, 1, 1, "", "load_data"], [62, 1, 1, "", "main"], [62, 1, 1, "", "parse_args"], [62, 1, 1, "", "perform_t_tests"], [62, 1, 1, "", "plot_data"], [62, 1, 1, "", "remove_zero_intensity_regions"]], "unravel.region_stats.rstats_summary": [[63, 1, 1, "", "get_region_details"], [63, 1, 1, "", "main"], [63, 1, 1, "", "parse_args"], [63, 1, 1, "", "parse_color_argument"], [63, 1, 1, "", "process_and_plot_data"], [63, 1, 1, "", "summarize_significance"]], "unravel.register": [[65, 0, 0, "-", "affine_initializer"], [66, 0, 0, "-", "reg"], [67, 0, 0, "-", "reg_check"], [68, 0, 0, "-", "reg_check_brain_mask"], [69, 0, 0, "-", "reg_prep"]], "unravel.register.affine_initializer": [[65, 1, 1, "", "affine_initializer_wrapper"], [65, 1, 1, "", "main"], [65, 1, 1, "", "parse_args"], [65, 1, 1, "", "run_with_timeout"]], "unravel.register.reg": [[66, 1, 1, "", "bias_correction"], [66, 1, 1, "", "main"], [66, 1, 1, "", "parse_args"]], "unravel.register.reg_check": [[67, 1, 1, "", "main"], [67, 1, 1, "", "parse_args"]], "unravel.register.reg_check_brain_mask": [[68, 1, 1, "", "main"], [68, 1, 1, "", "parse_args"]], "unravel.register.reg_prep": [[69, 1, 1, "", "main"], [69, 1, 1, "", "parse_args"], [69, 1, 1, "", "reg_prep"]], "unravel.segment": [[71, 0, 0, "-", "brain_mask"], [72, 0, 0, "-", "copy_tifs"], [73, 0, 0, "-", "ilastik_pixel_classification"]], "unravel.segment.brain_mask": [[71, 1, 1, "", "main"], [71, 1, 1, "", "parse_args"]], "unravel.segment.copy_tifs": [[72, 1, 1, "", "copy_specific_slices"], [72, 1, 1, "", "main"], [72, 1, 1, "", "parse_args"]], "unravel.segment.ilastik_pixel_classification": [[73, 1, 1, "", "count_files"], [73, 1, 1, "", "main"], [73, 1, 1, "", "parse_args"], [73, 1, 1, "", "save_labels_as_masks"]], "unravel.unravel_commands": [[76, 1, 1, "", "main"], [76, 1, 1, "", "parse_args"]], "unravel.utilities": [[77, 0, 0, "-", "aggregate_files_from_sample_dirs"], [78, 0, 0, "-", "aggregate_files_w_recursive_search"], [79, 0, 0, "-", "clean_tif_dirs"], [80, 0, 0, "-", "prepend_conditions"], [81, 0, 0, "-", "rename"], [83, 0, 0, "-", "toggle_samples"]], "unravel.utilities.aggregate_files_from_sample_dirs": [[77, 1, 1, "", "aggregate_files_from_sample_dirs"], [77, 1, 1, "", "main"], [77, 1, 1, "", "parse_args"]], "unravel.utilities.aggregate_files_w_recursive_search": [[78, 1, 1, "", "find_and_copy_files"], [78, 1, 1, "", "main"], [78, 1, 1, "", "parse_args"]], "unravel.utilities.clean_tif_dirs": [[79, 1, 1, "", "clean_tifs_dir"], [79, 1, 1, "", "main"], [79, 1, 1, "", "parse_args"]], "unravel.utilities.prepend_conditions": [[80, 1, 1, "", "main"], [80, 1, 1, "", "parse_args"], [80, 1, 1, "", "prepend_conditions"], [80, 1, 1, "", "rename_items"]], "unravel.utilities.rename": [[81, 1, 1, "", "main"], [81, 1, 1, "", "parse_args"], [81, 1, 1, "", "rename_files"]], "unravel.utilities.toggle_samples": [[83, 1, 1, "", "main"], [83, 1, 1, "", "parse_args"]], "unravel.voxel_stats": [[84, 0, 0, "-", "apply_mask"], [85, 0, 0, "-", "hemi_to_LR_avg"], [86, 0, 0, "-", "mirror"], [91, 0, 0, "-", "vstats"], [92, 0, 0, "-", "vstats_prep"], [93, 0, 0, "-", "whole_to_LR_avg"], [94, 0, 0, "-", "z_score"]], "unravel.voxel_stats.apply_mask": [[84, 1, 1, "", "apply_mask_to_ndarray"], [84, 1, 1, "", "dilate_mask"], [84, 1, 1, "", "load_mask"], [84, 1, 1, "", "main"], [84, 1, 1, "", "mean_intensity_in_brain"], [84, 1, 1, "", "parse_args"], [84, 1, 1, "", "scale_bool_to_full_res"]], "unravel.voxel_stats.hemi_to_LR_avg": [[85, 1, 1, "", "hemi_to_LR_avg"], [85, 1, 1, "", "main"], [85, 1, 1, "", "parse_args"]], "unravel.voxel_stats.mirror": [[86, 1, 1, "", "main"], [86, 1, 1, "", "mirror"], [86, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other": [[87, 0, 0, "-", "IF_outliers"], [88, 0, 0, "-", "r_to_p"]], "unravel.voxel_stats.other.IF_outliers": [[87, 1, 1, "", "detect_outliers"], [87, 1, 1, "", "main"], [87, 1, 1, "", "mean_intensity_within_mask"], [87, 1, 1, "", "parse_args"]], "unravel.voxel_stats.other.r_to_p": [[88, 1, 1, "", "main"], [88, 1, 1, "", "parse_args"], [88, 1, 1, "", "r_to_z"], [88, 1, 1, "", "z_to_p"]], "unravel.voxel_stats.vstats": [[91, 1, 1, "", "calculate_fragments"], [91, 1, 1, "", "check_fdr_command"], [91, 1, 1, "", "create_design_ttest2"], [91, 1, 1, "", "get_groups_info"], [91, 1, 1, "", "main"], [91, 1, 1, "", "parse_args"], [91, 1, 1, "", "run_randomise_parallel"]], "unravel.voxel_stats.vstats_prep": [[92, 1, 1, "", "main"], [92, 1, 1, "", "parse_args"]], "unravel.voxel_stats.whole_to_LR_avg": [[93, 1, 1, "", "main"], [93, 1, 1, "", "parse_args"], [93, 1, 1, "", "whole_to_LR_avg"]], "unravel.voxel_stats.z_score": [[94, 1, 1, "", "main"], [94, 1, 1, "", "parse_args"], [94, 1, 1, "", "z_score"]], "unravel.warp": [[95, 0, 0, "-", "to_atlas"], [96, 0, 0, "-", "to_native"], [98, 0, 0, "-", "warp"]], "unravel.warp.to_atlas": [[95, 1, 1, "", "copy_nii_header"], [95, 1, 1, "", "main"], [95, 1, 1, "", "parse_args"], [95, 1, 1, "", "to_atlas"]], "unravel.warp.to_native": [[96, 1, 1, "", "calculate_resampled_padded_dimensions"], [96, 1, 1, "", "main"], [96, 1, 1, "", "parse_args"], [96, 1, 1, "", "scale_to_full_res"], [96, 1, 1, "", "to_native"]], "unravel.warp.warp": [[98, 1, 1, "", "main"], [98, 1, 1, "", "parse_args"], [98, 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, 4, 5, 7, 8, 9, 23, 24, 26, 29, 41, 51, 59, 61, 63, 64, 66, 69, 72, 75, 76, 78, 79, 88, 91, 94], "0": [0, 7, 8, 9, 11, 16, 28, 29, 35, 41, 45, 48, 54, 58, 62, 66, 75, 85, 86, 90, 93, 96], "000": 0, "0000": 0, "0005": 0, "0010": 72, "005": 0, "0050": 0, "0060": 72, "01": 0, "0100": [0, 72], "0110": 72, "05": [0, 11], "0500": [0, 72], "1": [0, 2, 7, 8, 9, 11, 15, 18, 20, 23, 29, 35, 41, 45, 48, 54, 58, 71, 75, 85, 90, 93], "10": [0, 22, 65], "100": [0, 51, 56, 75], "1000": [0, 28, 72], "10000": [0, 63], "11": 2, "15": [29, 53, 96], "18000": 91, "1st": [0, 41, 69, 92, 95], "2": [0, 2, 7, 8, 9, 11, 15, 18, 20, 25, 26, 41, 45, 54, 55, 66, 85, 86, 93], "20": 0, "2020": 0, "24": [25, 26], "25": [15, 22, 88], "255": 35, "26": 55, "27af2": 63, "2d": [45, 55], "2d67c8": 63, "2nd": [0, 41], "2x2": 0, "3": [2, 15, 18, 22, 29, 35, 36, 41, 45, 55, 66, 73, 87, 92, 95], "300": 91, "33063286": 0, "3d": [0, 1, 5, 28, 29, 33, 34, 42, 45, 48, 51, 54, 55, 58, 61, 69, 95], "3d_brain": 4, "3post3": 2, "3rd": [0, 41], "3x3": 55, "3x3x3": [0, 55], "4": [0, 54, 66, 92], "400": 0, "488": 42, "4d": 0, "5": [7, 8, 9, 45], "50": 96, "5232": [36, 92, 95], "6": [5, 36, 92, 95], "6e10_rb20": 84, "6e10_rb20_wo_artifact": 84, "6e10_seg_ilastik_2": 84, "7": 0, "7f25d3": 63, "8": [7, 8, 9, 29, 43, 55, 75], "9": 12, "A": [0, 7, 8, 9, 13, 20, 25, 26, 27, 31, 41, 48, 66], "As": 23, "For": [0, 2, 4, 5, 11, 13, 14, 15, 22, 41, 48, 73, 76, 80, 83, 91], "IF": [0, 13, 61, 62], "If": [1, 2, 4, 5, 7, 8, 9, 20, 28, 29, 31, 32, 41, 42, 62, 76, 80, 94, 98], "In": 0, "It": [0, 14, 27], "Its": 0, "One": 76, "Or": 0, "The": [0, 1, 3, 4, 7, 8, 9, 11, 14, 20, 23, 25, 26, 27, 28, 41, 45, 55, 62, 66, 80, 83, 86], "Then": 4, "These": [0, 93], "To": [0, 54, 63, 73], "With": [0, 35], "_": [0, 7, 8, 9, 18, 20, 83], "_6e10_seg_ilastik_2": 84, "__call__": [25, 26], "__getattr__": 27, "__init__": [25, 26, 27], "__main__": 31, "__name__": 31, "_cfos_rb4_atlas_spac": [0, 94], "_cfos_rb4_atlas_space_z": 0, "_cluster_validation_info": 13, "_data": 5, "_densiti": 18, "_density_data": [18, 20], "_density_data_lh": [18, 20], "_density_data_rh": [18, 20], "_description_": [29, 58], "_f_gt_m": 9, "_f_gt_m_valid_clust": 9, "_fill_text": [25, 26], "_format_action_invoc": [25, 26], "_fos_rb4_gubra_space_z_lravg": 77, "_gt_": 11, "_hedges_g_": [7, 8, 9], "_iba1_seg_ilastik_2": 84, "_lh": [14, 18, 20], "_lt_": 11, "_ochann_rb4_gubra_spac": 92, "_other": 0, "_p_value_map": 88, "_p_value_map_fdr_correct": 88, "_rev_cluster_index": [0, 5], "_rev_cluster_index_": 0, "_rh": [14, 18, 20], "_seg_dir": [5, 61], "_seg_dir_1": 0, "_seg_dir_regional_mean_if_in_seg": 61, "_strip_com": 27, "_sunburst": 15, "_type_": 58, "_v_": 11, "_valid_clust": [4, 7, 8], "_valid_clusters_stat": [4, 20], "_valid_clusters_t": 16, "_vox_p_": 0, "_z": 94, "_z_score_map": 88, "a1": [0, 11], "a2": [0, 11], "aba": [3, 22], "aba_seg": 61, "abbevi": 4, "abbr": [0, 62, 63], "abbrevi": [16, 22], "abcasei": 1, "about": 0, "absolut": [0, 31], "access": [0, 27], "accident": 0, "accod": 11, "accordingli": 35, "account": 0, "accur": 0, "across": [1, 22, 26, 62], "action": [17, 25, 26], "activ": [2, 75, 82], "actual": 0, "ad": [0, 31, 45, 76], "adapt": [0, 1], "add": [1, 2, 53, 54, 62, 63], "add_argu": [25, 26], "add_prefix": 77, "addit": 27, "adj_p_val_img_path": 11, "adjust": [0, 11, 23, 86], "adjusted_pval_output_path": 11, "administr": 2, "affect": 0, "affin": [28, 38, 41], "affine_initi": [1, 70, 75], "affine_initializer_wrapp": [65, 70, 75], "after": [1, 2, 19, 20, 24, 29, 55, 62, 65, 75, 76, 86], "again": [0, 76], "against": [7, 8, 9, 20], "aggreg": [0, 4, 17, 20, 23, 62, 77, 92], "aggregate_files_from_sample_dir": [0, 1, 75, 82], "aggregate_files_w_recursive_search": [1, 75, 82], "algorithm": 54, "alia": [0, 2, 76], "alias": 76, "align": [0, 41], "all": [1, 4, 5, 7, 8, 9, 20, 22, 23, 26, 29, 31, 56, 59, 62, 75, 82], "allen": 1, "allow": [0, 27, 65, 84], "along": 86, "alphabet": 0, "alreadi": [0, 4, 64, 75, 82], "also": [0, 41, 54, 59, 65, 85, 93], "alt": 62, "altern": [0, 20], "ama": 94, "amyloid": 0, "an": [1, 7, 8, 9, 20, 25, 26, 28, 29, 31, 32, 33, 35, 36, 38, 39, 40, 44, 45, 48, 50, 52, 53, 54, 55, 59, 66, 73, 75, 76, 84, 86, 90, 92, 93, 96, 98], "analys": 91, "analyz": [0, 4, 94], "ani": [1, 7, 8, 9, 18, 20], "anoth": [0, 20, 45, 76], "anova": [0, 11], "anterior": [0, 41, 66], "antspi": [1, 95, 98], "antspy_init_tform": 65, "app": 22, "append": 0, "appli": [0, 2, 3, 5, 16, 19, 41, 45, 55, 85, 93, 98], "applic": [27, 84], "apply_2d_mean_filt": [55, 56, 75], "apply_mask": [1, 75, 90], "apply_mask_to_ndarrai": [75, 84, 90], "apply_rgb_to_cel": [16, 24, 75], "approach": 35, "apt": 2, "ar": [0, 1, 2, 4, 11, 20, 23, 31, 41, 45, 48, 55, 56, 75, 76, 86], "arctanh": 88, "arg": [5, 6, 19, 25, 26, 31, 48, 61, 63, 84], "argpars": [25, 26, 61], "argparse_util": [1, 30, 75], "argparse_utils_rich": [1, 30, 75], "argument": [0, 4, 25, 26, 31, 36, 61, 69, 79], "argumentpars": [25, 26], "around": [5, 45], "arr": 55, "arrai": [0, 28, 29, 48, 55], "artifact": [0, 75, 90], "associ": 27, "assum": [29, 32, 79], "asterisk": [4, 11, 15, 16, 17, 18, 20, 22, 23, 32, 42, 49, 60, 61, 62, 67, 69, 71, 73, 78, 86, 87, 92, 95], "atla": [1, 2, 3, 5, 15, 22, 29, 56, 60, 61, 64, 66, 75, 86, 90, 92, 95, 96, 97], "atlas": [1, 65, 86], "atlas_img": [59, 98], "atlas_img_w": 48, "atlas_img_w_id": 48, "atlas_in_tissue_spac": [0, 67, 98], "atlas_mask": [85, 93, 94], "atlas_ndarrai": 48, "atlas_relabel": [0, 46], "atlas_res_in_um": [15, 22], "atlas_spac": [0, 77, 92, 94], "atlas_split": [0, 59], "atlas_wirefram": [0, 48], "attempt": [18, 20], "attrdict": [27, 30, 75], "attribut": 27, "austen": [0, 1], "autofl": [0, 32, 66], "autofl_": [0, 67, 69, 71], "autofl_50um": 53, "autofl_50um_brain_mask": 94, "autofl_50um_masked_fixed_reg_input": [65, 98], "autofl_50um_tif": 72, "autofluo": [0, 69], "autofluo_50_mask": 68, "autofluo_50um": 68, "autofluoresc": 0, "autom": 1, "automat": 85, "avail": [0, 64, 75, 76, 91], "averag": [0, 11, 31, 45, 49, 55, 66, 85, 86, 93, 94], "averagetimeperiterationcolumn": [30, 31, 75], "avg": [0, 1, 56, 75], "avg_img1": 11, "avg_img2": 11, "avoid": 76, "ax": [0, 28, 38, 41, 57, 66], "axi": [41, 66, 85, 86, 93], "axis_1": 57, "axis_2": 57, "axis_3": 57, "axis_ord": [32, 42], "b": [2, 6, 13, 73, 76, 91], "back": [1, 51], "background": [29, 45, 48, 54, 92], "backtick": 0, "ball": [0, 29, 45, 54], "bar": [0, 31], "barbosa": 1, "base": [0, 1, 7, 8, 9, 11, 14, 20, 23, 25, 26, 27, 28, 29, 31, 46, 59, 80, 81, 84, 91], "base_path": [14, 17, 80], "bash": 2, "bashrc": [0, 1, 76], "basic": 0, "bbox": [1, 6, 29, 56, 75], "bc": [0, 66], "beauti": 26, "becaus": 4, "becom": 35, "been": [0, 23], "befor": [0, 18, 19, 20], "being": [0, 11, 75, 76, 82], "below": 0, "beta": 0, "better": 71, "between": [0, 7, 8, 9, 13, 62], "bheifet": 1, "bia": 66, "bias_correct": [66, 70, 75], "bilater": [0, 3, 11, 14, 18, 20], "bilinear": 29, "bin": [0, 2, 76], "binar": [0, 3, 35], "binari": [35, 48, 84], "binary_mask": 48, "bit": [43, 75], "blue": 0, "blur": 45, "bool": [28, 29, 31, 41, 58, 66, 79, 98], "boolean": [7, 8, 9, 20, 27], "bori": 1, "both": [0, 25, 26, 31, 75, 81, 90], "botleneck": 0, "bottom": [0, 51], "bound": [0, 5, 6, 29, 50], "boundari": 48, "bounding_box": 50, "box": [0, 5, 6, 29, 50], "bracket": 0, "brain": [1, 11, 19, 48, 60, 61, 66, 71, 75, 90, 94], "brain_mask": [0, 1, 74, 75], "brain_mask_ilp": 0, "brain_mask_tif": 69, "brain_model": [1, 24, 75], "bright": 0, "browser": 1, "bspline": 95, "build": 2, "button": 0, "bz2": 2, "c": [0, 2, 4, 7, 8, 9, 13, 59, 76, 83], "c1": [0, 7, 8, 9], "c2": [0, 7, 8, 9], "c3": 0, "calcul": [0, 7, 8, 9, 22, 59, 60, 61, 91], "calculate_frag": [75, 90, 91], "calculate_mean_intens": [60, 61, 64, 75], "calculate_regional_cell_dens": [59, 64, 75], "calculate_regional_volum": [22, 24, 59, 64, 75], "calculate_resampled_padded_dimens": [75, 96, 97], "calculate_top_region": [23, 24, 75], "call": 76, "callabl": 55, "camel": 0, "can": [2, 23, 27, 31, 36, 71, 73, 76, 80, 81, 85, 93], "can_collaps": [23, 24, 75], "captur": 4, "case": [0, 20], "casei": 1, "cat": 0, "categori": 22, "cc3d": 1, "ccfv3": [0, 41], "cd": [0, 60, 76], "cell": [0, 1, 5, 13, 16, 17, 18, 20, 59, 63], "cell_count": [5, 18, 20], "cell_dens": [5, 18, 20], "cell_density_data": 0, "cell_des": 59, "cellular": 1, "center": [1, 86], "central": 4, "certain": [75, 82], "cfo": [0, 73], "cfos_rb4_atlas_spac": 0, "cfos_seg": 73, "cfos_seg_ilastik_1": [0, 5], "chang": [0, 2, 76, 81], "channel": 28, "chart": 0, "check": [0, 7, 8, 9, 20, 31, 56, 67, 75, 76, 87, 91], "check_fdr_command": [75, 90, 91], "checkout": 2, "choos": 0, "ci": [7, 8, 9, 15], "class": [25, 26, 27, 28, 31], "classif": [0, 29, 71, 73], "clean": [1, 79], "clean_tif_dir": [1, 75, 82], "clean_tifs_dir": [75, 79, 82], "cli": [75, 97], "click": 0, "clone": [2, 76], "close": 0, "cluster": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 29, 56, 63, 75, 90], "cluster_": 15, "cluster_1": [7, 8, 9], "cluster_2": [7, 8, 9], "cluster_bbox": [5, 24, 75], "cluster_bbox_parallel": [5, 24, 75], "cluster_bbox_result": 5, "cluster_brain_model": [0, 3, 4], "cluster_column": 9, "cluster_crop": [0, 6], "cluster_data": 5, "cluster_fdr": [1, 11, 13, 19, 91], "cluster_fdr_rang": [1, 12, 91], "cluster_find_incongru": 13, "cluster_find_incongruent_clust": 0, "cluster_group_data": [0, 4, 14], "cluster_id": [5, 13, 18, 20, 29, 30, 75], "cluster_idx": 17, "cluster_index": [0, 4, 11, 15, 22, 23, 24, 75], "cluster_index_dir": 5, "cluster_index_img": 11, "cluster_index_nii": 11, "cluster_info": 23, "cluster_legend": [0, 4, 16], "cluster_list": [7, 8, 9], "cluster_mirror_indic": [1, 11, 19], "cluster_org_data": [0, 14, 17, 18, 24, 75], "cluster_pr": [0, 4, 18], "cluster_stat": [0, 1, 75], "cluster_summari": [1, 5, 21, 24, 75], "cluster_sunburst": [0, 22], "cluster_t": [0, 4, 16, 23], "cluster_valid": [1, 11, 14, 17, 19, 20, 22, 24, 75], "cluster_valid_results_1": 14, "cluster_valid_results_1_lh": 14, "cluster_valid_results_1_rh": 14, "cluster_valid_results_2": 14, "cluster_valid_results_2_lh": 14, "cluster_valid_results_2_rh": 14, "cluster_validation_data_df": [20, 24, 75], "cluster_validation_dir": 14, "cluster_validation_info": 21, "cluster_validation_summari": [18, 21], "cluster_validation_summary_t": 4, "cluster_validation_summary_tukei": 4, "cluster_volum": [18, 20], "cluster_volume_in_cubic_mm": 5, "clusters_path": 17, "code": [22, 29, 38, 41, 63, 66], "codebas": 1, "col_num": 16, "col_w_label": 16, "cold": 1, "collabor": 1, "collaps": 23, "collapse_hierarchi": [23, 24, 75], "color": [3, 22], "color_arg": 63, "column": [0, 7, 8, 9, 13, 16, 18, 20, 22, 23, 31, 41, 62, 63, 80], "com": 2, "combin": 23, "commad": 2, "command": [1, 2, 4, 5, 14, 18, 19, 20, 23, 25, 31, 32, 36, 42, 45, 61, 65, 69, 71, 75, 79, 80, 83, 91], "command_log": 0, "comment": 27, "common": [1, 75], "compact": 31, "compar": [9, 20], "comparison": [0, 4, 7, 8, 9, 13, 20, 91], "complet": [0, 31], "compon": 5, "compris": 22, "comput": [0, 2], "concaten": 21, "condit": [0, 4, 7, 8, 9, 18, 20, 59, 64, 73, 75, 80, 82, 84], "condition1_sample01_": [18, 20], "condition1_sample02_": [18, 20], "condition2_sample03_": [18, 20], "condition2_sample04_": [18, 20], "condition_1": [7, 8, 9], "condition_2": [7, 8, 9], "condition_column": [7, 8, 9, 20], "condition_prefix": 20, "condition_selector": [7, 8, 9, 10, 20, 24, 75], "config": [0, 1, 4, 30, 31, 75], "config_fil": 27, "config_path": 31, "configpars": 27, "configur": [2, 26, 27, 30, 31, 75, 76], "confirm": 2, "conflict": 76, "connect": [5, 59], "consid": [0, 20, 94], "consol": 26, "consolid": 14, "contain": [7, 8, 9, 14, 20, 22, 28, 29, 31, 48, 61, 63, 72, 79, 80, 98], "content": [0, 31, 86], "context": 0, "context1": 0, "context2": 0, "contrast": [0, 11, 91], "contrast_vox_p_tstat1_q": 0, "control": [0, 4, 27, 62, 80, 83], "control_": 0, "control_avg": 0, "control_sample01_cell_density_data": 0, "control_sample01_cfos_rb4_atlas_space_z": 62, "control_sample01_fil": 80, "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": 27, "convent": [0, 14, 18, 20, 29], "convers": [29, 35, 69], "convert": [0, 13, 33, 35, 39, 40, 44, 46, 88], "convert_dtyp": [35, 43, 75], "coordin": [28, 41, 59], "copi": [0, 4, 17, 31, 67, 68, 72, 75, 78, 82, 86, 95], "copy_fil": [30, 31, 75], "copy_nii_head": [75, 95, 97], "copy_specific_slic": [72, 74, 75], "copy_stats_fil": [17, 24, 75], "copy_tif": [0, 1, 74, 75], "core": [1, 75], "corr_factor": [7, 8, 9], "correct": [1, 7, 8, 9, 11, 12, 17, 66, 76, 91], "correl": 88, "correlation_map": 88, "correspond": 14, "could": 45, "count": [0, 5, 23, 59, 73], "count_cel": [5, 24, 75], "count_cells_in_region": [59, 64, 75], "count_fil": [73, 74, 75], "counterpart": 85, "cp": [17, 21, 24, 75], "creat": [0, 2, 7, 8, 9, 14, 15, 20, 23, 28, 76, 91], "create_design_ttest2": [75, 90, 91], "criteria": 23, "criterion": 23, "crop": [0, 1, 5, 24, 29, 30, 75], "crop_outer_spac": [5, 24, 75], "csv": [1, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 17, 18, 20, 21, 22, 46, 59, 60, 61, 62, 63, 80, 83], "csv_file": [18, 20, 80], "csv_path": 62, "csv_pattern": 21, "ctrl": 0, "cubic": 55, "curl": 2, "current": [0, 4, 5, 20, 32, 42, 55, 63, 67, 68, 80, 86], "custom": [22, 25, 26, 64, 75], "custom_atla": 62, "custommofncompletecolumn": [30, 31, 75], "customtimeelapsedcolumn": [30, 31, 75], "customtimeremainingcolumn": [30, 31, 75], "cvd": [0, 4, 17], "cwd": [32, 42], "czi": [0, 28, 33, 34, 36, 50, 55, 61, 69, 73, 92, 95], "czi_path": 28, "d": [0, 35, 36, 55, 63, 69, 76, 78, 79], "d32525": 63, "d_type": 40, "dan": 0, "daniel": 1, "danrij": [1, 2], "dark": 31, "data": [1, 4, 7, 8, 9, 11, 15, 17, 18, 20, 22, 28, 29, 35, 38, 41, 55, 60, 61, 84, 86], "data_col": 20, "data_col_pool": 20, "data_column_nam": 18, "data_df": 20, "data_typ": [11, 15, 28, 35], "databas": 27, "database_config": 27, "datafram": [7, 8, 9, 16, 20, 23, 62, 63], "dataset": [1, 32], "dbarbosa": 1, "decor": 31, "decreas": 13, "deep_avg": 0, "deeper": 23, "default": [28, 29, 31, 32, 41, 42, 55, 58, 61, 81, 84, 86, 95, 98], "defin": [1, 11, 25, 26, 27, 28], "define_zarr_to_nii_output": [43, 44, 75], "delet": [0, 4], "densens": 63, "densiti": [0, 1, 5, 7, 8, 9, 13, 17, 20, 59], "density_col": 20, "density_in_clust": [5, 24, 75], "density_in_cluster_parallel": [5, 24, 75], "density_typ": 17, "depend": [2, 55], "depth": [22, 23], "depth_": 22, "depth_col": 23, "descend": 23, "describ": 0, "descript": [0, 1, 25, 26, 75], "design": [0, 25, 26, 91], "design_fts_path": 91, "desir": [0, 28, 95], "desired_axis_ord": [28, 32, 42], "dest": [17, 25, 26], "dest_dir": 78, "dest_path": 17, "destin": [17, 78], "detail": [0, 2, 31], "detect_outli": [87, 89, 90], "determin": [0, 23, 35, 41, 66, 76], "dev": 2, "deviat": [45, 94], "devnul": 65, "df": [7, 8, 9, 13, 20, 23, 62, 63], "df_collaps": 23, "df_origin": 23, "df_sort": 23, "df_w_rgb": 16, "di": 84, "diagnos": 76, "diagon": 41, "dict": [22, 27], "dictionari": [22, 27], "differ": [0, 13, 20, 45], "difference_of_gaussian": [45, 56, 75], "diffus": 0, "dilat": [48, 84], "dilate_mask": [75, 84, 90], "dimens": [28, 36, 55, 84, 96], "dir": [1, 4, 5, 18, 20, 23, 31, 36, 59, 62, 67, 68, 69, 71, 74, 75, 77, 79, 81, 82], "dir_nam": [0, 4, 80, 83], "direct": [0, 11, 13, 20, 41, 66, 84], "directioanl": 0, "directli": [24, 75], "directori": [0, 2, 4, 11, 14, 15, 16, 17, 20, 28, 31, 32, 36, 42, 63, 67, 68, 69, 71, 72, 73, 75, 77, 79, 80, 82, 92, 95], "dirnam": 0, "displai": [25, 26], "distribut": 2, "distrubut": 0, "do": [0, 54, 63], "doc": 0, "document": [0, 2, 76], "doe": [0, 1, 13, 20, 76], "dog": [1, 56, 75], "don": [28, 63], "done": 0, "doubl": [0, 63], "download": 2, "drag": 0, "draw": 0, "drive": 2, "drop": 0, "drug": 0, "drug_sample01_atlas_space_z": 0, "dry_run": 81, "dsi": 0, "dsi_studio": 3, "dtype": [35, 84, 95], "dunnett": 63, "durat": 31, "dure": 0, "dynam": 23, "e": [0, 2, 4, 5, 7, 8, 9, 11, 12, 17, 20, 21, 25, 26, 36, 41, 45, 46, 51, 61, 62, 67, 68, 69, 73, 74, 75, 76, 77, 79, 83, 90, 92, 95, 98], "each": [0, 4, 5, 7, 8, 9, 11, 14, 20, 22, 23, 31, 36, 55, 56, 59, 60, 61, 62, 63, 67, 68, 75], "earli": 1, "earliest": 23, "easi": 0, "easier": 0, "echo": 2, "edg": [45, 55], "edit": [0, 1], "edu": [1, 2], "effect": [0, 7, 8, 9, 11, 20], "effect_s": [0, 1, 24, 75], "effect_sizes_by_sex__absolut": [10, 24, 75], "effect_sizes_by_sex__rel": [10, 24, 75], "effect_sizes_sex_ab": [0, 8], "effect_sizes_sex_rel": [0, 9], "either": [28, 32, 41, 42], "elaps": 31, "elapsed_when_finish": 31, "element": 0, "els": 0, "empti": [0, 25, 26], "enabl": 79, "encount": 76, "end": 31, "enhanc": [25, 26, 31], "enough": [0, 45], "ensur": [0, 23, 45], "enter": [0, 8, 9], "environ": [2, 76], "epilog": [25, 26], "error": [7, 8, 9, 20, 65], "essenti": 2, "establish": 23, "etc": [1, 2, 11, 20, 98], "ev": 0, "ev1": 0, "ev2": 0, "ev3": 0, "ev4": 0, "eval": 2, "everi": 35, "exact": [7, 8, 9, 20], "exactli": [7, 8, 9, 20], "exampl": [1, 2, 13, 14, 15, 18, 20, 22, 25, 26, 27, 31, 41, 63, 69, 76, 80, 92, 95], "exclud": [0, 73, 75, 90], "exec": [2, 4], "execut": [31, 76], "exist": 28, "exp": [1, 4, 69, 71, 74, 75], "exp1": 31, "exp2": 31, "exp_dir": 0, "exp_dir_path": 31, "exp_path": 36, "expect": [20, 76], "expected_higher_mean_group": 13, "expected_lower_mean_group": 13, "experi": [1, 5, 17, 31, 36, 61, 67, 68, 69, 71, 79, 92], "explicit": 31, "explor": 1, "export": 2, "extend": [0, 1, 27, 56, 75], "extend_one_side_3d_arrai": [51, 56, 75], "extens": [51, 55, 79], "extern": 0, "extra": 0, "extract": [0, 28, 43, 75], "extract_resolut": [28, 30, 75], "extract_unique_regions_from_fil": [16, 24, 75], "extrem": 0, "ey": 0, "f": [0, 4, 8, 9, 62, 65, 80, 98], "f1": 0, "f2": 0, "f3": 0, "face": 0, "factor": 66, "fals": [22, 23, 27, 28, 29, 31, 32, 41, 42, 58, 62, 66, 77, 81, 96, 98], "faster": [0, 64, 75], "fdr": [0, 1, 12, 24, 75, 88, 91], "fdr_path": 11, "fdr_rang": [0, 1, 24, 75], "featur": [0, 1, 45, 54, 73], "fiber": 0, "field": 66, "file": [0, 2, 4, 5, 14, 16, 17, 18, 19, 20, 22, 27, 28, 29, 31, 32, 33, 36, 41, 42, 45, 48, 50, 52, 54, 59, 60, 61, 62, 72, 73, 75, 76, 78, 79, 80, 82, 83, 93, 98], "file_path": [16, 19, 28, 31, 52], "filenam": [0, 31, 80, 81], "fill": 0, "fill_na_with_last_known": [23, 24, 75], "filter": [0, 55, 62], "filter_datafram": [7, 8, 9, 10, 24], "filter_func": 55, "filter_region_id": [62, 64, 75], "final": 0, "find": [0, 4, 13, 21, 29, 32, 42, 48, 52], "find_and_copy_fil": [75, 78, 82], "find_bounding_box": [29, 30, 75], "find_incongruent_clust": [1, 24, 75], "find_largest_h5_fil": [32, 43, 75], "find_largest_tif_fil": [42, 43, 75], "find_matching_directori": [17, 24, 75], "find_max_intens": [52, 56, 75], "first": [4, 18, 20, 32, 41, 45, 62], "fisher": 88, "fix": [0, 35, 76, 95], "fixed_imag": 65, "fixed_image_path": 65, "fixed_img_path": 98, "fixed_reg_in": [95, 96], "fixed_scal": 35, "fixed_scale_rang": 35, "flag": [0, 22, 27], "flank": 63, "flip": [0, 86], "float": [11, 12, 28, 35], "float32": [28, 35, 94], "float64": 35, "flourish": 22, "fluoresc": 1, "fo": [0, 84], "focu": 25, "folder": [1, 14, 36, 61, 69, 73, 79, 80, 98], "follow": [0, 2, 4, 14, 76, 80, 83], "foreground": 0, "form": 0, "form_cod": 41, "format": [0, 4, 12, 25, 26, 28, 83], "formatter_class": [25, 26], "forward": [75, 97], "fos_rb4_gubra_space_z_lravg": 77, "fos_seg_ilastik": 84, "fos_seg_ilastik_2": 84, "fos_wo_halo": 84, "found": [7, 8, 9, 20, 28, 31], "fragment": 91, "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 83, 85, 86, 90, 91, 92, 93, 94, 95, 96, 98], "front": 51, "fsl": [0, 1, 2, 91], "fslconf": 2, "fsldir": 2, "fsley": 0, "fsleyes_lut": 0, "fslpy": 1, "fstat": 0, "fstat1": 0, "fstat2": 0, "fstat3": 0, "full": [0, 28, 31, 32, 42, 61, 69, 74, 75, 84, 96], "full_res_dim": [84, 96], "full_res_img": [0, 36], "func": 31, "function": [0, 7, 8, 9, 20, 29, 30, 31, 55, 75], "fund": 1, "fuse": 0, "futur": [2, 45], "g": [0, 2, 4, 7, 8, 9, 11, 12, 13, 20, 21, 41, 45, 46, 62, 73, 75, 90, 95, 98], "g1": 45, "g2": 45, "gap": 0, "gaussian": [0, 45], "gener": [0, 11, 15, 22, 48, 62], "generate_summary_t": [18, 24, 75], "generate_sunburst": [15, 24, 75], "generate_wirefram": [47, 48, 56], "get": [0, 2, 5, 29, 31, 34, 38, 41, 59, 87], "get_all_region_id": [62, 64, 75], "get_atlas_region_at_coord": [59, 64, 75], "get_dims_from_tif": [36, 43, 75], "get_dir_name_from_arg": [30, 31, 75], "get_fill_color": [23, 24, 75], "get_groups_info": [75, 90, 91], "get_max_region_id_from_csv": [62, 64, 75], "get_region_detail": [62, 63, 64, 75], "get_sampl": [30, 31, 75], "get_top_regions_and_percent_vol": [23, 24, 75], "git": 2, "github": [1, 2, 73, 76, 91], "given": [11, 15, 27, 31, 48, 59, 84], "glm": 0, "glob": [0, 28, 36, 69, 78, 92, 95], "global": 27, "go": 0, "googl": [0, 2], "gov": 0, "gradient": 0, "greater": [20, 58, 84], "green": 31, "gregori": 1, "group": [0, 4, 7, 8, 9, 11, 13, 20, 23, 62, 63, 91], "group1": [0, 4, 11, 20, 62, 63], "group1_avg": 11, "group1_siz": 91, "group2": [0, 4, 11, 20, 62, 63], "group2_avg": 11, "group2_siz": 91, "group3": [20, 62], "group4": 20, "group_1": 62, "group_2": 62, "group_3": 62, "group_bilateral_data": [1, 24, 75], "group_column": 63, "group_hemisphere_data": [14, 24, 75], "groupa": 13, "groupb": 13, "gubra": [1, 65, 86], "gubra_ano_25um_bin": 0, "gubra_ano_combined_25um": 0, "gubra_ano_split_25um": [0, 3], "gubra_mask_25um_wo_ventricles_root_fibers_lh": 0, "gubra_mask_25um_wo_ventricles_root_fibers_rh": 0, "gubra_template_25um": [0, 65], "gui": 0, "guid": [1, 2, 73, 91], "guidanc": 1, "gz": [0, 3, 5, 6, 11, 12, 15, 19, 20, 22, 28, 29, 34, 35, 36, 37, 38, 39, 40, 41, 44, 46, 48, 49, 50, 52, 53, 55, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 77, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "h": [0, 2, 76], "h5": [0, 28, 32, 34, 36, 55, 69, 92, 95], "h5_to_tif": [1, 43, 75], "ha": [0, 13, 18, 20, 23, 32, 41, 62, 76], "handl": [0, 7, 8, 9, 20, 25, 26, 28, 31], "has_hemispher": 20, "have": [0, 1, 4, 11, 45, 76, 80, 83], "hdf5": [28, 32], "hdf5_path": [28, 32], "header": [0, 37, 95], "headless": 0, "hedg": [7, 8, 9], "hedges_g": [7, 8, 10, 24], "heifet": [0, 1, 2, 73, 76, 91], "help": [1, 2, 13, 25, 26, 45, 73, 76], "helper": [30, 75], "helpformatt": 25, "hemi": [0, 63], "hemi_to_lr_avg": [0, 1, 75, 90], "hemispher": [0, 11, 14, 20, 85, 94], "here": 0, "hex": 63, "hg": [4, 20], "hidden": [0, 31], "hide": 0, "hierarchi": [22, 24, 75], "higher": 0, "higher_group": 4, "higher_mean_group": [13, 20], "highest": 32, "highlight": 45, "histori": 0, "hold": 27, "home": [0, 2], "hot": 1, "how": 91, "hsd": 20, "html": [73, 91], "http": [0, 2, 22, 73, 76, 91], "hypothesi": 20, "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 20, 22, 23, 25, 26, 28, 29, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 64, 66, 69, 72, 73, 75, 76, 79, 82, 83, 84, 86, 88, 91, 92, 94, 95, 96], "iba1_rb20": 84, "iba1_rb20_clust": 84, "iba1_seg_ilastik_2": 84, "ic": 46, "id": [0, 3, 11, 13, 15, 18, 22, 29, 46, 48, 62, 63], "ideal": [0, 45], "identifi": [23, 76], "idisco": [0, 1], "if_img": 61, "if_outli": [75, 89, 90], "ilastik": [1, 2, 29, 69, 71, 72, 73], "ilastik_brain_mask": [0, 72], "ilastik_log": 29, "ilastik_pixel_classif": [0, 1, 74, 75], "ilastik_project": [29, 73], "ilastik_segment": [0, 72], "ilp": [0, 71, 73], "imag": [3, 5, 6, 11, 15, 22, 28, 29, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 66, 69, 73, 74, 75, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98], "image_io": [0, 1, 2, 75], "image_nam": 60, "image_path": 66, "image_pir": 41, "image_pir_appli": 41, "image_to_warp_from_atlas_spac": 96, "image_tool": [0, 1, 75], "img": [6, 15, 19, 22, 35, 37, 38, 40, 44, 45, 50, 54, 57, 84, 86, 94, 95, 96], "img_avg": [1, 11, 49], "img_bbox": [0, 50], "img_crop": 6, "img_dog": [0, 45], "img_extend": [0, 51], "img_in_atlas_spac": 95, "img_io": [1, 30, 75], "img_max": [0, 52], "img_pad": [0, 53], "img_path": [28, 40, 44], "img_rb": [0, 54], "img_resampl": 69, "img_spatial_avg": [0, 55], "img_to_npi": [1, 43, 75], "img_tool": [1, 30, 75], "img_transpos": [0, 57], "img_uniqu": [0, 58, 62], "img_wb": 3, "immunofluo": [0, 92], "immunofluoresc": [0, 1, 60, 61, 74, 75], "immunolabel": 0, "immunostain": 11, "implement": 45, "import": [25, 26, 27, 31, 65, 96], "improv": [0, 2, 25], "inactiv": 83, "includ": [28, 31, 69], "incongru": 13, "increas": [0, 13, 31, 79], "indent": [25, 26], "indent_incr": [25, 26], "index": [0, 1, 3, 5, 11, 24, 29, 75], "indic": [0, 11, 13, 19, 20, 35, 41], "individu": 23, "inferior": 41, "info": [1, 17, 21, 31, 73, 91, 95], "inform": 11, "inherit": [25, 26], "ini": [0, 4, 27, 31], "init": 2, "initi": [0, 1, 2, 25, 26, 27, 29, 31], "initialize_progress_bar": [30, 31, 75], "inlin": 27, "innacuraci": 0, "inp": 98, "input": [0, 3, 7, 8, 9, 11, 12, 13, 15, 16, 18, 20, 22, 28, 32, 34, 35, 36, 41, 42, 45, 46, 54, 55, 58, 62, 66, 69, 71, 85, 91, 92, 93, 94, 95, 98], "input_image_path": 91, "input_img": [58, 94], "input_img_lh": 85, "input_img_lravg": [85, 93], "input_img_rh": 85, "input_img_s100_lravg": 85, "input_name_rev_cluster_index": 11, "input_nii_path": 28, "input_path": [11, 12, 22], "input_sunburst": 22, "insid": 48, "inspir": 1, "instal": [0, 1, 31, 76], "instanc": 76, "instead": [0, 45, 76], "institut": 1, "instruct": [0, 2], "int": [26, 28, 29, 41, 55, 58, 66, 86], "int16": 35, "int32": 35, "int64": 35, "int8": 35, "integ": 35, "intend": 45, "intens": [0, 11, 13, 29, 35, 46, 48, 52, 56, 59, 60, 61, 62, 75, 87, 90, 94], "interact": 0, "interest": [0, 1, 7, 8, 9, 20, 45, 54], "interior": [0, 66], "intern": 48, "interpol": [29, 84, 95, 96, 98], "introduc": 13, "inv": 98, "invers": [75, 97], "invoc": [25, 26], "invok": 76, "involv": 79, "io": [73, 76, 91], "io_h5_to_tif": [0, 32], "io_img": [0, 1, 43, 75], "io_img_to_npi": [0, 33], "io_metadata": [0, 2, 36, 96], "io_nii": [0, 1, 43, 75], "io_nii_hd": [0, 37], "io_nii_info": [0, 38], "io_nii_to_tif": [0, 39], "io_nii_to_zarr": [0, 40], "io_reorient_nii": [0, 41], "io_tif_to_tif": [0, 42], "io_zarr_to_nii": [0, 44], "is_fil": 28, "isol": 0, "issu": [2, 76], "item": 31, "iter": [31, 84], "its": [27, 28, 37, 38, 41, 48, 52, 55, 92, 93], "j": 0, "k": [0, 85, 93], "keep": [0, 45, 76], "kei": [22, 27, 80], "kernel": [0, 55, 85, 93], "kernel_s": 55, "kill": 65, "kwarg": [25, 26, 31], "l": [0, 13, 41, 66], "lab": [0, 1], "label": [0, 1, 5, 13, 16, 17, 18, 20, 22, 46, 62, 71, 73], "label_dens": [5, 18, 20], "label_volum": [18, 20], "larg": [0, 7, 8, 9], "larger": [0, 23, 45, 54], "largest": [0, 11, 32, 42, 48], "last": [0, 20], "launch": 0, "layer": 0, "lead": 1, "learn": 0, "least": 45, "leav": 54, "left": [0, 14, 41, 51, 66], "legaci": 29, "legend": [0, 1, 4, 24, 75], "len": 31, "less": [0, 20, 54, 84], "letter": [29, 38, 41, 66], "level": [0, 22, 23], "lh": [0, 20], "lh_file": 85, "libbz2": 2, "libffi": 2, "liblzma": 2, "libncurses5": 2, "libncursesw5": 2, "librari": [25, 26], "libreadlin": 2, "libsqlite3": 2, "libssl": 2, "lightsheet": [0, 1], "like": [2, 27, 38], "line": [0, 1, 2, 25, 31, 61], "linear": [95, 98], "link": [0, 2], "linux": [0, 1], "list": [1, 5, 7, 8, 9, 12, 17, 20, 29, 31, 48, 58, 63, 67, 68, 69, 72, 76, 83, 92], "list_of_exp_dir_path": 83, "live": 0, "llvm": 2, "load": [0, 5, 6, 28, 31, 32, 34, 37, 38, 42, 45, 50, 51, 52, 54, 55, 58, 69, 84, 86, 87, 92], "load_3d_img": [28, 30, 75], "load_3d_tif": [42, 43, 75], "load_config": [30, 31, 75], "load_czi": [28, 30, 75], "load_data": [62, 64, 75], "load_h5": [28, 30, 32, 43, 75], "load_image_metadata_from_txt": [28, 30, 75], "load_mask": [75, 84, 90], "load_nii": [28, 30, 75], "load_nii_orient": [28, 30, 75], "load_nii_subset": [28, 30, 75], "load_text_from_fil": [30, 31, 75], "load_tif": [28, 30, 45, 54, 56, 75], "load_zarr": [28, 30, 75], "local": [2, 65], "locat": [0, 2, 4, 76], "log": [1, 31], "long_nam": 17, "longer": 0, "look": 62, "loop": 20, "lower": [0, 69], "lp": 41, "lsfm": [0, 1], "lut": [0, 62], "m": [0, 3, 5, 8, 9, 19, 58, 59, 65, 66, 76, 79, 84, 87, 96, 98], "ma": [0, 11, 12, 84, 91], "maco": 0, "mai": [0, 13, 54, 86, 93], "main": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 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], "main_effect_": 0, "maintain": [1, 23], "mainten": 1, "make": [1, 2, 4, 11, 76, 81], "make_par": 28, "malenka": 1, "manag": [2, 25, 26], "map": [0, 1, 11, 12, 13, 88], "mask": [0, 5, 11, 12, 48, 66, 68, 71, 75, 85, 87, 90, 91, 93], "mask_condit": 84, "mask_dir": [74, 75], "mask_ndarrai": 84, "mask_path": [11, 12, 66, 84, 91], "mat_fil": 91, "match": [0, 7, 8, 9, 13, 17, 20, 21, 29, 31, 69, 78, 80, 84, 87, 92, 95, 96], "matrix": [0, 28, 38, 41, 91], "max": [0, 1, 35, 56, 75], "max_cluster_id": 11, "max_decim": 12, "max_help_posit": [25, 26], "max_region_id": 62, "max_valu": 23, "maximum": [52, 62], "mdma": [0, 63, 83], "mdma_sample01": [0, 63], "mean": [0, 13, 55, 60, 61, 62, 75, 76, 87, 90, 94], "mean_if_in_seg": 61, "mean_if_intens": 62, "mean_intensities_dict": 61, "mean_intensity_in_brain": [75, 84, 90], "mean_intensity_within_mask": [87, 89, 90], "mean_std_count": [9, 10, 24], "meandiff": 63, "meaning": 23, "means_in_mask_plot": 87, "measur": [0, 5, 60, 61], "medium": [7, 8, 9], "meet": 23, "mehrdad": 1, "member": 0, "memori": 31, "menu": 2, "messag": [25, 26, 65], "met": 23, "metacel": 1, "metadata": [0, 1, 2, 28, 30, 32, 34, 42, 43, 75, 96], "metadata_from_3d_tif": [42, 43, 75], "metadata_from_h5": [32, 43, 75], "metadata_path": 36, "metadata_rel_path": 96, "metavar": [25, 26], "meth": [0, 63], "meth_sample23": [0, 63], "method": [25, 26, 27, 45], "mi": 95, "microglia": [75, 90], "micron": [0, 15, 22, 28, 29, 32, 36, 42, 69], "microscopi": 1, "microsoft": 2, "mid": 0, "middl": 0, "might": 45, "mimic": [29, 69], "min": [35, 56, 75], "min_cluster_size_in_voxel": [0, 11], "min_ext": [29, 58], "min_siz": 11, "minext": 29, "minim": 0, "minimum": 23, "minu": 0, "miracl": [1, 29, 69, 96], "mirror": [0, 1, 11, 19, 75, 85, 90, 93], "misc": 0, "miss": 0, "mm": [0, 22], "mode": [0, 29], "model": 0, "modifi": [25, 26], "modul": [0, 1, 2, 10, 24, 30, 43, 47, 56, 64, 70, 74, 82, 89, 90, 97], "mofncompletecolumn": 31, "more": 54, "most": 0, "mous": 0, "move": [0, 14, 23, 79], "moving_imag": 65, "moving_image_path": 65, "moving_img": 5, "moving_img_path": [96, 98], "much": 0, "multilabel": [95, 98], "multipl": [4, 25, 26, 29, 91], "multipli": 3, "must": [0, 55], "mv": 2, "n": [2, 81, 94], "n4": 66, "name": [1, 4, 5, 7, 8, 9, 11, 14, 16, 17, 18, 20, 31, 62, 63, 75, 79, 82, 83, 95], "namespac": [25, 26, 61], "narg": [25, 26], "nativ": [0, 29, 64, 75, 95, 96], "native_": 96, "native_atlas_split": [0, 59], "native_cluster_index": 5, "native_cluster_index_crop": 5, "native_img": 96, "navig": [0, 2], "ncbi": 0, "ndarrai": [11, 15, 22, 28, 29, 32, 33, 35, 40, 41, 42, 44, 45, 48, 51, 54, 55, 57, 59, 61, 66, 69, 84, 86, 88, 94, 96], "ndarray_axis_ord": [28, 32, 42], "ndimag": 69, "nearest": [84, 96], "nearestneighbor": [95, 98], "necessari": 31, "need": [0, 2, 4, 11, 27, 43, 45, 62, 75, 80, 86], "neg": 41, "neighbor": [0, 55, 84, 96], "neither": [7, 8, 9, 20], "new": [0, 1, 14, 17, 19, 23, 41, 76], "new_affin": 41, "new_imag": 46, "new_img": 95, "new_nii": 41, "new_text": 81, "new_valu": 84, "next": [0, 5, 11, 32, 36, 42, 59, 60, 61, 66, 69, 71, 91, 92, 93, 94], "nfi": 2, "ngregori": 1, "nibabel": [1, 37, 38, 41], "nick": 1, "nida": 1, "nifti": [0, 15, 28, 29, 38, 41, 48, 49, 52], "nifti1": 41, "nifti1imag": 41, "nih": 0, "nii": [0, 3, 5, 6, 11, 12, 15, 19, 20, 22, 28, 29, 34, 35, 36, 37, 38, 39, 40, 41, 44, 46, 48, 49, 50, 52, 53, 55, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 77, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "nii_axis_cod": [38, 43, 75], "nii_hd": [1, 43, 75], "nii_img": 95, "nii_info": [1, 43, 75], "nii_path": [28, 39, 41], "nii_to_ndarrai": [40, 43, 75], "nii_to_tif": [1, 43, 75], "nii_to_zarr": [1, 43, 75], "nlm": 0, "node": 0, "nois": [0, 45, 54], "non": [0, 11, 13, 41, 56, 75, 79], "none": [6, 11, 20, 23, 25, 26, 28, 29, 31, 35, 41, 60, 62, 66, 84, 85, 93, 96], "nor": [7, 8, 9, 20], "notabl": 0, "note": [1, 25, 26, 27, 44, 59], "now": 63, "np": [28, 41, 48, 55, 61, 69, 86, 88, 96], "npy": 33, "nuclei": [0, 45], "null": 2, "nullifi": 0, "num_contrast": 91, "num_group": 63, "num_of_items_to_iter": 31, "number": [0, 5, 16, 23, 55, 56, 59, 72, 73, 75, 84, 86, 91], "numpi": [0, 1, 28, 29, 35, 48, 55], "o": [0, 4, 5, 6, 11, 21, 33, 34, 39, 40, 44, 46, 49, 50, 51, 55, 65, 72, 73, 81, 84, 87, 92, 95, 96, 98], "object": [0, 5, 20, 27, 31, 59], "oc": 46, "ochann": [51, 92, 95], "ochann_extend": 51, "ochann_rb4_gubra_spac": 92, "odt": 46, "off": 0, "often": [0, 71], "ok": [0, 4], "old_imag": 46, "old_text": 81, "om": [34, 55, 79], "one": [0, 4, 13, 20, 45, 51], "onli": [4, 23], "onlin": 0, "open": [2, 65], "opencv": [29, 45, 54], "openpyxl": 16, "openssl": 2, "oper": [0, 2, 81], "optim": 0, "option": [1, 17, 20, 22, 25, 26, 28, 29, 32, 35, 42, 58, 63, 66, 76, 84, 91], "option_str": [25, 26], "orang": 31, "order": [0, 4, 23, 28, 29, 62, 66, 69, 76, 96], "org": 2, "org_data": [1, 24, 75], "organ": [0, 14, 17, 18, 20, 73, 76], "organize_validation_data": [17, 24, 75], "orient": [28, 29, 38, 41, 44, 66], "orientation_str": 29, "origin": [14, 29, 41, 76, 86], "original_dimens": 96, "ort": [0, 66], "ort_cod": 66, "other": [0, 1, 4, 11, 19, 32, 35, 42, 54, 75, 86, 90], "other_mask": 84, "otherwis": [0, 23], "our": 86, "out": [0, 1, 65, 75, 90], "out_dir": 63, "outer": 5, "outer_bound": 5, "outer_xmax": 5, "outer_xmin": 5, "outer_ymax": 5, "outer_ymin": 5, "outer_zmax": 5, "outer_zmin": 5, "outlier": 87, "outlin": 48, "output": [0, 1, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 26, 28, 32, 34, 36, 41, 42, 44, 48, 55, 59, 60, 61, 62, 63, 66, 69, 71, 85, 88, 92, 93, 94, 95, 96], "output_dir": [11, 15, 29, 39, 66], "output_fil": 60, "output_file_path": 29, "output_img": 6, "output_index": 11, "output_nam": [73, 91], "output_path": [5, 22, 28, 40, 44, 45, 54, 61, 98], "output_rgb_lut": 22, "outsid": [0, 48], "outward": 0, "over": 0, "overrid": 22, "p": [0, 11, 12, 13, 17, 20, 41, 63, 66, 78, 87, 88], "p50": 1, "p_val_txt": 17, "p_value_threshold": [0, 11], "packag": [0, 1, 76], "pad": [0, 1, 29, 30, 55, 56, 66, 75], "pad_fract": 96, "pad_width": 29, "page": [0, 1], "paint": 0, "pan": 0, "panda": 1, "parallel": [0, 5, 28, 29, 55], "parallel_load": 28, "param": [7, 8, 9], "paramet": [0, 7, 8, 9, 11, 12, 15, 16, 17, 20, 22, 23, 26, 28, 29, 31, 32, 35, 36, 41, 42, 48, 55, 58, 61, 63, 66, 69, 72, 79, 81, 84, 86, 94, 95, 96, 98], "parent": [0, 23, 28, 79], "pars": [25, 27], "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, 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], "parse_color_argu": [63, 64, 75], "parser": [25, 26], "part": 0, "pass": 0, "password": 2, "past": 22, "path": [1, 2, 3, 4, 5, 6, 11, 12, 15, 17, 21, 22, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 48, 50, 52, 55, 57, 58, 59, 60, 61, 62, 66, 69, 73, 74, 75, 76, 78, 79, 80, 83, 87, 88, 91, 92, 94, 95, 96, 98], "path_or_pattern": 28, "path_to_tif_dir": 79, "pathlib": 31, "pattern": [0, 17, 28, 31, 36, 77, 78, 87], "pd": [7, 8, 9, 20], "pdf": 87, "pearson": 88, "pennmedicin": 1, "per": [31, 73], "percent": 53, "percent_vol": 23, "percent_vol_threshold": 23, "percentag": [23, 29], "perform": [0, 11, 12, 20, 54, 62, 66, 81, 93, 94], "perform_t_test": [62, 64, 75], "perform_tukey_test": [20, 24, 75], "period": 2, "permut": 91, "permutations_per_frag": 91, "pi": 1, "pip": [0, 2, 76], "pir": 41, "pixel": [0, 29, 45, 55, 71, 73, 94], "pixel_classif": [29, 30, 75], "place": 12, "placehold": 0, "plane": 28, "plaqu": 0, "pleas": [0, 1, 2], "plot": [0, 15, 18, 22, 62, 63, 87], "plot_data": [62, 64, 75], "point": [35, 76], "pool": [7, 8, 9, 14, 18, 20], "posit": [0, 41, 66], "possibl": 35, "posterior": [0, 41, 66], "powershel": 2, "pre": 0, "precis": 84, "predict": 0, "prefer": [2, 76], "prefix": [0, 7, 8, 9, 20, 76, 80], "prep": [3, 74, 75], "prepar": [0, 69], "prepend": [0, 31, 75, 80, 82, 83], "prepend_condit": [0, 1, 75, 82], "preprocess": [0, 69], "prereq": [22, 23, 59, 62, 66, 71, 91, 92, 93, 94, 95, 96, 98], "present": [0, 7, 8, 9, 20, 56, 75], "preserv": [0, 44, 75, 90], "press": 0, "prevent": 0, "preview": [0, 22], "previou": 23, "print": [0, 1, 17, 27, 29, 31, 37, 38, 52, 56, 66, 75, 81], "print_cmd_and_tim": [30, 31, 75], "print_dir": 31, "print_func_name_args_tim": [30, 31, 75], "print_id": 29, "print_metadata": [36, 43, 75], "print_siz": [29, 58], "prior": 0, "priorit": 23, "prism": [0, 1, 24, 75], "probability_threshold": 11, "probabl": 11, "process": [0, 4, 11, 19, 20, 29, 31, 48, 55, 65, 69, 92, 95], "process_and_plot_data": [63, 64, 75], "process_fdr_and_clust": [11, 24, 75], "process_fil": [19, 24, 75], "process_intens": [47, 48, 56], "process_slic": [29, 30, 75], "profil": 0, "prog": [25, 26], "progress": 31, "progresscolumn": 31, "project": [1, 71, 73, 76], "prompt": 2, "properti": 0, "provid": [0, 1, 5, 11, 27, 31, 35, 36, 62, 69, 79, 84, 96], "psilocybin": [7, 8, 9, 20], "psilocybin_v_saline_tstat1_q": 4, "public": 1, "pubm": 0, "pull": [0, 2], "punctat": 0, "pwd": 0, "py": [0, 21, 87, 88], "pyenv": 2, "pyenv_root": 2, "pypi": 2, "pyproject": [0, 76], "python": [1, 2, 70, 75, 97], "q": [0, 11, 12], "q_valu": [0, 11, 12], "qc": [67, 68], "qform": 41, "qualiti": 0, "quantif": 1, "quantifi": [0, 5, 59], "question": [1, 2], "queue": 65, "quickli": 0, "quot": 63, "r": [0, 26, 41, 63, 66, 80, 81], "r_to_p": [75, 89, 90], "r_to_z": [88, 89, 90], "ra": [29, 38, 41, 44], "radii": 54, "radiu": [0, 29, 45, 54], "rais": [7, 8, 9, 20], "random": 0, "randomis": 0, "randomise_parallel": [0, 91], "rang": [0, 35], "rate": 20, "ratio": 45, "raw": [1, 61], "raw_tif_dir": [0, 72], "rawconfigpars": 27, "rb": [0, 1, 56, 75, 92], "re": [0, 29, 32, 42, 69, 76, 84], "reach": 1, "read": 27, "readabl": 25, "readi": 11, "recommend": 0, "rectangl": 0, "recurs": [0, 19, 21, 80, 81], "recursively_mirror_rev_cluster_indic": [0, 1, 24, 75], "recus": 78, "red": [0, 31], "refer": [0, 28, 98], "refin": 0, "reflect": [13, 20], "reg": [1, 59, 69, 70, 71, 75, 76, 92, 95, 98], "reg_affine_initi": [0, 65], "reg_check": [1, 66, 70, 75], "reg_check_brain_mask": [0, 1, 70, 75], "reg_input": [0, 53, 69, 71, 72], "reg_output": [0, 65, 96, 98], "reg_outputs_path": [65, 98], "reg_prep": [1, 32, 36, 42, 59, 66, 70, 71, 74, 75], "reg_r": [69, 96], "reg_result": 0, "regard": 59, "region": [1, 3, 13, 16, 22, 23, 29, 48, 59, 60, 61, 62, 63], "region_abbr": 63, "region_id": [0, 59, 61, 62, 63], "region_intens": 62, "region_nam": 63, "region_stat": [0, 1, 75], "regional_cell_dens": 0, "regional_cell_densities_summari": 0, "regional_counts_df": 59, "regional_volumes_df": 59, "regist": [0, 1, 75, 76], "registr": [1, 29, 32, 36, 42, 67, 69, 71, 95, 98], "reinstal": [0, 76], "rel": [0, 5, 9, 13, 28, 36, 69, 92, 95], "rel_path": [0, 36, 59], "rel_path_to_src_fil": 77, "relabel": 0, "relabel_nii": [47, 56, 75], "relat": 0, "related": 76, "relative_hedges_g": [9, 10, 24], "relev": 4, "reli": [25, 26], "reload": 76, "remain": [0, 31], "remot": 0, "remov": [0, 14, 54, 62, 83], "remove_zero_intensity_region": [62, 64, 75], "renam": [0, 1, 64, 75, 76, 80, 82], "rename_dir": 80, "rename_fil": [75, 80, 81, 82], "rename_item": [75, 80, 82], "rename_typ": 81, "render": 31, "reopen": 0, "reorder": [64, 75], "reorient": [0, 29, 41, 69], "reorient_for_raw_to_nii_conv": [29, 30, 75], "reorient_ndarrai": [29, 30, 75], "reorient_ndarray2": [29, 30, 75], "reorient_nii": [1, 43, 75], "replac": [0, 11, 75, 79, 81, 90], "repo": [0, 1, 76], "repo_root_dir": 0, "repositori": [0, 1, 2], "repres": [23, 75, 90], "request": 28, "requir": 55, "rerun": 4, "resampl": [0, 29, 30, 66, 69, 75], "resolut": [0, 15, 22, 28, 29, 32, 42, 55, 61, 69, 74, 75, 96], "resolv": [28, 31, 76], "resolve_path": [28, 30, 75], "respect": [0, 4], "restart": 2, "restrict": 84, "result": [0, 4, 5, 14, 20, 59, 63, 87], "retain": 28, "retriev": 62, "return": [5, 7, 8, 9, 11, 20, 22, 23, 27, 28, 29, 31, 32, 35, 38, 41, 42, 45, 48, 54, 55, 58, 61, 63, 66, 69, 84, 96], "return_3d_img": [28, 30, 75], "return_metadata": 28, "return_r": [28, 32, 42], "rev_cluster_index": [0, 15, 17, 20, 22], "rev_cluster_index_img": 11, "rev_cluster_index_to_warp_from_atlas_spac": [0, 5], "rev_cluster_index_valid_clust": 15, "revers": [0, 11], "reverse_clust": [11, 24, 75], "reverse_reorient_for_raw_to_nii_conv": [29, 30, 75], "review": [0, 2], "rf": 4, "rgb": [16, 22], "rgba": 3, "rh": [0, 19, 20], "rh_file": 85, "rh_mask": 94, "rhz": 94, "rich": [26, 31], "rich_argpars": 26, "richhelpformatt": 26, "right": [0, 14, 41, 51, 66], "rijsket": 1, "rlapsi": 29, "rm": 4, "ro": 98, "roll": [0, 29, 45, 54], "rolling_ball_subtract": [54, 56, 75], "rolling_ball_subtraction_opencv_parallel": [29, 30, 75], "root": 0, "roughli": [0, 76], "row": [0, 7, 8, 9, 20, 23, 41, 80], "rp": 0, "rstat": [1, 64, 75], "rstats_if_mean": 62, "rstats_if_mean_in_seg": 62, "rstats_mean_if": [0, 1, 64, 75], "rstats_mean_if_in_seg": [0, 61], "rstats_mean_if_in_segmented_voxel": [1, 64, 75], "rstats_mean_if_summari": [0, 1, 60, 61, 64, 75], "rstats_summari": [1, 59, 64, 75], "run": [2, 11, 14, 19, 23, 24, 36, 57, 61, 65, 69, 71, 73, 75, 76, 79, 91, 92, 93, 94], "run_ilastik": 2, "run_randomise_parallel": [75, 90, 91], "run_script": [4, 24, 75], "run_with_timeout": [65, 70, 75], "ryskamp": 1, "sa": 3, "salin": [0, 7, 8, 9, 20, 59, 63, 83], "saline_sample06": [0, 63], "saline_sample07": [0, 63], "same": [23, 55, 76], "sampl": [1, 5, 7, 8, 9, 17, 18, 20, 31, 36, 61, 67, 68, 69, 72, 73, 75, 79, 82, 84, 92, 94, 95], "sample01": [4, 80, 83], "sample01_cfos_correlation_map": 88, "sample01_fil": 80, "sample01_slice_0000": 0, "sample01_slice_0005": 0, "sample01_slice_0050": 0, "sample02": [4, 80, 83], "sample02_fil": 80, "sample03": 0, "sample04": 0, "sample04_slice_0050": 0, "sample14": [0, 59], "sample36": [0, 59], "sample_dir_list": 31, "sample_dir_pattern": 31, "sample_kei": [1, 4, 62, 80, 83], "sample_nam": 18, "sample_path": [17, 31, 59, 72, 77, 95, 96], "save": [0, 5, 6, 11, 18, 19, 28, 32, 33, 34, 36, 42, 45, 50, 51, 53, 54, 55, 64, 66, 71, 75, 86, 98], "save_as_h5": [28, 30, 75], "save_as_nii": [28, 30, 43, 44, 75], "save_as_tif": [28, 30, 32, 42, 43, 75], "save_as_zarr": [28, 30, 40, 43, 75], "save_cropped_img": [6, 24, 75], "save_labels_as_mask": [73, 74, 75], "save_metadata": 28, "save_metadata_to_fil": [28, 30, 75], "save_tif": [45, 54, 56, 75], "scale": [0, 43, 44, 75, 84, 96], "scale_bool_to_full_r": [75, 84, 90], "scale_mod": 35, "scale_to_full_r": [75, 96, 97], "scanner": 41, "scienc": 1, "scipi": [1, 29, 69], "score": [0, 13, 43, 75, 84, 88, 90, 93], "script": [1, 2, 4, 20, 25, 26, 27, 31, 76], "script_arg": 4, "script_nam": 4, "scroll": 0, "sd": 87, "se": [7, 8, 9], "search": [1, 29, 31, 81], "second": [4, 11, 18, 20, 41, 45, 84], "section": [0, 27, 76], "see": [0, 73, 91], "seg_brain_mask": [1, 66, 69, 71, 74, 75, 94], "seg_copy_tif": [1, 66, 69, 72, 73], "seg_crop": 5, "seg_dir": [0, 5, 61], "seg_ilastik": [1, 59, 61, 73, 74, 75], "seg_img": 59, "seg_in_clust": 5, "seg_mask": 84, "seg_volume_in_cubic_mm": 5, "segment": [1, 5, 29, 61, 75, 90], "segmentation_dir": 73, "segmentation_imag": [0, 59], "select": [0, 7, 8, 9, 20, 31, 72, 81], "selector": [7, 8, 9, 20], "send": 2, "sensit": 0, "separ": [0, 4, 29, 31, 58], "seper": 65, "seri": [0, 7, 8, 9, 20, 28, 29, 32, 34, 36, 39, 42, 50, 55, 69, 71, 79], "server": 0, "session": 0, "set": [1, 25, 26, 27, 31, 41, 91], "setup": 0, "sex": [0, 8, 9], "sform": 41, "sh": 2, "shamloo": 1, "shape": 38, "share": [0, 23], "sheet": 0, "shell": [1, 2, 76], "shift": [0, 85, 86, 93], "should": [0, 4, 7, 8, 9, 20, 23, 31, 36, 45, 54, 80, 83], "show": [0, 31, 76], "show_plot": 62, "shrink": 66, "shrink_factor": 66, "side": [0, 19, 20, 29, 41, 51, 62, 63, 66, 75, 90], "sigma1": 45, "sigma2": 45, "sign": 35, "signal": [0, 1, 75, 90], "signifi": 0, "signific": [0, 13, 20, 22, 45], "simga2": 45, "similar": 0, "sinc": [0, 20, 41], "singl": [0, 25, 26, 45, 48, 54, 55], "situat": 76, "size": [1, 7, 8, 9, 22, 28, 29, 36, 38, 45, 54, 55, 56, 75], "sk": [0, 4, 62, 80], "slice": [0, 29, 31, 55, 72, 73], "slice_": [32, 42, 71], "slice_numb": 72, "slicer": 0, "slow": 84, "slowli": 0, "sm": [0, 25, 26, 30, 66, 75], "small": [0, 7, 8, 9], "smaller": [0, 45, 48, 54], "smallest": 48, "smart_float_format": [12, 24, 75], "smooth": [0, 85, 93], "so": [2, 11, 41], "some": 54, "someth": 2, "sort": [24, 48, 75], "sort_sampl": [18, 24, 75], "sort_sunburst_hierarchi": [23, 24, 75], "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "source_dir": [31, 72], "source_img": 95, "space": [0, 1, 5, 29, 58, 60, 64, 75, 79, 90, 92, 95, 96, 97], "sparser": 0, "spatial": [0, 28, 41, 45, 55, 84], "spatial_averag": [0, 1, 56, 75], "spatial_average_2d": [55, 56, 75], "spatial_average_3d": [55, 56, 75], "spatial_avg": 55, "specif": [0, 2, 26, 29, 31, 75, 86, 90], "specifi": [0, 5, 7, 8, 9, 20, 23, 25, 26, 27, 29, 31, 34, 35, 36, 55, 74, 75, 80, 81, 84, 86], "speed": 0, "split": [3, 11], "split_clusters_based_on_effect": [11, 24, 75], "spool": [7, 8, 9], "spot": 1, "spread": 0, "squar": 0, "src": 17, "src_dir": 78, "ssd": 0, "stack": 1, "stain": [1, 60, 61], "standard": [35, 45, 94], "stanford": [1, 2], "start": [0, 2, 7, 8, 9, 16, 20, 23, 31], "startup": 2, "stat": [1, 11, 12, 24, 75, 91, 93, 94], "static": 27, "statist": [0, 63], "stats_df": 20, "stats_info_g1_v_g2": 11, "stats_tabl": [1, 24, 75], "stderr": 65, "step": [1, 23, 59, 61, 66, 69, 76, 91, 92, 93, 94], "stick": 0, "stitch": 1, "storag": 0, "store": 2, "str": [7, 8, 9, 11, 20, 26, 28, 29, 31, 41, 66, 79, 98], "string": [25, 26, 29, 31], "strip": [12, 27], "struct_el": 29, "structur": [1, 14], "studio": [0, 22], "style": [26, 27], "subclass": 27, "subdir": [0, 20, 31, 79], "subdirectori": [73, 79], "subfold": 0, "subject": 0, "subpackag": 1, "subprocess": [4, 65], "subset": [0, 28, 72], "subsystem": 1, "subtract": [29, 45, 54, 92], "succinctli": 0, "sudo": 2, "suffix": 76, "suggest": [0, 1], "sum": 23, "summar": [0, 16, 21, 23, 59, 63], "summari": [0, 63], "summarize_signific": [63, 64, 75], "summary_df": 63, "sunburst": [0, 1, 15, 24, 75], "sunburst_csv_path": 23, "sunburst_rgb": 22, "superior": [0, 41, 66], "support": [0, 54], "suppress": [25, 26, 65], "suppressmetavar": [25, 26, 30, 75], "surfac": 48, "symbol": 0, "system": [2, 4, 76, 91], "t": [0, 7, 8, 9, 24, 28, 32, 41, 42, 63, 64, 65, 73, 75, 79, 81, 83, 91], "tab": [0, 22], "tabl": [0, 1, 24, 62, 75], "table_column": 31, "tag": 1, "tail": [0, 88], "tar": 2, "target": [0, 17, 31, 35, 41, 67, 68, 72, 77], "target_dir": [14, 17, 31, 72, 77], "target_ort": 41, "target_output_dir": [67, 68], "target_r": 96, "target_rang": 35, "task": 31, "task_id": 31, "task_messag": 31, "td": [0, 17, 67, 68, 69], "templat": [0, 2, 66], "tensoranalyt": 1, "terastitch": 0, "termin": [0, 2, 26], "test": [0, 4, 24, 45, 63, 64, 75, 91], "test_df": 63, "test_typ": 62, "text": [25, 26, 28, 31, 32, 42, 81], "than": [0, 45, 58], "thei": [0, 20, 23, 28], "them": [0, 2, 22, 23, 25, 26, 27, 29, 31, 81], "thi": [0, 2, 4, 7, 8, 9, 13, 14, 19, 20, 23, 25, 26, 27, 28, 29, 31, 32, 36, 45, 61, 63, 65, 69, 76, 80, 84, 85, 93], "thin": [0, 48], "thing": 0, "third": 41, "those": [7, 8, 9, 20], "though": 4, "thread": [29, 55], "three": 38, "threshold": [0, 11, 17], "through": 20, "tif": [1, 28, 29, 31, 32, 34, 36, 39, 42, 45, 50, 51, 54, 55, 69, 71, 72, 79, 92, 95], "tif_dir": [0, 29, 34, 36, 55, 73], "tif_dir_out": [28, 32, 42], "tif_folder_nam": 79, "tif_path": [28, 42, 45, 54], "tif_to_tif": [1, 43, 75], "tiff": [0, 54], "tifs_path": 36, "tile": 0, "time": [4, 31, 45, 54, 65], "timeelapsedcolumn": 31, "timeout": 65, "timeremainingcolumn": 31, "timeseri": 0, "tissu": [0, 5, 29, 71, 75, 90, 96, 97], "tissue_in_atlas_spac": 98, "tissue_mask": 84, "tk": 2, "to_atla": [1, 75, 97], "to_n": [1, 75, 97], "togeth": [0, 86, 94], "toggl": [0, 75, 82], "toggle_sampl": [1, 75, 82], "toml": [0, 76], "tool": [0, 1], "top": [23, 51], "top_n": 23, "top_region": 23, "total": [0, 23, 31, 91], "total_permutations_per_contrast": 91, "touch": 0, "tp": [0, 85, 93], "traceback": 31, "track": 0, "tract": 0, "trail": 12, "train": [1, 69, 71, 72, 73], "trained_ilastik_project": 0, "transform": [41, 88, 98], "transform_nii_affin": [41, 43, 75], "transpar": 0, "transpos": [0, 57], "transpose_ax": [1, 56, 75], "transpose_img": [56, 57, 75], "treat": 20, "treatment": [0, 4, 62, 80, 83], "treatment_sample02_fil": 80, "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, "true": [28, 31, 32, 41, 42, 81, 98], "tstat1": 0, "tstat2": 0, "ttest": 62, "ttest_result": 13, "tukei": [24, 64, 75], "tukey_result": 13, "tupl": [25, 26, 28, 32, 35, 42, 48, 55], "turn": 0, "tutori": [0, 2], "two": [7, 8, 9, 20, 62, 80, 88, 91], "txt": [3, 5, 6, 11, 23, 28, 36, 50, 78, 96], "type": [0, 7, 8, 9, 11, 15, 17, 20, 22, 28, 29, 31, 34, 35, 38, 41, 48, 54, 55, 58, 59, 61, 63, 69, 81, 84, 95, 98], "typic": 1, "ubuntu": 2, "uint16": [35, 46, 48, 95], "uint32": 35, "uint64": 35, "uint8": [35, 48, 95], "um": [32, 42, 69, 71], "um_brain_mask": [0, 71], "um_mask": [0, 71], "um_masked_fixed_reg_input": [0, 67], "um_tif": [0, 69, 71], "um_tifs_ilastik_brain_seg": 71, "unbias": [7, 8, 9], "uncorrect": 0, "undefin": 0, "under": 0, "underscor": 79, "undo_fill_with_origin": [23, 24, 75], "unfamiliar": [0, 2], "unilater": [0, 11, 18, 20], "uniq_intens": [56, 58, 75], "uniqu": [0, 7, 8, 9, 20, 29, 48, 58, 76], "unique_condit": [7, 8, 9, 20], "unique_intens": [1, 48, 56, 75], "unnecessari": 12, "unpair": [20, 91], "unravel": 0, "unravel_command": [0, 1, 75], "unravel_env": 76, "unravel_reg": 76, "unsign": 35, "until": 23, "up": [1, 12, 23, 62, 79, 91], "updat": [0, 2], "upenn": 1, "upper": 0, "upstream_path": 28, "us": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "usag": [0, 1, 8, 10, 24, 25, 26, 27, 31, 43, 47, 51, 56, 64, 70, 74, 75, 82, 89, 90, 92, 97], "user": [0, 1, 2], "usernam": [2, 27], "usr": [2, 65, 76], "util": [0, 1, 2, 30, 75], "utils_agg_fil": [1, 61, 62, 77, 92], "utils_agg_files_rec": [0, 78], "utils_clean_tif": 79, "utils_prepend": [1, 4, 62, 80], "utils_renam": [0, 80, 81], "utils_toggl": [0, 83], "v": [0, 2, 3, 4, 5, 6, 11, 17, 19, 22, 51, 55, 69, 71, 77, 79, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 98], "valid": [4, 7, 8, 9, 11, 15, 17, 20, 21, 22], "valid_clust": [15, 23], "valid_clusters_t_test": [20, 24, 75], "valid_clusters_tables_and_legend": 4, "validation_dir": 17, "validation_dir_pattern": 17, "valu": [0, 11, 12, 13, 16, 17, 20, 22, 23, 25, 26, 27, 35, 41, 48, 52, 58, 63, 87, 88], "valud": 41, "variabl": 1, "variou": 28, "vd": [0, 4, 17], "ventricl": 0, "verbos": [23, 27, 31, 66, 77, 79, 91], "verifi": 76, "version": [0, 2, 3, 45, 84, 86, 93], "via": [1, 2, 88], "video": [0, 1], "view": [0, 2], "virtual": 2, "virtualenv": 2, "visit": 2, "visual": 0, "vizual": 3, "volum": [0, 5, 22, 24, 55, 59, 75], "volume_summari": 46, "volumes_dict": 22, "vox_p": 0, "vox_p_": [11, 12], "vox_p_fstat1": [0, 11], "vox_p_fstat2": 0, "vox_p_fstat3": 0, "vox_p_tstat1": [0, 11, 12], "vox_p_tstat2": 0, "voxel": [1, 5, 22, 29, 36, 38, 51, 55, 56, 61, 75, 86, 87, 90, 91, 93, 94], "voxel_stat": [0, 1, 75], "voxl": 0, "vstat": [1, 11, 12, 17, 75, 90, 92, 93, 94], "vstats_apply_mask": [0, 84], "vstats_dir": [0, 4, 17], "vstats_hemi_to_avg": [0, 85, 94], "vstats_mirror": [0, 86], "vstats_path": 17, "vstats_prep": [1, 45, 69, 75, 90, 91, 93, 94], "vstats_whole_to_avg": [1, 91, 93, 94], "vstats_z_scor": [1, 71, 91, 93, 94], "w": [0, 3, 5, 7, 8, 9, 16, 20, 22, 63, 64, 65, 69, 71, 75, 79, 90], "wa": [0, 1, 13, 56, 75], "wai": 76, "want": [0, 2, 45], "warp": [0, 1, 5, 29, 75, 90, 92], "warp_to_atla": [0, 95], "warp_to_n": [0, 64, 75, 96], "we": [0, 1, 2, 23], "web": 1, "websit": 2, "well": 36, "were": [0, 1, 74, 75], "weslei": 1, "weszhao": 1, "wget": 2, "what": 81, "whatev": 0, "wheel": 0, "when": [4, 43, 75, 76, 82, 86], "where": [0, 2, 7, 8, 9, 13, 20, 23, 31, 48, 72, 75, 76, 90, 98], "whether": [20, 28, 81], "which": [56, 75, 76], "whole": [11, 94], "whole_to_lr_avg": [0, 1, 75, 90], "whose": [7, 8, 9, 20], "wide": 1, "width": [25, 26], "window": [0, 1], "wirefram": [0, 47, 56, 75], "wireframe_imag": 48, "wireframe_image_id": 48, "wise": [1, 91, 93, 94], "within": [0, 23, 29, 31, 62], "without": 81, "withs": 62, "word": [0, 18, 20, 62], "work": [0, 4, 16, 18, 20, 23, 26, 62, 67, 68], "workflow": [1, 76], "worksheet": 16, "write": [29, 60, 61], "write_to_csv": [60, 61, 64, 75], "wsl": 1, "x": [1, 6, 23, 28, 29, 36, 41, 51, 59, 66, 69, 84, 88, 92, 95, 96], "x_dim": 28, "xjf": 2, "xlsx": [4, 16], "xmax": [5, 28, 29], "xmin": [5, 28, 29], "xy": [0, 6, 28, 55], "xy_r": [5, 6, 28, 29, 32, 42, 59, 69, 96], "xy_voxel_s": [32, 42], "xyz": [28, 32, 42, 66], "xyz_res_in_um": 15, "xz": 2, "y": [1, 2, 28, 29, 36, 41, 59, 66, 69, 84, 96], "y_dim": 28, "yeild": [0, 12], "yellow": 0, "yield": 0, "ymax": [5, 28, 29], "ymin": [5, 28, 29], "you": [0, 1, 2, 4, 45, 76], "your": [0, 1, 2, 31, 76], "z": [1, 6, 13, 28, 29, 36, 41, 43, 55, 59, 66, 69, 75, 84, 88, 90, 92, 93, 95, 96], "z_dim": 28, "z_map": 88, "z_re": [5, 6, 28, 29, 32, 42, 59, 69, 96], "z_score": [0, 1, 75, 90], "z_to_p": [88, 89, 90], "z_voxel_s": [32, 42], "zarr": [0, 28, 34, 40, 44, 55, 84, 92, 95, 96], "zarr_path": 28, "zarr_to_ndarrai": [43, 44, 75], "zarr_to_nii": [1, 43, 75], "zeiss": 0, "zen": 0, "zero": [0, 12, 41, 55, 56, 75, 90], "zero_origin": 41, "zetastitch": 0, "zhao": 1, "zlib1g": 2, "zmax": [5, 28, 29], "zmin": [5, 28, 29], "zoom": [0, 29, 69], "zoom_ord": [29, 69, 96], "zscore": 35, "zscore_rang": 35, "zshrc": [0, 1, 76], "zyx": [32, 42], "\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.cluster_summary module", "unravel.cluster_stats.cluster_validation module", "unravel.cluster_stats.crop 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.index module", "unravel.cluster_stats.legend 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 module", "unravel.cluster_stats.stats_table module", "unravel.cluster_stats.sunburst module", "unravel.cluster_stats.table module", "unravel.cluster_stats package", "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.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.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.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 package", "unravel package", "unravel.unravel_commands module", "unravel.utilities.aggregate_files_from_sample_dirs module", "unravel.utilities.aggregate_files_w_recursive_search 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.to_atlas module", "unravel.warp.to_native module", "unravel.warp package", "unravel.warp.warp module"], "titleterms": {"": [20, 62], "0": 84, "1": 84, "100": 58, "3": 0, "8": 35, "If": 0, "across": 0, "activ": 83, "add": 0, "addit": 1, "affine_initi": 65, "after": [0, 4], "aggregate_files_from_sample_dir": 77, "aggregate_files_w_recursive_search": 78, "all": [0, 58, 76, 83], "allen": 0, "alreadi": [59, 77], "an": [0, 94], "analysi": [0, 1], "apply_mask": 84, "ar": 58, "argparse_util": 25, "argparse_utils_rich": 26, "artifact": 84, "atla": [0, 46, 47, 48, 59, 62, 94, 98], "automat": 0, "avail": 59, "avg": 49, "back": 0, "background": 0, "bashrc": 2, "batch": 0, "bbox": 50, "being": 77, "bias": 1, "bit": 35, "both": 94, "brain": [0, 84], "brain_mask": 71, "brain_model": 3, "can": 0, "certain": 83, "check": 58, "clean": 0, "clean_tif_dir": 79, "cli": 96, "cluster": [0, 58, 84], "cluster_fdr": 0, "cluster_fdr_rang": 0, "cluster_mirror_indic": 0, "cluster_org_data": 4, "cluster_stat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "cluster_summari": [0, 4], "cluster_valid": [0, 4, 5], "code": 0, "color": 0, "command": [0, 76], "common": [0, 76], "condit": [62, 83], "config": 27, "contact": 1, "content": [1, 75], "contribut": 1, "copi": 77, "copy_tif": 72, "core": [25, 26, 27, 28, 29, 30, 31], "correct": 0, "crop": 6, "csv": 0, "custom": 62, "data": 0, "defin": 0, "depend": 1, "descript": 76, "develop": 1, "dir": [0, 72, 83], "directli": 4, "directori": 81, "distribut": 0, "dog": 45, "drive": 0, "e": [72, 84], "each": 58, "edit": 2, "effect_s": [7, 8, 9, 10], "effect_sizes_by_sex__absolut": 8, "effect_sizes_by_sex__rel": 9, "ensembl": 1, "env_var": 0, "etc": 0, "exampl": 0, "exclud": 84, "exp": [0, 72], "exp_not": 0, "experi": 0, "extend": 51, "extract": 36, "faster": 59, "fdr": 11, "fdr_rang": 12, "file": [77, 81], "find_incongruent_clust": 13, "folder": 0, "forward": 98, "from": [1, 59, 84], "full": 72, "function": 28, "g": 84, "get": 1, "group_bilateral_data": 14, "guid": 0, "h5_to_tif": 32, "help": 0, "helper": 28, "hemi_to_lr_avg": 85, "hierarchi": 23, "high": 1, "i": [1, 35, 36, 58, 59, 77], "if_outli": 87, "ilastik": 0, "ilastik_pixel_classif": 73, "imag": [0, 1, 72, 84], "image_io": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "image_tool": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58], "img_avg": 0, "img_io": 28, "img_to_npi": 33, "img_tool": 29, "immunofluoresc": 72, "index": 15, "indic": 1, "info": 0, "instal": 2, "intens": [58, 84], "invers": 98, "io_img": 34, "io_nii": 35, "legend": 16, "letter": 0, "light": 1, "like": 0, "linux": 2, "list": 0, "log": 0, "main": [1, 28], "make": 0, "mask": [84, 94], "mask_dir": 72, "max": 52, "mean": 84, "metadata": 36, "microglia": 84, "min": 58, "mirror": 86, "modul": [3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98], "more": 0, "multipl": 0, "name": [0, 76, 77], "nativ": 59, "need": 35, "nii_hd": 37, "nii_info": 38, "nii_to_tif": 39, "nii_to_zarr": 40, "non": 58, "note": 0, "number": 58, "open": 0, "option": 0, "org_data": 17, "orient": 0, "other": [87, 88, 89], "out": 84, "overview": 0, "packag": [10, 24, 30, 43, 47, 56, 64, 70, 74, 75, 82, 89, 90, 97], "pad": 53, "path": [0, 72], "prep": 72, "prepend": 77, "prepend_condit": 80, "present": 58, "preserv": 84, "print": [58, 76], "prism": 18, "project": 0, "python": [65, 96], "r_to_p": 88, "raw": 0, "rb": 54, "recursively_mirror_rev_cluster_indic": 19, "reg": [0, 66], "reg_check": [0, 67], "reg_check_brain_mask": 68, "reg_prep": [0, 69, 72], "region": 0, "region_stat": [59, 60, 61, 62, 63, 64], "regist": [65, 66, 67, 68, 69, 70], "registr": 0, "relabel_nii": 46, "renam": [62, 81], "reorder": 62, "reorient_nii": 41, "replac": 84, "repres": 84, "resolut": [1, 72], "rstat": [0, 59], "rstats_mean_if": 60, "rstats_mean_if_in_segmented_voxel": 61, "rstats_mean_if_summari": 62, "rstats_summari": [0, 63], "run": [0, 4], "sampl": [0, 77, 83], "sample01": 0, "sample02": 0, "sample_kei": 0, "save": 59, "scale": 35, "score": [35, 94], "script": 0, "seg_brain_mask": [0, 72], "seg_copy_tif": 0, "seg_ilastik": [0, 72], "segment": [0, 71, 72, 73, 74, 84], "set": [0, 2], "sh": 0, "sheet": 1, "shell": 0, "side": 94, "signal": 84, "size": [0, 58], "sort": 23, "sourc": 0, "space": [59, 94, 98], "spatial_averag": 55, "specif": 94, "specifi": 72, "stack": 0, "start": 1, "stat": [0, 20], "stats_tabl": 21, "step": 0, "stitch": 0, "structur": 0, "subpackag": 75, "subsystem": 2, "subtract": 0, "sunburst": 22, "support": 1, "syntax": 0, "t": [20, 62], "tabl": 23, "test": [20, 62], "tif": 0, "tif_to_tif": 42, "tissu": [94, 98], "to_atla": 95, "to_n": 96, "todo": [0, 2], "toggl": 83, "toggle_sampl": 83, "train": 0, "transpose_ax": 57, "tukei": [20, 62], "txt": 0, "typic": 0, "u": 1, "un": 1, "unique_intens": 58, "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], "unravel_command": 76, "up": [0, 2], "us": 1, "usag": [3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 93, 94, 95, 96, 98], "util": [31, 77, 78, 79, 80, 81, 82, 83], "utils_agg_fil": 0, "utils_clean_tif": 0, "utils_prepend": 0, "valid": [0, 1], "vari": 0, "variabl": 0, "visual": 1, "volum": 23, "voxel": [0, 58, 84], "voxel_stat": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94], "vstat": [0, 91], "vstats_prep": [0, 92], "vstats_whole_to_avg": 0, "vstats_z_scor": 0, "w": [62, 94], "wa": 58, "warp": [94, 95, 96, 97, 98], "warp_to_n": 59, "welcom": 1, "were": 72, "when": [36, 77], "where": 84, "which": 58, "whole_to_lr_avg": 93, "window": 2, "wirefram": 48, "wise": 0, "workflow": 0, "wsl": 2, "x": 0, "y": 0, "z": [0, 35, 94], "z_score": 94, "zarr_to_nii": 44, "zero": [58, 84], "zshrc": 2}})
\ No newline at end of file
diff --git a/unravel/docs/_build/html/unravel/cluster_stats/cluster_summary.html b/unravel/docs/_build/html/unravel/cluster_stats/cluster_summary.html
index 87964026..9271273c 100644
--- a/unravel/docs/_build/html/unravel/cluster_stats/cluster_summary.html
+++ b/unravel/docs/_build/html/unravel/cluster_stats/cluster_summary.html
@@ -492,14 +492,28 @@
 

Usage if running directly after cluster_validation:#

-

cluster_summary -c <path/config.ini> -e <exp dir paths> -cvd ‘*’ -vd <path/vstats_dir> -sk <path/sample_key.csv> –groups <group1> <group2> -v

+

cluster_summary -c <path/config.ini> -e <exp dir paths> -cvd ‘psilocybin_v_saline_tstat1_q<asterisk>’ -vd <path/vstats_dir> -sk <path/sample_key.csv> –groups <group1> <group2> -hg <higher_group> -v

+
+

Note

+
    +
  • The current working directory should not have other directories when running this script for the first time. Directories from cluster_org_data are ok though.

  • +
+

Usage if running after cluster_validation and cluster_org_data:#

-

cluster_summary -c <path/config.ini> -sk <path/sample_key.csv> –groups <group1> <group2> -v

+

cluster_summary -c <path/config.ini> -sk <path/sample_key.csv> –groups <group1> <group2> -hg <higher_group> -v

+
+

Note

+
    +
  • For the second usage, the -e, -cvd, and -vd arguments are not needed because the data is already in the working directory.

  • +
  • Only process one comparison at a time. If you have multiple comparisons, run this script separately for each comparison in separate directories.

  • +
  • Then aggregate the results as needed (e.g. to make a legend with all relevant abbeviations, copy the .xlsx files to a central location and run cluster_legend).

  • +
+

The current working directory should not have other directories when running this script for the first time. Directories from cluster_org_data are ok though.

Runs commands in this order:
    @@ -519,6 +533,8 @@

    Usage if running after

+

If you need to rerun this script, delete the following directories and files in the current working directory: +find . -name _valid_clusters -exec rm -rf {} ; -o -name cluster_validation_summary_t-test.csv -exec rm -f {} ; -o -name cluster_validation_summary_tukey.csv -exec rm -f {} ; -o -name 3D_brains -exec rm -rf {} ; -o -name valid_clusters_tables_and_legend -exec rm -rf {} ; -o -name _valid_clusters_stats -exec rm -rf {} ;

diff --git a/unravel/docs/_build/html/unravel/cluster_stats/stats.html b/unravel/docs/_build/html/unravel/cluster_stats/stats.html index cb152b18..f173e759 100644 --- a/unravel/docs/_build/html/unravel/cluster_stats/stats.html +++ b/unravel/docs/_build/html/unravel/cluster_stats/stats.html @@ -492,17 +492,25 @@

T-test usage:#

-

cluster_stats –groups <group1> <group2>

+

cluster_stats –groups <group1> <group2> -hg <group1|group2>

Tukey’s test usage:#

-

cluster_stats –groups <group1> <group2> <group3> <group4> …

+

cluster_stats –groups <group1> <group2> <group3> <group4> … -hg <group1|group2>

+
+

Note

+
    +
  • Organize data in directories for each comparison (e.g., psilocybin > saline, etc.)

  • +
  • This script will loop through all directories in the current working dir and process the data in each subdir.

  • +
  • Each subdir should contain .csv files with the density data for each cluster.

  • +
  • The first 2 groups reflect the main comparison for validation rates.

  • +
  • Clusters are not considered valid if the effect direction does not match the expected direction.

  • +
+
-
Input subdirs:

<asterisk>

-
Input files:

<asterisk>_density_data.csv from cluster_validation (e.g., in each subdir named after the rev_cluster_index.nii.gz file)

CSV naming conventions: