Skip to content

Commit

Permalink
Decreases number of repetitions in test and increases default repetit…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
IlhaH committed Jul 17, 2024
1 parent a3cec78 commit e19fd27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/python/bystro/parent_of_origin/parent_of_origin.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def __init__(
pval_method: str = "rmt4ds",
cov_regularization: str = "Empirical",
svd_loss: Optional[str] = None,
n_repeats: int = 1000,
n_repeats: int = 4000,
) -> None:
"""
Raises
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,5 +255,5 @@ def test_multi2_fit():
data = generate_multivariate_data(
beta_m, beta_p, rng, maf=0.03, n_individuals=50000, n_genotypes=1000
)
model = POEMultipleSNP2()
model = POEMultipleSNP2(n_repeats=10)
model.fit(data["phenotypes"], data["genotypes"], seed=2021)

0 comments on commit e19fd27

Please sign in to comment.