Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT: Implement Likelihood-Ratio test #178

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
initial commit
  • Loading branch information
PABannier committed Oct 17, 2023
commit 589d70e440b1b2ada58f9d9f2d94996e4b00b340
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
Loading