You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The most significant findings are in the DNA repair genes BRCA1 and BRCA2 (p-values 0.0001 and 0.0005), with BRCA1 carriers showing 2.5 times higher odds and BRCA2 carriers showing 2.7 times higher odds of developing breast cancer. Other genes showing significant but less pronounced associations include inflammatory pathway genes (TNF) and key tumor suppressor genes (TP53, PTEN), highlighting the multifactorial genetic architecture of breast cancer susceptibility that spans DNA repair, cell cycle regulation, and inflammatory response pathways
## Divide Z-Ratio differences by the Z-Ratio differences SD
720
755
z_score_ratios = diff_z_scores / std_diff
721
756
print_array_info(z_score_ratios)
722
757
print(z_score_ratios[:10])
758
+
```
723
759
724
-
## Rank genes according to the Z score ratio
760
+
:::
725
761
726
-
### """
727
-
# The Z-ratio provides a standardized measure of the difference between conditions for each gene.
728
-
# Dividing by the SD (difference - all genes) accounts for the overall variability in the experiment.
729
-
# A gene showing a difference of, say, 0.5 in average Z-score might be highly significant if most genes show very little difference (small Z-score difference - SD), but not significant if many genes show large differences (large Z-score difference - SD).
730
-
# It puts the individual gene's change in the context of the overall experimental variation.
0 commit comments