Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PABannier committed Oct 17, 2023
1 parent 8fbcc2f commit 589d70e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pydeseq2/ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ class DeseqStats:
def __init__(
self,
dds: DeseqDataSet,
test: Literal["Wald", "LRT"] = "Wald",
contrast: Optional[List[str]] = None,
alpha: float = 0.05,
cooks_filter: bool = True,
Expand All @@ -167,6 +168,7 @@ def __init__(
self.dds = dds

self.alpha = alpha
self.test = test
self.cooks_filter = cooks_filter
self.independent_filter = independent_filter
self.base_mean = self.dds.varm["_normed_means"].copy()
Expand Down

0 comments on commit 589d70e

Please sign in to comment.