Skip to content

Commit

Permalink
CHORE: Remove cutoff pvalue print statement (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickEdwards7502 committed Oct 2, 2024
1 parent b6f4e3b commit 9b7f83b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/varspark/stats/lfdr.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ def get_fdr(self, local_fdr_cutoff=0.05):
# the proportion of false positives expected from null distribution
# to the identified positives
FDR = cutoff_pvalue * len(self.z) / sum(significant_mask)
print(cutoff_pvalue)
return FDR, cutoff_pvalue, significant_mask

def plot(self, ax):
Expand Down

0 comments on commit 9b7f83b

Please sign in to comment.