Skip to content

Commit

Permalink
cosmit
Browse files Browse the repository at this point in the history
  • Loading branch information
PABannier committed Oct 17, 2023
1 parent e2afb7d commit b913d20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pydeseq2/ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ def __init__(

self.p_values: pd.Series
self.statistics: pd.Series
self.SE: pd.Series

def summary(
self,
Expand Down Expand Up @@ -365,7 +366,7 @@ def run_wald_test(self) -> None:

self.p_values = pd.Series(pvals, index=self.dds.var_names)
self.statistics = pd.Series(stats, index=self.dds.var_names)
self.SE: pd.Series = pd.Series(se, index=self.dds.var_names)
self.SE = pd.Series(se, index=self.dds.var_names)

# Account for possible all_zeroes due to outlier refitting in DESeqDataSet
if self.dds.refit_cooks and self.dds.varm["replaced"].sum() > 0:
Expand Down

0 comments on commit b913d20

Please sign in to comment.