Browse Source

temp stage

arefks 1 month ago
parent
commit
131d565302

+ 101 - 0
code/correlation_between_bahavior_and_DTI_anovaSpecific.py

@@ -0,0 +1,101 @@
+import os
+import pandas as pd
+from scipy.stats import spearmanr, shapiro, pearsonr
+import numpy as np
+from statsmodels.stats.multitest import multipletests
+
+# Get the directory where the code file is located
+code_dir = os.path.dirname(os.path.abspath(__file__))
+
+# Get the parent directory of the code directory
+parent_dir = os.path.dirname(code_dir)
+
+# Step 4: Save the resulting dataframe to a CSV file
+input_file_path = os.path.join(parent_dir, 'output', "Final_Quantitative_output", 'Quantitative_results_from_dwi_processing_merged_with_behavior_data.csv')
+
+input_anova_file = os.path.join(parent_dir, 'output', "Final_Quantitative_output","mixed_model_analysis",'mixed_model_results.csv')
+df_annova = pd.read_csv(input_anova_file)
+df_annova2 = df_annova[df_annova["p_value"]<=0.05]
+
+
+
+
+
+
+df_temp = pd.read_csv(input_file_path)
+# Filter df based on condition
+df_f1 = df_temp[df_temp["dialation_amount"] == 0]
+
+# Merge df_f1 and df_annova2 on common columns "Qtype" and "mask_name"
+merged_df = pd.merge(df_f1, df_annova2[['Qtype', 'mask_name', 'p_value']], on=['Qtype', 'mask_name'], how='left')
+
+# Display the merged DataFrame
+print(merged_df)
+
+
+#%%
+# Empty list to store the results
+results = []
+
+df = merged_df[(merged_df["p_value"]<=0.05) & (merged_df["merged_timepoint"]<40)]
+df.dropna(subset=['p_value'], inplace=True)
+
+
+# Iterate over unique values of 'Group', 'merged_timepoint', 'Qtype', and 'mask_name'
+for ss in df["Group"].unique():
+    for time_point in df["merged_timepoint"].unique():
+        for qq in df["Qtype"].unique():
+            for mm in df["mask_name"].unique():
+                # Filter the DataFrame for the current combination of 'Group', 'merged_timepoint', 'Qtype', and 'mask_name'
+                df_f2 = df[(df["Group"] == ss) & (df["merged_timepoint"] == time_point) & (df["Qtype"] == qq) & (df["mask_name"] == mm)]
+
+                # Remove rows with NaN values in 'Value' or 'averageScore' columns
+                df_f2 = df_f2.dropna(subset=['Value', 'averageScore'])
+
+                if not df_f2.empty:
+                    
+                    shapiro_statValue, shapiro_pvalueQValue = shapiro(df_f2["Value"])
+                    shapiro_statScore, shapiro_pvalueBehavior = shapiro(df_f2["averageScore"])
+                    
+                    if shapiro_pvalueQValue < 0.05 or shapiro_pvalueBehavior < 0.05:
+                        correlation_coefficient, p_value = spearmanr(df_f2["Value"], df_f2["averageScore"])
+                    else:
+                        correlation_coefficient, p_value = pearsonr(df_f2["Value"], df_f2["averageScore"])
+                   
+
+                    # Store the results in a dictionary
+                    result = {'Group': ss, 'merged_timepoint': time_point, 'Qtype': qq, 'mask_name': mm, 
+                              'Pval': p_value, 'R': correlation_coefficient,
+                              'shapiro-wilk_pvalue_qtype': shapiro_pvalueQValue,'shapiro-wilk_pvalue_behavior': shapiro_pvalueBehavior}
+
+                    # Append the dictionary to the results list
+                    results.append(result)
+                else:
+                    print(
+                        f"No valid data found for Group: {ss}, merged_timepoint: {time_point}, Qtype: {qq}, and mask_name: {mm}. Skipping.")
+
+# Create a DataFrame from the results list
+correlation_results_df = pd.DataFrame(results)
+
+# Apply FDR correction to p-values within each Qtype and each Group separately
+unique_qtypes = correlation_results_df['Qtype'].unique()
+unique_groups = df["Group"].unique()
+unique_masks = df["mask_name"].unique()
+unique_tp = df["merged_timepoint"].unique()
+for qtype in unique_qtypes:
+    for tt in unique_tp:
+        time_mask = correlation_results_df['merged_timepoint'] == tt
+        qtype_group_mask = time_mask  & (correlation_results_df['Qtype'] == qtype)
+        p_values = correlation_results_df[qtype_group_mask]['Pval']
+        rejected, p_values_corrected, _, _ = multipletests(p_values, method='fdr_bh')
+    
+        # Assign the corrected p-values to the DataFrame
+        correlation_results_df.loc[qtype_group_mask, 'Pval_corrected'] = p_values_corrected
+        
+# Define the output file path
+output_file_path = os.path.join(parent_dir, 'output', "Correlation_with_behavior", 'correlation_dti_with_behavior6.csv')
+
+# Save the correlation results DataFrame to a CSV file
+correlation_results_df.to_csv(output_file_path, index=False)
+
+print("Correlation results with corrected p-values saved successfully to 'correlation_results.csv' in the output folder.")

+ 32 - 0
code/register_masks.py

@@ -57,6 +57,38 @@ def main():
                 
             progress_bar.update(1)
     
+    registered_masks_path = os.path.join(args.input,"**","RegisteredTractMasks", "*.nii.gz")
+    registered_masks_files = glob.glob(registered_masks_path, recursive=True)
+
+    total_iterations = len(registered_masks_files)
+    progress_bar = tqdm(total=total_iterations, desc='Flipping Masks', unit='files')
+
+    for mask_file in registered_masks_files:
+        # Load the mask file
+        mask_nifti = nib.load(mask_file)
+        mask_data = mask_nifti.get_fdata()
+
+        # Flip the mask along the Y and Z axes
+        #flipped_mask = np.flip(np.flip(mask_data, axis=0), axis=1)
+        flipped_mask = np.flip(mask_data, axis=0)
+        
+
+        # Determine the directory to save the adjusted mask
+        mask_dir = os.path.dirname(os.path.dirname(mask_file))
+        adjusted_masks_dir = os.path.join(mask_dir, "RegisteredTractMasks")
+
+
+
+        # Define the new file name and save the flipped mask
+        if "anat" in mask_file:
+            adjusted_mask_file = os.path.join(adjusted_masks_dir, os.path.basename(mask_file).replace(".nii.gz",".nii.gz"))
+            nib.save(nib.Nifti1Image(flipped_mask, mask_nifti.affine), adjusted_mask_file)
+
+        progress_bar.update(1)
+
+    progress_bar.close()
+    print("Flipping of RegisteredTractMasks and saving to RegisteredTractMasks_adjusted: DONE\n")
+        
     progress_bar.close()
     print("Registered all masks to t2w space of individual mice: DONE\n")
     

+ 409 - 0
output/Correlation_with_behavior/correlation_dti_with_behavior6.csv

@@ -0,0 +1,409 @@
+Group,merged_timepoint,Qtype,mask_name,Pval,R,shapiro-wilk_pvalue_qtype,shapiro-wilk_pvalue_behavior,Pval_corrected
+Stroke,3,fa,CC_Mos_Mos.tt,0.7116433928775865,-0.060305827994547694,0.9856046117164531,0.2812772323177054,0.7889181262467759
+Stroke,3,fa,CC_MOs_MOs_cut.tt,0.5623572011185416,0.0943905118190503,0.3789676848733665,0.2812772323177054,0.731064361454104
+Stroke,3,fa,CC_SSp_ll.tt,0.22684946518502264,0.19543087870034653,0.025019439376163903,0.2812772323177054,0.645468372933177
+Stroke,3,fa,CC_SSp_ll_cut.tt,0.20164490787630085,0.20625362388401944,0.35850409926784116,0.2812772323177054,0.645468372933177
+Stroke,3,fa,CC_SSp_ul_cut.tt,0.17150288912501377,0.22052377809192242,0.5536881341261187,0.2812772323177054,0.645468372933177
+Stroke,3,fa,CST_links_CCasROA,0.5411719491570839,-0.09952989135250592,0.053718781249657364,0.2812772323177054,0.731064361454104
+Stroke,3,fa,Retikulospinal_tract_links,0.4377917752677395,-0.12619487812343624,0.7676780251241678,0.2812772323177054,0.6822691152518381
+Stroke,3,fa,Rubrospinal_tract_links_,0.3326377851310037,0.15721286810523308,0.0635794113392485,0.2812772323177054,0.6652755702620075
+Stroke,3,fa,Thalamocorticale_links_SSp_and_SSs_End,0.286519627854422,0.1727222921179174,0.12244680570724698,0.2812772323177054,0.645468372933177
+Stroke,3,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.7011757800711377,0.06259908552710987,0.8314513767727318,0.2812772323177054,0.7889181262467759
+Stroke,3,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.24867930172028946,0.186705448206284,0.012765793677594508,0.2812772323177054,0.645468372933177
+Stroke,3,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.09961460563998434,0.2640986165027037,0.1951326026076059,0.2812772323177054,0.645468372933177
+Stroke,3,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.2979084798153125,0.16875242167191362,0.39163769915474667,0.2812772323177054,0.645468372933177
+Stroke,3,md,CC_MOs_MOs_cut.tt,0.019195234362697315,-0.36879489918028213,0.1256430286099548,0.2812772323177054,0.19515372165140446
+Stroke,3,md,CC_SSp_ll_cut.tt,0.5327115400864264,0.10160904543085708,2.567666995983969e-05,0.2812772323177054,0.6915263073128595
+Stroke,3,md,CC_SSp_ul_cut.tt,0.3304955849930875,0.15790214539255076,0.00010199701110688731,0.2812772323177054,0.56656385998815
+Stroke,3,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.4999940015913329,-0.10980644514550267,0.38357992579715233,0.2812772323177054,0.6915263073128595
+Stroke,3,md,CC_MOp(dilated)_cut.tt,0.12376323586291119,-0.24740817433164372,0.04597161267274459,0.2812772323177054,0.43794092015960817
+Stroke,3,md,CC_MOp_MOp_cut.tt,0.03252562027523408,-0.33870788163722376,0.06586847691194582,0.2812772323177054,0.19515372165140446
+Stroke,3,ad,CC_MOs_MOs_cut.tt,0.05101424455332754,-0.31070533985920085,0.2657763545394791,0.2812772323177054,0.39579366333763205
+Stroke,3,ad,CC_SSp_ll_cut.tt,0.49132560855236185,0.11202326892377042,0.00023139182794261427,0.2812772323177054,0.8039873594493193
+Stroke,3,ad,CC_SSp_ul_cut.tt,0.2716197171082959,0.178073839545491,0.0003023193525883506,0.2812772323177054,0.8039873594493193
+Stroke,3,ad,CST_links_CCasROA,0.4741535509786071,-0.1164753682634334,0.3503838907576218,0.2812772323177054,0.8039873594493193
+Stroke,3,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.7914538576858164,-0.04315804330396515,0.019423534966154773,0.2812772323177054,0.9468595479270779
+Stroke,3,ad,CC_MOp(dilated)_cut.tt,0.15177583889286697,-0.2308687840152611,0.5794167102392254,0.2812772323177054,0.6829912750179014
+Stroke,3,ad,CC_MOp_MOp_cut.tt,0.06596561055627201,-0.2935833760132236,0.11529345187071471,0.2812772323177054,0.39579366333763205
+Stroke,3,ad,CST_links_CC_cut,0.41701796815780123,-0.13194767293967863,0.7077954347981552,0.2812772323177054,0.8039873594493193
+Stroke,3,ad,CST_links_ROA_CC_fibers_cut,0.4598043321914167,-0.12026120000133879,0.8623876390334632,0.2812772323177054,0.8039873594493193
+Stroke,3,rd,CC_SSp_ll_cut.tt,0.5086444476289085,0.10761364276010442,1.3971126737475231e-05,0.2812772323177054,0.5086444476289085
+Stroke,3,rd,CC_SSp_ul_cut.tt,0.36161791310932434,0.14814467473252388,7.514159932108514e-05,0.2812772323177054,0.5064902760659021
+Stroke,3,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.27279140448023487,-0.17764615200666492,0.9225812985740909,0.2812772323177054,0.5064902760659021
+Stroke,3,rd,CC_MOp(dilated)_cut.tt,0.14917789888893443,-0.2323028591752559,0.02146021719226013,0.2812772323177054,0.4475336966668033
+Stroke,3,rd,CC_MOp_MOp_cut.tt,0.032311016537512116,-0.3391027190096126,0.35808734761317595,0.2812772323177054,0.1938660992250727
+Stroke,3,rd,Rubrospinal_tract_rechts,0.05907655700227042,-0.3010404306127394,0.07972538306781185,0.2812772323177054,0.2363062280090817
+Stroke,14,fa,CC_Mos_Mos.tt,0.2766098581076124,-0.1891021169973806,0.0003036517033830814,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,CC_MOs_MOs_cut.tt,0.6502590327619256,0.07940143340012222,0.09158243071096972,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,CC_SSp_ll.tt,0.3534889088091523,-0.16167044567721991,0.2518885845961264,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,CC_SSp_ll_cut.tt,0.4655655809336716,-0.12746883442045656,0.0013690604474546806,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,CC_SSp_ul_cut.tt,0.26552481671656747,-0.19344446190620937,0.0013033141300008615,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,CST_links_CCasROA,0.5101222282359146,0.11514217790507175,0.00023225965807834446,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,Retikulospinal_tract_links,0.9598730753011551,0.008824765459877763,0.0002622390109300913,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,Rubrospinal_tract_links_,0.9518796753154714,-0.010584551485198714,0.9223834405226351,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,Thalamocorticale_links_SSp_and_SSs_End,0.8142951486548333,0.04118223881276289,0.0033999283746603682,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.8915359341647262,0.023914451362122238,0.4520027441503568,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.774817083749673,-0.050147079914860934,0.024285816679637022,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.9274557525233493,-0.015968623213112144,0.0005827918119691454,0.5906738736924936,0.9882136937398391
+Stroke,14,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.3708769005799142,-0.15599051084234122,0.10976212335630131,0.5906738736924936,0.9882136937398391
+Stroke,14,md,CC_MOs_MOs_cut.tt,0.6975926522039166,-0.06807676211905701,1.8801435930839163e-06,0.5906738736924936,0.9022565628972018
+Stroke,14,md,CC_SSp_ll_cut.tt,0.8655285039929708,0.029696036150699774,2.6845015407590514e-07,0.5906738736924936,0.9022565628972018
+Stroke,14,md,CC_SSp_ul_cut.tt,0.8454588696503635,-0.034178456701748794,4.39058207380943e-08,0.5906738736924936,0.9022565628972018
+Stroke,14,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.5621262904322892,-0.10141476496748411,3.265979370768523e-07,0.5906738736924936,0.9022565628972018
+Stroke,14,md,CC_MOp(dilated)_cut.tt,0.12915274794964046,0.26150631527773316,0.32722806179435493,0.5906738736924936,0.5166109917985618
+Stroke,14,md,CC_MOp_MOp_cut.tt,0.2733610968776419,0.19036279777736315,5.717336976691296e-07,0.5906738736924936,0.8200832906329256
+Stroke,14,ad,CC_MOs_MOs_cut.tt,0.9808859957353377,-0.004202269266608458,0.042345067292963404,0.5906738736924936,0.9808859957353377
+Stroke,14,ad,CC_SSp_ll_cut.tt,0.7711426880769905,-0.05098753376818263,0.0007392855543453034,0.5906738736924936,0.8906336759493632
+Stroke,14,ad,CC_SSp_ul_cut.tt,0.5901203720020809,-0.09427090721424974,1.982736665203086e-05,0.5906738736924936,0.8906336759493632
+Stroke,14,ad,CST_links_CCasROA,0.33077233706550413,-0.16935145144432084,0.0004755889141454285,0.5906738736924936,0.83006668553339
+Stroke,14,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.1665493065109933,-0.23910912127002126,1.1177298277886798e-06,0.5906738736924936,0.83006668553339
+Stroke,14,ad,CC_MOp(dilated)_cut.tt,0.6608926215651338,0.07683116544333048,0.08491047818493316,0.5906738736924936,0.8906336759493632
+Stroke,14,ad,CC_MOp_MOp_cut.tt,0.5194906759508409,0.11262081634510668,0.000188927913957526,0.5906738736924936,0.8906336759493632
+Stroke,14,ad,CST_links_CC_cut,0.28687701036453056,-0.18517999901521273,6.1009143491152606e-05,0.5906738736924936,0.83006668553339
+Stroke,14,ad,CST_links_ROA_CC_fibers_cut,0.2432412757833481,-0.2025493786505277,3.139740021728542e-05,0.5906738736924936,0.83006668553339
+Stroke,14,rd,CC_SSp_ll_cut.tt,0.8056171677878322,0.04314329780384683,5.260757340703039e-07,0.5906738736924936,0.946996904591108
+Stroke,14,rd,CC_SSp_ul_cut.tt,0.5116777602003975,0.1147219509784109,6.17114909504232e-08,0.5906738736924936,0.946996904591108
+Stroke,14,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.8630150070966286,0.0302563387195809,3.46284187488101e-05,0.5906738736924936,0.946996904591108
+Stroke,14,rd,CC_MOp(dilated)_cut.tt,0.035953679898394715,0.355762272354543,0.24274565847150076,0.5906738736924936,0.31261366850851835
+Stroke,14,rd,CC_MOp_MOp_cut.tt,0.07815341712712959,0.3017229333424873,1.170824671008269e-05,0.5906738736924936,0.31261366850851835
+Stroke,14,rd,Rubrospinal_tract_rechts,0.7172531999092311,0.06345426592578772,4.8463932213599405e-05,0.5906738736924936,0.946996904591108
+Stroke,21,fa,CC_Mos_Mos.tt,0.12586135234862375,-0.263696376318889,0.12308237310202408,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,CC_MOs_MOs_cut.tt,0.4573470175775917,-0.12980883322082912,0.47398253996084305,0.1932897942555643,0.6417102223801856
+Stroke,21,fa,CC_SSp_ll.tt,0.4621438903971087,0.12844036728745198,0.035346759459932424,0.1932897942555643,0.6417102223801856
+Stroke,21,fa,CC_SSp_ll_cut.tt,0.20909201010274242,-0.21766230181537663,0.0037627314846865414,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,CC_SSp_ul_cut.tt,0.09243777181242323,-0.2888157441076619,0.032639037739106716,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,CST_links_CCasROA,0.09615859976296372,-0.28570782025375013,0.47228610160651974,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,Retikulospinal_tract_links,0.11031684198320545,-0.2746585398875432,0.9731188378012313,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,Rubrospinal_tract_links_,0.32738630214884656,0.17052377047522194,0.8742477795374626,0.1932897942555643,0.567469590391334
+Stroke,21,fa,Thalamocorticale_links_SSp_and_SSs_End,0.027634921503128247,0.37230157448719403,0.8303531420687233,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.485407897948857,0.1219075740304336,0.10276473472984449,0.1932897942555643,0.6417102223801856
+Stroke,21,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.7492147742394414,0.056027218460069216,0.9081033670136841,0.1932897942555643,0.8116493387593948
+Stroke,21,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.15372110430065505,0.24633650719420894,0.9260915267574035,0.1932897942555643,0.45303268855594186
+Stroke,21,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.4936232479847582,0.11963963261611461,0.3450026829557439,0.1932897942555643,0.6417102223801856
+Stroke,21,md,CC_MOs_MOs_cut.tt,0.058768205637168384,0.3225716094471122,0.004631894809174999,0.1932897942555643,0.17630461691150517
+Stroke,21,md,CC_SSp_ll_cut.tt,0.3548624122058279,-0.16121577180791408,3.954618891015332e-05,0.1932897942555643,0.6083355637814193
+Stroke,21,md,CC_SSp_ul_cut.tt,0.8737149839180851,0.027873100425521203,0.0008052088300705784,0.1932897942555643,0.9317681285620684
+Stroke,21,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.564327033844819,-0.10084739852449882,0.0012095085131137548,0.1932897942555643,0.8464905507672285
+Stroke,21,md,CC_MOp(dilated)_cut.tt,0.015196021820659343,0.4071812110125153,0.4014527567784143,0.1932897942555643,0.06078408728263737
+Stroke,21,md,CC_MOp_MOp_cut.tt,0.004612655912547022,0.46767981065736325,0.005934099078411985,0.1932897942555643,0.027675935475282132
+Stroke,21,ad,CC_MOs_MOs_cut.tt,0.06957238571638989,0.31038441749601714,0.5664723613904137,0.1932897942555643,0.1891996357767516
+Stroke,21,ad,CC_SSp_ll_cut.tt,0.05830548204095293,-0.3231318727722483,3.777469853347858e-05,0.1932897942555643,0.1891996357767516
+Stroke,21,ad,CC_SSp_ul_cut.tt,0.29818069140764325,-0.18096505401896176,0.0009057552716064526,0.1932897942555643,0.4472710371114649
+Stroke,21,ad,CST_links_CCasROA,0.00019750436068291288,-0.58897682054933,0.03903542669229639,0.1932897942555643,0.0035550784922924322
+Stroke,21,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.5337291143198892,-0.10883115090768831,0.00047326283071310785,0.1932897942555643,0.739009542904462
+Stroke,21,ad,CC_MOp(dilated)_cut.tt,0.0840887270118896,0.2961554262944276,0.7122093940797035,0.1932897942555643,0.1891996357767516
+Stroke,21,ad,CC_MOp_MOp_cut.tt,0.08391791179313797,0.2963113403304647,0.3976091533068542,0.1932897942555643,0.1891996357767516
+Stroke,21,ad,CST_links_CC_cut,0.020181905391022357,-0.3910699175749069,0.2650101782320875,0.1932897942555643,0.0908185742596006
+Stroke,21,ad,CST_links_ROA_CC_fibers_cut,0.01374645270369368,-0.41269856114740533,0.2741814447878118,0.1932897942555643,0.0908185742596006
+Stroke,21,rd,CC_SSp_ll_cut.tt,0.8529846610748455,-0.03249527285789406,0.0008463787185536313,0.1932897942555643,0.9305287211725588
+Stroke,21,rd,CC_SSp_ul_cut.tt,0.6040881300965988,0.09076265867204894,0.0036459545560986505,0.1932897942555643,0.9061321951448982
+Stroke,21,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.5342589453263122,-0.10869108507640428,0.007642850108253886,0.1932897942555643,0.9061321951448982
+Stroke,21,rd,CC_MOp(dilated)_cut.tt,0.007566619385280589,0.44384445134342876,0.24522637953394788,0.1932897942555643,0.04000046092603473
+Stroke,21,rd,CC_MOp_MOp_cut.tt,0.004927113004318093,0.4645983623691147,0.001497521253667176,0.1932897942555643,0.04000046092603473
+Stroke,21,rd,Rubrospinal_tract_rechts,0.40878695774897167,-0.1441277403912629,0.005730366892248041,0.1932897942555643,0.9061321951448982
+Stroke,28,fa,CC_Mos_Mos.tt,0.03653609701151286,-0.38331479421579534,0.3555965289213255,0.026177335729387796,0.2144730048012062
+Stroke,28,fa,CC_MOs_MOs_cut.tt,0.12383155684423591,-0.28720800889877635,0.3109306494207714,0.026177335729387796,0.4024525597437667
+Stroke,28,fa,CC_SSp_ll.tt,0.04124480861561658,-0.37486095661846497,0.9165547914197356,0.026177335729387796,0.2144730048012062
+Stroke,28,fa,CC_SSp_ll_cut.tt,0.005419644177361213,-0.49499443826473855,0.489688863511433,0.026177335729387796,0.14091074861139152
+Stroke,28,fa,CC_SSp_ul_cut.tt,0.0267268691213901,-0.4042269187986652,0.5049206852768571,0.026177335729387796,0.2144730048012062
+Stroke,28,fa,CST_links_CCasROA,0.937688329422283,-0.014905450500556172,0.2093787140014562,0.026177335729387796,0.9581267661503257
+Stroke,28,fa,Retikulospinal_tract_links,0.7251507830564099,-0.06696329254727475,0.8398993975510858,0.026177335729387796,0.8961238882854425
+Stroke,28,fa,Rubrospinal_tract_links_,0.06701925364562651,-0.3388209121245828,0.32260367830073233,0.026177335729387796,0.29041676579771486
+Stroke,28,fa,Thalamocorticale_links_SSp_and_SSs_End,0.9581267661503257,-0.010011123470522802,0.764563658542695,0.026177335729387796,0.9581267661503257
+Stroke,28,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.3256980819106049,-0.185761957730812,0.2270342215994156,0.026177335729387796,0.718004899373519
+Stroke,28,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.11727604296198565,-0.2921023359288098,0.6980642487514863,0.026177335729387796,0.4024525597437667
+Stroke,28,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.03748958479705709,-0.3815350389321468,0.13120054736220543,0.026177335729387796,0.2144730048012062
+Stroke,28,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.3866180227395871,-0.16395995550611792,0.6775047878123197,0.026177335729387796,0.718004899373519
+Stroke,28,md,CC_MOs_MOs_cut.tt,0.5341252028753447,0.11813125695216908,0.03962864349840888,0.026177335729387796,0.9156432049291623
+Stroke,28,md,CC_SSp_ll_cut.tt,0.7163871282771048,0.06918798665183537,0.0215817560894768,0.026177335729387796,0.9551828377028064
+Stroke,28,md,CC_SSp_ul_cut.tt,0.71114575289809,0.07052280311457175,0.0015963087888993886,0.026177335729387796,0.9551828377028064
+Stroke,28,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.8436332422166452,0.03759733036707453,0.05077100992994161,0.026177335729387796,0.958190162801108
+Stroke,28,md,CC_MOp(dilated)_cut.tt,0.004205264047316859,0.5074527252502781,0.4527239660127628,0.026177335729387796,0.05046316856780231
+Stroke,28,md,CC_MOp_MOp_cut.tt,0.05337938929012549,0.3561735261401557,0.08256001876816729,0.026177335729387796,0.1482221285022769
+Stroke,28,ad,CC_MOs_MOs_cut.tt,0.6192033775609249,-0.09454949944382647,0.8183450612197469,0.026177335729387796,0.915640907990549
+Stroke,28,ad,CC_SSp_ll_cut.tt,0.12261998550276809,-0.28809788654060065,0.30859103161591417,0.026177335729387796,0.5517899347624564
+Stroke,28,ad,CC_SSp_ul_cut.tt,0.3461271818881001,-0.17819799777530587,0.2649498897221523,0.026177335729387796,0.819120166108319
+Stroke,28,ad,CST_links_CCasROA,0.5095885796995014,-0.12525027808676306,0.47278077215153425,0.026177335729387796,0.8338722213264569
+Stroke,28,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.8509511779244581,-0.035817575083426034,0.4133540280765381,0.026177335729387796,0.915640907990549
+Stroke,28,ad,CC_MOp(dilated)_cut.tt,0.01863033762195504,0.4269187986651835,0.42398942541236573,0.026177335729387796,0.3353460771951907
+Stroke,28,ad,CC_MOp_MOp_cut.tt,0.4550667589490661,0.14171301446051168,0.7504052508059698,0.026177335729387796,0.819120166108319
+Stroke,28,ad,CST_links_CC_cut,0.40114237667252206,-0.15906562847608455,0.25673302216099736,0.026177335729387796,0.819120166108319
+Stroke,28,ad,CST_links_ROA_CC_fibers_cut,0.4105440551156686,-0.15595105672969967,0.3610438377563199,0.026177335729387796,0.819120166108319
+Stroke,28,rd,CC_SSp_ll_cut.tt,0.024602214878570946,0.40956618464961064,0.01654768922116977,0.026177335729387796,0.07380664463571285
+Stroke,28,rd,CC_SSp_ul_cut.tt,0.2236755678450295,0.2289210233592881,0.0010296248407854881,0.026177335729387796,0.38344383059147913
+Stroke,28,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.46224773674605024,0.13948832035595105,0.003596613357957722,0.026177335729387796,0.690858345342518
+Stroke,28,rd,CC_MOp(dilated)_cut.tt,0.004651170672352952,0.5025583982202447,0.551595825615737,0.026177335729387796,0.046741532978000565
+Stroke,28,rd,CC_MOp_MOp_cut.tt,0.0651328204807312,0.3410456062291435,0.022767675446321058,0.026177335729387796,0.1302656409614624
+Stroke,28,rd,Rubrospinal_tract_rechts,0.6275095966615662,0.09232480533926585,0.00470134686694167,0.026177335729387796,0.690858345342518
+Stroke,7,fa,CC_Mos_Mos.tt,0.02801697178763566,0.38252776297627816,0.7769775954892347,0.4199000439493814,0.36422063323926357
+Stroke,7,fa,CC_MOs_MOs_cut.tt,0.7626042659546919,0.054650288483611156,0.030777916752864565,0.4199000439493814,0.8620743876009561
+Stroke,7,fa,CC_SSp_ll.tt,0.6138428742532052,0.09117091607221649,0.27209113046889055,0.4199000439493814,0.7599959395515873
+Stroke,7,fa,CC_SSp_ll_cut.tt,0.5947835867389967,-0.09608501322751811,0.501813178375349,0.4199000439493814,0.7599959395515873
+Stroke,7,fa,CC_SSp_ul_cut.tt,0.19978466232740172,-0.22904686392697912,0.9470811630536222,0.4199000439493814,0.7527583671578699
+Stroke,7,fa,CST_links_CCasROA,0.9272727901618761,0.01652535376043697,0.16154194459381493,0.4199000439493814,0.9383030860180518
+Stroke,7,fa,Retikulospinal_tract_links,0.7513440775100563,-0.057324528139672544,0.49038984623815846,0.4199000439493814,0.8620743876009561
+Stroke,7,fa,Rubrospinal_tract_links_,0.300322331055581,0.18588970219377726,0.6579378905476285,0.4199000439493814,0.7527583671578699
+Stroke,7,fa,Thalamocorticale_links_SSp_and_SSs_End,0.23840544361617586,0.21105038599169212,0.8323777737884854,0.4199000439493814,0.7527583671578699
+Stroke,7,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.568391800748185,0.10300459899605674,0.7613935881570219,0.4199000439493814,0.7599959395515873
+Stroke,7,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.4004452585205127,0.15135921835479005,0.4922362251426166,0.4199000439493814,0.7527583671578699
+Stroke,7,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.0742420097546444,0.31493083491620855,0.9890064218740727,0.4199000439493814,0.6434307512069181
+Stroke,7,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.3687846314813362,0.16165325802619415,0.788461420039362,0.4199000439493814,0.7527583671578699
+Stroke,7,md,CC_MOs_MOs_cut.tt,0.45825388033875675,-0.13369137539759396,0.08225500989837949,0.4199000439493814,0.9229195712007805
+Stroke,7,md,CC_SSp_ll_cut.tt,0.8073830597239926,-0.044121333821631026,5.6388819494828763e-05,0.4199000439493814,0.9229195712007805
+Stroke,7,md,CC_SSp_ul_cut.tt,0.47945384360011234,0.1275173397950927,0.004219876977631125,0.4199000439493814,0.9229195712007805
+Stroke,7,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.05140285141665359,-0.3420029970727777,0.9207303335347804,0.4199000439493814,0.6168342169998432
+Stroke,7,md,CC_MOp(dilated)_cut.tt,0.4266181810720357,0.1431963446820171,0.46587599058960627,0.4199000439493814,0.9229195712007805
+Stroke,7,md,CC_MOp_MOp_cut.tt,0.7228528869858826,-0.06414611960542235,0.2810057766610238,0.4199000439493814,0.9229195712007805
+Stroke,7,ad,CC_MOs_MOs_cut.tt,0.8470789502304752,0.0349060446556057,0.2987243649925757,0.4199000439493814,0.9539909302858347
+Stroke,7,ad,CC_SSp_ll_cut.tt,0.3212293448028464,-0.17815659793128286,0.013344113112386946,0.4199000439493814,0.8999974101121146
+Stroke,7,ad,CC_SSp_ul_cut.tt,0.4265174708476098,-0.14322720865582494,0.000249948377950856,0.4199000439493814,0.8999974101121146
+Stroke,7,ad,CST_links_CCasROA,0.4690612570708622,-0.13052561255565845,0.0425030118847394,0.4199000439493814,0.8999974101121146
+Stroke,7,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.08271092203057383,-0.30655367532036765,0.7301945655055438,0.4199000439493814,0.8975887382033505
+Stroke,7,ad,CC_MOp(dilated)_cut.tt,0.6318930818668234,0.08657567760878362,0.14432366766931842,0.4199000439493814,0.9539909302858347
+Stroke,7,ad,CC_MOp_MOp_cut.tt,0.8540979770644502,0.033286159554164745,0.16604800017214766,0.4199000439493814,0.9539909302858347
+Stroke,7,ad,CST_links_CC_cut,0.499998561173397,-0.12166792053843707,0.03836782680374619,0.4199000439493814,0.8999974101121146
+Stroke,7,ad,CST_links_ROA_CC_fibers_cut,0.45935591703936274,-0.13336675905174833,0.025282247053564584,0.4199000439493814,0.8999974101121146
+Stroke,7,rd,CC_SSp_ll_cut.tt,0.24914579118392044,0.20640093662770573,0.0008574679376340146,0.4199000439493814,0.6169733213458845
+Stroke,7,rd,CC_SSp_ul_cut.tt,0.9325611420267691,-0.015320875940183767,0.07090255245967443,0.4199000439493814,0.9515064313906725
+Stroke,7,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.05401186438355343,-0.33847849357776494,0.42551941472877064,0.4199000439493814,0.6169733213458845
+Stroke,7,rd,CC_MOp(dilated)_cut.tt,0.3599011041184326,0.16463414668282061,0.15116242622515025,0.4199000439493814,0.6169733213458845
+Stroke,7,rd,CC_MOp_MOp_cut.tt,0.5220209896535694,-0.11553081700756437,0.4879254520285226,0.4199000439493814,0.7830314844803541
+Stroke,7,rd,Rubrospinal_tract_rechts,0.2860040164257076,-0.19138433189185514,0.14347942216257847,0.4199000439493814,0.6169733213458845
+Stroke,0,fa,CC_Mos_Mos.tt,0.05922357441920469,0.3425748580772879,2.752786258455065e-06,0.001060111932557112,0.21997327641418887
+Stroke,0,fa,CC_MOs_MOs_cut.tt,0.9519274793250633,-0.011291460890128382,1.3582916137421682e-05,0.001060111932557112,0.9519274793250633
+Stroke,0,fa,CC_SSp_ll.tt,0.5620522745112415,0.10827704460712395,4.2347589789325545e-07,0.001060111932557112,0.8593470000345013
+Stroke,0,fa,CC_SSp_ll_cut.tt,0.4653576392665114,0.1361024303720832,6.937448290742759e-05,0.001060111932557112,0.846667207201547
+Stroke,0,fa,CC_SSp_ul_cut.tt,0.7868696993693428,0.050609940775396864,5.625581760711456e-07,0.001060111932557112,0.8593470000345013
+Stroke,0,fa,CST_links_CCasROA,0.08439405634970734,0.3149511055425095,2.7954827697009086e-06,0.001060111932557112,0.27428068313654885
+Stroke,0,fa,Retikulospinal_tract_links,0.5210259736624905,0.11977013872743321,5.482054994728123e-09,0.001060111932557112,0.846667207201547
+Stroke,0,fa,Rubrospinal_tract_links_,0.7221075666259789,0.0665389659596851,5.777087535632561e-07,0.001060111932557112,0.8593470000345013
+Stroke,0,fa,Thalamocorticale_links_SSp_and_SSs_End,0.03875159653456688,0.3730214758345984,2.1065014715519385e-07,0.001060111932557112,0.16792358498312315
+Stroke,0,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.34184472811873956,0.17663070963843686,8.754758659489785e-05,0.001060111932557112,0.7517598638362197
+Stroke,0,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.37465877419796745,0.1651376155181276,1.3896471360470147e-06,0.001060111932557112,0.7517598638362197
+Stroke,0,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.1510373630891938,0.26413953153693176,0.954564545280393,0.001060111932557112,0.4363301600354488
+Stroke,0,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.49727104472947503,0.12662566855358257,0.02660121841229769,0.001060111932557112,0.846667207201547
+Stroke,0,md,CC_MOs_MOs_cut.tt,0.7140325298020985,0.06855529826149376,1.3309288818852814e-09,0.001060111932557112,0.9605044907740853
+Stroke,0,md,CC_SSp_ll_cut.tt,0.9605044907740853,0.009275128588319742,7.281810957261698e-10,0.001060111932557112,0.9605044907740853
+Stroke,0,md,CC_SSp_ul_cut.tt,0.9125555928342368,0.020566589478448125,9.213949518220115e-09,0.001060111932557112,0.9605044907740853
+Stroke,0,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.3908240140210958,-0.15969351830324427,0.2663365429828981,0.001060111932557112,0.9605044907740853
+Stroke,0,md,CC_MOp(dilated)_cut.tt,0.8784804436200484,-0.028631918685682687,7.301806157002839e-06,0.001060111932557112,0.9605044907740853
+Stroke,0,md,CC_MOp_MOp_cut.tt,0.6631007688914006,0.08145982499306904,4.51723597465976e-09,0.001060111932557112,0.9605044907740853
+Stroke,0,ad,CC_MOs_MOs_cut.tt,0.5381206417443055,0.11493094120309247,6.840112135210346e-08,0.001060111932557112,0.8861084232719442
+Stroke,0,ad,CC_SSp_ll_cut.tt,0.49520160365922783,0.12723056824412515,1.650467984642629e-08,0.001060111932557112,0.8861084232719442
+Stroke,0,ad,CC_SSp_ul_cut.tt,0.6128421832722439,0.09456598495482521,4.104988443731719e-09,0.001060111932557112,0.8861084232719442
+Stroke,0,ad,CST_links_CCasROA,0.6220004854716634,0.09214638619265483,3.177552082598596e-07,0.001060111932557112,0.8861084232719442
+Stroke,0,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.9853989546352617,-0.0034277649130746877,0.4301008219333138,0.001060111932557112,0.9853989546352617
+Stroke,0,ad,CC_MOp(dilated)_cut.tt,0.9356464553053709,-0.015122492263564798,3.0664381984610694e-08,0.001060111932557112,0.9853989546352617
+Stroke,0,ad,CC_MOp_MOp_cut.tt,0.9057264241401795,0.022179655319895037,7.938683286024382e-09,0.001060111932557112,0.9853989546352617
+Stroke,0,ad,CST_links_CC_cut,0.6860130013063424,0.075612461317824,3.644176741232883e-07,0.001060111932557112,0.8861084232719442
+Stroke,0,ad,CST_links_ROA_CC_fibers_cut,0.6891954403226233,0.07480592839710054,4.051352284478679e-07,0.001060111932557112,0.8861084232719442
+Stroke,0,rd,CC_SSp_ll_cut.tt,0.9134096791471489,-0.02036495624826726,6.086656801808798e-08,0.001060111932557112,0.9879754051147203
+Stroke,0,rd,CC_SSp_ul_cut.tt,0.7993405129601479,-0.0475854423226839,2.288920442217099e-07,0.001060111932557112,0.9879754051147203
+Stroke,0,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.3635218173006066,-0.16896864689156402,0.7240287297504343,0.001060111932557112,0.8724523615214559
+Stroke,0,rd,CC_MOp(dilated)_cut.tt,0.7108109337101964,-0.06936183118221721,0.0009158154328479617,0.001060111932557112,0.9879754051147203
+Stroke,0,rd,CC_MOp_MOp_cut.tt,0.9879754051147203,0.0028228652225320955,1.0253845921491376e-07,0.001060111932557112,0.9879754051147203
+Stroke,0,rd,Rubrospinal_tract_rechts,0.03249872750800775,-0.38491783641526933,1.0062996367044034e-06,0.001060111932557112,0.389984730096093
+Sham,3,fa,CC_Mos_Mos.tt,0.01747262572335422,0.5012717257389062,3.4995187791817684e-06,2.2850762192985416e-05,0.2329462747160382
+Sham,3,fa,CC_MOs_MOs_cut.tt,0.1364444547884624,0.327776325736827,0.0004674749206186313,2.2850762192985416e-05,0.645468372933177
+Sham,3,fa,CC_SSp_ll.tt,0.017918944208926018,-0.49957633095061227,0.38984682749868804,2.2850762192985416e-05,0.2329462747160382
+Sham,3,fa,CC_SSp_ll_cut.tt,0.3748095714170788,-0.1989263218264881,0.5578466106389233,2.2850762192985416e-05,0.6822691152518381
+Sham,3,fa,CC_SSp_ul_cut.tt,0.4016424813696974,-0.18818882150062655,0.757709991369945,2.2850762192985416e-05,0.6822691152518381
+Sham,3,fa,CST_links_CCasROA,0.942293284089671,0.016388816286841353,0.024284859792582044,2.2850762192985416e-05,0.9641642975714295
+Sham,3,fa,Retikulospinal_tract_links,0.4460990368954326,0.17123487361768722,0.0011162022432394977,2.2850762192985416e-05,0.6822691152518381
+Sham,3,fa,Rubrospinal_tract_links_,0.9641642975714295,-0.010172368729763598,0.05422574263920822,2.2850762192985416e-05,0.9641642975714295
+Sham,3,fa,Thalamocorticale_links_SSp_and_SSs_End,0.5506648737233526,0.13450131987131866,5.093846922360659e-06,2.2850762192985416e-05,0.731064361454104
+Sham,3,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.13501775340318675,0.328906588929023,0.12963342208758033,2.2850762192985416e-05,0.645468372933177
+Sham,3,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.7282321165354855,-0.0785532918576189,0.0224906173715606,2.2850762192985416e-05,0.7889181262467759
+Sham,3,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.6289757203512611,0.1090703980469097,0.16066701737939265,2.2850762192985416e-05,0.7787318442444185
+Sham,3,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.19517224052461485,-0.2870868508177727,0.5394566606676534,2.2850762192985416e-05,0.645468372933177
+Sham,3,md,CC_MOs_MOs_cut.tt,0.7642822117321032,-0.06781579153175732,0.0035376889458086903,2.2850762192985416e-05,0.833762412798658
+Sham,3,md,CC_SSp_ll_cut.tt,0.9125367190362123,0.02486579022831101,0.0014814263696135113,2.2850762192985416e-05,0.9125367190362123
+Sham,3,md,CC_SSp_ul_cut.tt,0.5762719227607163,0.12602434592984904,0.001897872916039498,2.2850762192985416e-05,0.6915263073128595
+Sham,3,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.1459803067198694,-0.32042961498755335,7.023681768351048e-05,2.2850762192985416e-05,0.43794092015960817
+Sham,3,md,CC_MOp(dilated)_cut.tt,0.23843709537192148,-0.26222106058946165,0.8879760470533005,2.2850762192985416e-05,0.47687419074384296
+Sham,3,md,CC_MOp_MOp_cut.tt,0.18348051236605906,-0.29443356156704636,0.16509677498127706,2.2850762192985416e-05,0.44035322967854174
+Sham,3,ad,CC_MOs_MOs_cut.tt,0.9780961447614542,0.006216447557077753,0.018094506978046647,2.2850762192985416e-05,0.9780961447614542
+Sham,3,ad,CC_SSp_ll_cut.tt,0.8124330948742959,0.053687501629307875,0.001427206890942479,2.2850762192985416e-05,0.9468595479270779
+Sham,3,ad,CC_SSp_ul_cut.tt,0.5762719227607163,0.12602434592984904,0.0003966689954078029,2.2850762192985416e-05,0.8644078841410744
+Sham,3,ad,CST_links_CCasROA,0.841652931490736,-0.04521052768783822,0.05315245637020658,2.2850762192985416e-05,0.9468595479270779
+Sham,3,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.049323304368294664,-0.4238486970734833,0.0004527359657578937,2.2850762192985416e-05,0.39579366333763205
+Sham,3,ad,CC_MOp(dilated)_cut.tt,0.25670335070204175,-0.252613823455796,0.303306214386995,2.2850762192985416e-05,0.8039873594493193
+Sham,3,ad,CC_MOp_MOp_cut.tt,0.4537508755444073,-0.16840921563719735,0.08444697332009016,2.2850762192985416e-05,0.8039873594493193
+Sham,3,ad,CST_links_CC_cut,0.9661540351488558,0.009607237133665621,0.03215466952613201,2.2850762192985416e-05,0.9780961447614542
+Sham,3,ad,CST_links_ROA_CC_fibers_cut,0.824094363295369,0.050296712052720016,0.03256033935691409,2.2850762192985416e-05,0.9468595479270779
+Sham,3,rd,CC_SSp_ll_cut.tt,0.502679714286671,0.15089013615816002,0.0020121702791222706,2.2850762192985416e-05,0.5086444476289085
+Sham,3,rd,CC_SSp_ul_cut.tt,0.3817695943202942,0.19610066384599825,0.0013847530777689712,2.2850762192985416e-05,0.5064902760659021
+Sham,3,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.4220752300549184,-0.18027697915525487,0.0005554712954508376,2.2850762192985416e-05,0.5064902760659021
+Sham,3,rd,CC_MOp(dilated)_cut.tt,0.3080348113265441,-0.227748033227485,0.7150698643739141,2.2850762192985416e-05,0.5064902760659021
+Sham,3,rd,CC_MOp_MOp_cut.tt,0.3584037397569526,-0.20570790097966385,0.03491244827073071,2.2850762192985416e-05,0.5064902760659021
+Sham,3,rd,Rubrospinal_tract_rechts,0.018839196241826922,-0.49618554137402443,0.00011153231153093507,2.2850762192985416e-05,0.1938660992250727
+Sham,14,fa,CC_Mos_Mos.tt,0.49929707529931655,0.12186560360148802,0.6292446849395941,0.002572647703609409,0.9882136937398391
+Sham,14,fa,CC_MOs_MOs_cut.tt,0.0339991430923605,-0.37011035167859324,0.2295193717502852,0.002572647703609409,0.44198886020068645
+Sham,14,fa,CC_SSp_ll.tt,0.6477557349044352,0.08258108117851178,0.5983616981534419,0.002572647703609409,0.9882136937398391
+Sham,14,fa,CC_SSp_ll_cut.tt,0.8433228102390598,-0.035773990631986885,0.558215436861901,0.002572647703609409,0.9882136937398391
+Sham,14,fa,CC_SSp_ul_cut.tt,0.5703962018779674,-0.10247409466078486,0.6009289191298638,0.002572647703609409,0.9882136937398391
+Sham,14,fa,CST_links_CCasROA,0.5076336865098123,0.11952524907416177,0.4689950489794168,0.002572647703609409,0.9882136937398391
+Sham,14,fa,Retikulospinal_tract_links,0.22405905008244464,0.21748580286081742,0.09271528400576762,0.002572647703609409,0.9882136937398391
+Sham,14,fa,Rubrospinal_tract_links_,0.07230439154779543,0.3169508702721828,0.43457641566757543,0.002572647703609409,0.6266380600808937
+Sham,14,fa,Thalamocorticale_links_SSp_and_SSs_End,0.9882136937398391,-0.002674690888372851,0.0885281890739679,0.002572647703609409,0.9882136937398391
+Sham,14,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.2593478402050489,0.20210633025267355,0.9073947073090032,0.002572647703609409,0.9882136937398391
+Sham,14,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.8116352164767465,0.04312939057501222,0.04606469740894026,0.002572647703609409,0.9882136937398391
+Sham,14,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.014071736374245818,0.42343700126552697,0.7703923374227727,0.002572647703609409,0.36586514573039125
+Sham,14,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.6265491156756063,0.08793046295525747,0.986629678102635,0.002572647703609409,0.9882136937398391
+Sham,14,md,CC_MOs_MOs_cut.tt,0.523905253917883,0.11501170820003259,0.18982226953610398,0.002572647703609409,0.9022565628972018
+Sham,14,md,CC_SSp_ll_cut.tt,0.9022565628972018,0.022233368009599325,0.8104384409510643,0.002572647703609409,0.9022565628972018
+Sham,14,md,CC_SSp_ul_cut.tt,0.7681954786261092,-0.053326649586933714,0.12471962337162396,0.002572647703609409,0.9022565628972018
+Sham,14,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.05360652142994895,-0.33901707010125887,2.8856232291320795e-05,0.002572647703609409,0.5166109917985618
+Sham,14,md,CC_MOp(dilated)_cut.tt,0.11495946662892886,0.27967236601548623,0.2128069866934753,0.002572647703609409,0.5166109917985618
+Sham,14,md,CC_MOp_MOp_cut.tt,0.5703962018779674,0.10247409466078486,0.025466855881291835,0.002572647703609409,0.9022565628972018
+Sham,14,ad,CC_MOs_MOs_cut.tt,0.8389863897374485,-0.036776999715126706,0.47550763945636293,0.002572647703609409,0.8906336759493632
+Sham,14,ad,CC_SSp_ll_cut.tt,0.8411540272855096,-0.03627549517355679,0.09392842790945401,0.002572647703609409,0.8906336759493632
+Sham,14,ad,CC_SSp_ul_cut.tt,0.6739720703005563,-0.07606152213810295,0.04184264579837384,0.002572647703609409,0.8906336759493632
+Sham,14,ad,CST_links_CCasROA,0.39073851346911803,-0.15446339880353213,0.07712441963148482,0.002572647703609409,0.83006668553339
+Sham,14,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.06072736824080084,-0.3299899883530005,5.542938744524946e-05,0.002572647703609409,0.83006668553339
+Sham,14,ad,CC_MOp(dilated)_cut.tt,0.3964720669767049,0.15262454881777582,0.1611137714078531,0.002572647703609409,0.83006668553339
+Sham,14,ad,CC_MOp_MOp_cut.tt,0.8202504434393125,-0.04112337240873259,0.6550206372732914,0.002572647703609409,0.8906336759493632
+Sham,14,ad,CST_links_CC_cut,0.4102144391282809,-0.14827817612416994,0.1437261490674535,0.002572647703609409,0.83006668553339
+Sham,14,ad,CST_links_ROA_CC_fibers_cut,0.415033342766695,-0.1467736624994602,0.1864468660946788,0.002572647703609409,0.83006668553339
+Sham,14,rd,CC_SSp_ll_cut.tt,0.7400729032155864,0.06001337680786584,0.853510154051875,0.002572647703609409,0.946996904591108
+Sham,14,rd,CC_SSp_ul_cut.tt,0.946996904591108,-0.01203610899767783,0.3703334830479319,0.002572647703609409,0.946996904591108
+Sham,14,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.07230439154779543,-0.3169508702721828,2.498831115599737e-05,0.002572647703609409,0.31261366850851835
+Sham,14,rd,CC_MOp(dilated)_cut.tt,0.10553921790861148,0.2868605977779883,0.14479104561173056,0.002572647703609409,0.31661765372583445
+Sham,14,rd,CC_MOp_MOp_cut.tt,0.3020917713947528,0.18522234401981993,0.00107006228028006,0.002572647703609409,0.7250202513474067
+Sham,14,rd,Rubrospinal_tract_rechts,0.936709648465432,0.014376463525004074,0.6626339839166223,0.002572647703609409,0.946996904591108
+Sham,21,fa,CC_Mos_Mos.tt,0.2033556970277768,0.30553128544567776,0.015965615324000537,5.9004310217602494e-05,0.45303268855594186
+Sham,21,fa,CC_MOs_MOs_cut.tt,0.9829242781330201,-0.0052677807835461695,0.12847680869312095,5.9004310217602494e-05,0.9829242781330201
+Sham,21,fa,CC_SSp_ll.tt,0.9175952153911355,-0.02546094045380648,0.7781572064705782,5.9004310217602494e-05,0.9542990240067809
+Sham,21,fa,CC_SSp_ll_cut.tt,0.5884821428963376,0.1325724830525786,0.7845115500359225,5.9004310217602494e-05,0.7013788840121666
+Sham,21,fa,CC_SSp_ul_cut.tt,0.6808705071326636,0.10096579835130157,0.13605997171905865,5.9004310217602494e-05,0.769679703715185
+Sham,21,fa,CST_links_CCasROA,0.27261432642418265,0.2651449661051572,0.8923947258631076,5.9004310217602494e-05,0.5406345372753998
+Sham,21,fa,Retikulospinal_tract_links,0.2911109046867537,0.2554873680019892,0.15692048652812168,5.9004310217602494e-05,0.5406345372753998
+Sham,21,fa,Rubrospinal_tract_links_,0.08712924579833121,0.40298522994128194,0.3170383630344872,5.9004310217602494e-05,0.45303268855594186
+Sham,21,fa,Thalamocorticale_links_SSp_and_SSs_End,0.5934744403179871,0.13081655612472987,0.23289196221349112,5.9004310217602494e-05,0.7013788840121666
+Sham,21,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.3549123874724356,0.22475864676463655,0.28992315424017967,5.9004310217602494e-05,0.5767326296427078
+Sham,21,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.20609734736142105,0.30377535851782905,0.7740067752181775,5.9004310217602494e-05,0.45303268855594186
+Sham,21,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.1290723190665833,0.3608429836729126,0.2597748643999085,5.9004310217602494e-05,0.45303268855594186
+Sham,21,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.19263087370402032,0.3125549931570727,0.18919562258397565,5.9004310217602494e-05,0.45303268855594186
+Sham,21,md,CC_MOs_MOs_cut.tt,0.8026368801531965,-0.06145744247470531,0.041994263894925755,5.9004310217602494e-05,0.9317681285620684
+Sham,21,md,CC_SSp_ll_cut.tt,0.6967470091916472,0.09569801756775541,3.459301792288261e-07,5.9004310217602494e-05,0.9289960122555296
+Sham,21,md,CC_SSp_ul_cut.tt,0.24704636791700046,0.27919238152794695,8.406669764592858e-07,5.9004310217602494e-05,0.5929112830008011
+Sham,21,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.0040076861639561055,-0.6277438767059185,0.00032926552689653023,5.9004310217602494e-05,0.027675935475282132
+Sham,21,md,CC_MOp(dilated)_cut.tt,0.3284938191583757,0.23705013525957763,0.042309478723382324,5.9004310217602494e-05,0.6083355637814193
+Sham,21,md,CC_MOp_MOp_cut.tt,0.9317681285620684,0.021071123134184678,0.007423695436807053,5.9004310217602494e-05,0.9317681285620684
+Sham,21,ad,CC_MOs_MOs_cut.tt,0.6212404959180933,-0.12115895802156187,0.3123812987912705,5.9004310217602494e-05,0.745488595101712
+Sham,21,ad,CC_SSp_ll_cut.tt,0.1874128068318527,0.31606684701277016,2.503293542992006e-07,5.9004310217602494e-05,0.3066755020884862
+Sham,21,ad,CC_SSp_ul_cut.tt,0.10749717603804872,0.38103614334317293,2.416500607347687e-07,5.9004310217602494e-05,0.21499435207609743
+Sham,21,ad,CST_links_CCasROA,0.9317681285620684,0.021071123134184678,7.335934936251495e-06,5.9004310217602494e-05,0.9317681285620684
+Sham,21,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.017671375948990944,-0.5373136399217092,2.23472249563305e-05,5.9004310217602494e-05,0.0908185742596006
+Sham,21,ad,CC_MOp(dilated)_cut.tt,0.16510768985574212,0.3318701893634087,0.004977406706988944,5.9004310217602494e-05,0.2971938417403358
+Sham,21,ad,CC_MOp_MOp_cut.tt,0.5884821428963376,0.1325724830525786,0.3753593043068522,5.9004310217602494e-05,0.745488595101712
+Sham,21,ad,CST_links_CC_cut,0.8054045080977785,0.06057947901078094,9.871882039963426e-06,5.9004310217602494e-05,0.8645261120334277
+Sham,21,ad,CST_links_ROA_CC_fibers_cut,0.8164968835871261,0.05706762515508349,1.5240634492407787e-05,5.9004310217602494e-05,0.8645261120334277
+Sham,21,rd,CC_SSp_ll_cut.tt,0.8527682069548816,-0.0456541001240668,3.3561176743641567e-06,5.9004310217602494e-05,0.9305287211725588
+Sham,21,rd,CC_SSp_ul_cut.tt,0.6035114464272391,0.12730470226903243,1.5399169203131398e-05,5.9004310217602494e-05,0.9061321951448982
+Sham,21,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.010000115231508682,-0.5750660688704567,0.005284422828594949,5.9004310217602494e-05,0.04000046092603473
+Sham,21,rd,CC_MOp(dilated)_cut.tt,0.4564928384336233,0.18173843703234283,0.04464510248049901,5.9004310217602494e-05,0.9061321951448982
+Sham,21,rd,CC_MOp_MOp_cut.tt,0.819275289777308,0.05618966169115914,0.006452268429661764,5.9004310217602494e-05,0.9305287211725588
+Sham,21,rd,Rubrospinal_tract_rechts,0.9488012515705916,0.015803342350638506,8.857310709889514e-06,5.9004310217602494e-05,0.9488012515705916
+Sham,28,fa,CC_Mos_Mos.tt,0.336781946101784,-0.20491793369069217,0.39207855639143796,0.06318044201701259,0.718004899373519
+Sham,28,fa,CC_MOs_MOs_cut.tt,0.26689196943991494,-0.23600733837894627,0.3181267710775513,0.06318044201701259,0.718004899373519
+Sham,28,fa,CC_SSp_ll.tt,0.7444245064961099,-0.07021033901901116,0.40261080606721245,0.06318044201701259,0.8961238882854425
+Sham,28,fa,CC_SSp_ll_cut.tt,0.5952797404498086,-0.11417006069489241,0.30481866162723437,0.06318044201701259,0.8961238882854425
+Sham,28,fa,CC_SSp_ul_cut.tt,0.635466289617742,-0.10195435066129765,0.12470019905862012,0.06318044201701259,0.8961238882854425
+Sham,28,fa,CST_links_CCasROA,0.31151444912851106,-0.21565217391304345,0.011740512972215072,0.06318044201701259,0.718004899373519
+Sham,28,fa,Retikulospinal_tract_links,0.7582586747030667,-0.06629275677734037,0.7625184635214315,0.06318044201701259,0.8961238882854425
+Sham,28,fa,Rubrospinal_tract_links_,0.9563149226351306,0.011811828218712402,0.373084369953943,0.06318044201701259,0.9581267661503257
+Sham,28,fa,Thalamocorticale_links_SSp_and_SSs_End,0.37476134594762334,-0.18965059135126497,0.44388865925324467,0.06318044201701259,0.718004899373519
+Sham,28,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.8961237683027578,-0.02814778878643342,0.22478159988226787,0.06318044201701259,0.9581267661503257
+Sham,28,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.7310625637964853,0.07401485722733593,0.6797275100468709,0.06318044201701259,0.8961238882854425
+Sham,28,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.6223910681542523,0.10589343587715885,0.6804441864556935,0.06318044201701259,0.8961238882854425
+Sham,28,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.6888867649712322,-0.08617231084951407,0.17901282647595146,0.06318044201701259,0.8961238882854425
+Sham,28,md,CC_MOs_MOs_cut.tt,0.03702422793856046,0.4278260869565217,0.0010783135656982415,0.06318044201701259,0.14809691175424183
+Sham,28,md,CC_SSp_ll_cut.tt,0.958190162801108,-0.011304347826086955,0.0017370490081842873,0.06318044201701259,0.958190162801108
+Sham,28,md,CC_SSp_ul_cut.tt,0.511462281884675,-0.1408695652173913,0.01359014485277581,0.06318044201701259,0.9156432049291623
+Sham,28,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.9325072970015154,-0.01826086956521739,0.001300086943625935,0.06318044201701259,0.958190162801108
+Sham,28,md,CC_MOp(dilated)_cut.tt,0.029245989362288137,0.4452173913043478,0.014115040955925258,0.06318044201701259,0.14809691175424183
+Sham,28,md,CC_MOp_MOp_cut.tt,0.06175922020928204,0.3869565217391304,0.000880991228141206,0.06318044201701259,0.1482221285022769
+Sham,28,ad,CC_MOs_MOs_cut.tt,0.21892384322956354,0.2604948810338877,0.7962902489244146,0.06318044201701259,0.7881258356264287
+Sham,28,ad,CC_SSp_ll_cut.tt,0.8647719686577406,-0.03671107273241456,0.14158923996078276,0.06318044201701259,0.915640907990549
+Sham,28,ad,CC_SSp_ul_cut.tt,0.31754525245129134,-0.21304347826086956,0.0192872246663118,0.06318044201701259,0.819120166108319
+Sham,28,ad,CST_links_CCasROA,0.8314623938823671,0.045868870816274186,0.15382739191721345,0.06318044201701259,0.915640907990549
+Sham,28,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.6743027582561099,-0.09043478260869564,0.0011451193199974565,0.06318044201701259,0.915640907990549
+Sham,28,ad,CC_MOp(dilated)_cut.tt,0.06434139809221918,0.3834782608695652,0.004729392222857013,0.06318044201701259,0.38604838855331514
+Sham,28,ad,CC_MOp_MOp_cut.tt,0.04790092056917202,0.40782608695652167,0.03435071851381796,0.06318044201701259,0.38604838855331514
+Sham,28,ad,CST_links_CC_cut,0.8417539462400061,-0.04303189778138331,0.38374688897956305,0.06318044201701259,0.915640907990549
+Sham,28,ad,CST_links_ROA_CC_fibers_cut,0.9492163235039015,-0.013733435421993402,0.5582836723207338,0.06318044201701259,0.9492163235039015
+Sham,28,rd,CC_SSp_ll_cut.tt,0.6217515088671186,0.1060869565217391,0.015320893741687353,0.06318044201701259,0.690858345342518
+Sham,28,rd,CC_SSp_ul_cut.tt,0.8496151500324182,-0.040869565217391296,0.04555973045364324,0.06318044201701259,0.8496151500324182
+Sham,28,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.6332868165639748,0.1026086956521739,0.0004924039410198662,0.06318044201701259,0.690858345342518
+Sham,28,rd,CC_MOp(dilated)_cut.tt,0.017142518672419713,0.48173913043478256,0.011775170970532994,0.06318044201701259,0.06857007468967885
+Sham,28,rd,CC_MOp_MOp_cut.tt,0.04790092056917202,0.40782608695652167,0.0012758122682147504,0.06318044201701259,0.11496220936601284
+Sham,28,rd,Rubrospinal_tract_rechts,0.007790255496333427,0.5295240792385452,0.9863306385872497,0.06318044201701259,0.046741532978000565
+Sham,7,fa,CC_Mos_Mos.tt,0.3562012351135724,0.18117131910235357,0.8767367475677532,0.025683599715987465,0.7527583671578699
+Sham,7,fa,CC_MOs_MOs_cut.tt,0.26544900546889716,-0.21784345922276957,0.361408302314873,0.025683599715987465,0.7527583671578699
+Sham,7,fa,CC_SSp_ll.tt,0.5640468674701097,-0.11384783798576902,0.1584639745539128,0.025683599715987465,0.7599959395515873
+Sham,7,fa,CC_SSp_ll_cut.tt,0.4546607008107201,0.1472359058565955,0.035727921077167435,0.025683599715987465,0.7599959395515873
+Sham,7,fa,CC_SSp_ul_cut.tt,0.3287842391242004,0.19157088122605362,0.4365526338465783,0.025683599715987465,0.7527583671578699
+Sham,7,fa,CST_links_CCasROA,0.9383030860180518,-0.01532567049808429,0.5594439029135547,0.025683599715987465,0.9383030860180518
+Sham,7,fa,Retikulospinal_tract_links,0.49985636700000113,-0.1330049261083744,0.5164148620511682,0.025683599715987465,0.7599959395515873
+Sham,7,fa,Rubrospinal_tract_links_,0.14534253756814086,0.2824302134646962,0.43284746660449974,0.025683599715987465,0.7527583671578699
+Sham,7,fa,Thalamocorticale_links_SSp_and_SSs_End,0.5070028354026341,-0.13081554460864805,0.6757544255918547,0.025683599715987465,0.7599959395515873
+Sham,7,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.022878602783120348,-0.4285714285714286,0.3650572505104042,0.025683599715987465,0.36422063323926357
+Sham,7,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.2257351611187063,-0.23645320197044337,0.029091764756681997,0.025683599715987465,0.7527583671578699
+Sham,7,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.9119476157286659,0.021893814997263273,0.36218064780169634,0.025683599715987465,0.9383030860180518
+Sham,7,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.4053314284696222,-0.16365626710454295,0.6053463015588438,0.025683599715987465,0.7527583671578699
+Sham,7,md,CC_MOs_MOs_cut.tt,0.9229195712007805,0.019157088122605366,0.2565627598397112,0.025683599715987465,0.9229195712007805
+Sham,7,md,CC_SSp_ll_cut.tt,0.4165635018979432,-0.1598248494800219,0.7805869260906984,0.025683599715987465,0.9229195712007805
+Sham,7,md,CC_SSp_ul_cut.tt,0.6616980172078828,-0.08648056923918993,0.3418803052208204,0.025683599715987465,0.9229195712007805
+Sham,7,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.8966138146095978,-0.025725232621784347,0.049995993229602395,0.025683599715987465,0.9229195712007805
+Sham,7,md,CC_MOp(dilated)_cut.tt,0.11884018520814658,-0.30158730158730157,0.2041219977769052,0.025683599715987465,0.7130411112488796
+Sham,7,md,CC_MOp_MOp_cut.tt,0.7440305926840296,-0.06458675424192666,0.024315898541402873,0.025683599715987465,0.9229195712007805
+Sham,7,ad,CC_MOs_MOs_cut.tt,0.23583493027967056,-0.23152709359605914,0.5885297414574662,0.025683599715987465,0.8999974101121146
+Sham,7,ad,CC_SSp_ll_cut.tt,0.7086403177420715,-0.07389162561576354,0.5717296541262097,0.025683599715987465,0.9539909302858347
+Sham,7,ad,CC_SSp_ul_cut.tt,0.7545407778923472,0.061850027367268745,0.48038924700902436,0.025683599715987465,0.9539909302858347
+Sham,7,ad,CST_links_CCasROA,0.8791341715501779,0.030103995621236997,0.01478503971607983,0.025683599715987465,0.9539909302858347
+Sham,7,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.449589369862334,-0.14887794198139023,4.628856905810839e-05,0.025683599715987465,0.8999974101121146
+Sham,7,ad,CC_MOp(dilated)_cut.tt,0.0997320820225945,-0.31746031746031744,0.004817897622702979,0.025683599715987465,0.8975887382033505
+Sham,7,ad,CC_MOp_MOp_cut.tt,0.4927605622109176,-0.13519430760810072,0.02205566355826259,0.025683599715987465,0.8999974101121146
+Sham,7,ad,CST_links_CC_cut,0.9669259423830507,0.008210180623973728,0.03065753579131327,0.025683599715987465,0.9669259423830507
+Sham,7,ad,CST_links_ROA_CC_fibers_cut,0.9009914341588439,-0.02463054187192118,0.04103111822095977,0.025683599715987465,0.9539909302858347
+Sham,7,rd,CC_SSp_ll_cut.tt,0.3488582722281329,-0.1839080459770115,0.0005417564399946604,0.025683599715987465,0.6169733213458845
+Sham,7,rd,CC_SSp_ul_cut.tt,0.3459466143517801,-0.18500273672687464,0.7233809760313721,0.025683599715987465,0.6169733213458845
+Sham,7,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.6042657744249464,0.1023535851122058,0.9754262825851433,0.025683599715987465,0.8056876992332619
+Sham,7,rd,CC_MOp(dilated)_cut.tt,0.26915760111522175,-0.21620142309797483,0.00702146192633901,0.025683599715987465,0.6169733213458845
+Sham,7,rd,CC_MOp_MOp_cut.tt,0.8944261069476149,0.026272577996715927,0.02764619807397886,0.025683599715987465,0.9515064313906725
+Sham,7,rd,Rubrospinal_tract_rechts,0.9515064313906725,0.0120415982484948,0.9884321094691586,0.025683599715987465,0.9515064313906725
+Sham,0,fa,CC_Mos_Mos.tt,0.37587993191810987,0.17399749964705058,0.8549312250113381,0.27376166506422167,0.7517598638362197
+Sham,0,fa,CC_MOs_MOs_cut.tt,0.7445875163045279,0.06444144948869247,0.7391800983510111,0.27376166506422167,0.8593470000345013
+Sham,0,fa,CC_SSp_ll.tt,0.010562476376344866,0.4754207392825949,0.3819431214702845,0.27376166506422167,0.13731219289248325
+Sham,0,fa,CC_SSp_ll_cut.tt,0.8656807374973895,-0.0334835299538911,0.7473865351446827,0.27376166506422167,0.9003079669972851
+Sham,0,fa,CC_SSp_ul_cut.tt,0.793243384647232,-0.05186375609822274,0.6501430222218938,0.27376166506422167,0.8593470000345013
+Sham,0,fa,CST_links_CCasROA,0.7461291106109984,0.06403940886699507,0.010192540899648543,0.27376166506422167,0.8593470000345013
+Sham,0,fa,Retikulospinal_tract_links,0.7198705899747513,0.07092312677919971,0.08981209369756656,0.27376166506422167,0.8593470000345013
+Sham,0,fa,Rubrospinal_tract_links_,0.6866933893227998,-0.07973921929375051,0.8438840614872445,0.27376166506422167,0.8593470000345013
+Sham,0,fa,Thalamocorticale_links_SSp_and_SSs_End,0.23811951703447856,0.23043240284619596,0.007702728336357501,0.27376166506422167,0.6191107442896442
+Sham,0,fa,Thalamocorticale_links_SSp_ll_and_ul_ROI.tt,0.006932001601331488,0.49852040182708435,0.17873923538006742,0.27376166506422167,0.13731219289248325
+Sham,0,fa,"Thalamocorticale_links_SSp_ul_and_ll_End_0,2.tt",0.030549960582626642,0.40931013861608706,0.22805283817984778,0.27376166506422167,0.16792358498312315
+Sham,0,fa,Thalamocorticale_rechts_SSp_and_SSs_End,0.03777705390542003,0.39447109833909566,0.20822352796938104,0.27376166506422167,0.16792358498312315
+Sham,0,fa,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.026175786939274238,0.4197332175175079,0.6184755264110422,0.27376166506422167,0.16792358498312315
+Sham,0,md,CC_MOs_MOs_cut.tt,0.27667469827560626,0.2129173508483853,0.0003812371623608255,0.27376166506422167,0.9605044907740853
+Sham,0,md,CC_SSp_ll_cut.tt,0.07531988617311797,-0.34148963065587024,0.14694937647655293,0.27376166506422167,0.4519193170387078
+Sham,0,md,CC_SSp_ul_cut.tt,0.020922675265749396,-0.43431873708374524,0.8320409785912898,0.27376166506422167,0.25107210318899276
+Sham,0,md,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.49730881867591314,-0.13378915680110456,0.9080794037909902,0.27376166506422167,0.9605044907740853
+Sham,0,md,CC_MOp(dilated)_cut.tt,0.6002616036847112,-0.10348274888238324,0.05932938578692779,0.27376166506422167,0.9605044907740853
+Sham,0,md,CC_MOp_MOp_cut.tt,0.7293917737327414,-0.06841817186644773,0.011617357546273783,0.27376166506422167,0.9605044907740853
+Sham,0,ad,CC_MOs_MOs_cut.tt,0.43175920426163084,0.1547314245076185,0.09945879969018838,0.27376166506422167,0.8861084232719442
+Sham,0,ad,CC_SSp_ll_cut.tt,0.10761920860838539,-0.3106555671842003,0.9631483318185796,0.27376166506422167,0.8861084232719442
+Sham,0,ad,CC_SSp_ul_cut.tt,0.05770102600129097,-0.36288998357963875,0.04288656226313797,0.27376166506422167,0.8861084232719442
+Sham,0,ad,CST_links_CCasROA,0.29210886687705223,-0.20634920634920634,0.03418059287548081,0.27376166506422167,0.8861084232719442
+Sham,0,ad,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.8926190997175323,0.02672481786750724,0.94773592945649,0.27376166506422167,0.9853989546352617
+Sham,0,ad,CC_MOp(dilated)_cut.tt,0.5664195344679179,-0.11315987959451018,0.07495889197110102,0.27376166506422167,0.8861084232719442
+Sham,0,ad,CC_MOp_MOp_cut.tt,0.5888016505319207,-0.10673234811165844,0.0006275598489351371,0.27376166506422167,0.8861084232719442
+Sham,0,ad,CST_links_CC_cut,0.3858909344311784,-0.17043192832517995,0.22906548979327795,0.27376166506422167,0.8861084232719442
+Sham,0,ad,CST_links_ROA_CC_fibers_cut,0.37785393451495586,-0.17329011965975663,0.33782144818274973,0.27376166506422167,0.8861084232719442
+Sham,0,rd,CC_SSp_ll_cut.tt,0.13958876269053644,-0.28635873206974105,0.1681190416466921,0.27376166506422167,0.5583550507621458
+Sham,0,rd,CC_SSp_ul_cut.tt,0.08642964528178353,-0.3299160371749522,0.5156892038009632,0.27376166506422167,0.5185778716907012
+Sham,0,rd,Thalamocorticale_rechts_SSp_ll_and_ul_ROI.tt,0.21873651587486645,-0.2399541752267697,0.6244879039607754,0.27376166506422167,0.6562095476245994
+Sham,0,rd,CC_MOp(dilated)_cut.tt,0.6120615636453772,-0.10016420361247948,0.003098348891650289,0.27376166506422167,0.9879754051147203
+Sham,0,rd,CC_MOp_MOp_cut.tt,0.7756882409162642,-0.056376573617952924,0.001022731233161584,0.27376166506422167,0.9879754051147203
+Sham,0,rd,Rubrospinal_tract_rechts,0.9785221875448933,-0.00533074065513422,0.9938225425453421,0.27376166506422167,0.9879754051147203

File diff suppressed because it is too large
+ 0 - 122473
output/Final_Quantitative_output/Quantitative_results_from_dwi_processing.csv