Skip to content

Commit

Permalink
add threads_per_worker param
Browse files Browse the repository at this point in the history
  • Loading branch information
r-trimbour committed Nov 20, 2024
1 parent 2edf615 commit a192673
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions circe/circe.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ def compute_atac_network(
key="atac_network",
seed=42,
njobs=1,
threads_per_worker=1,
verbose=False
):
"""
Expand Down Expand Up @@ -252,6 +253,10 @@ def compute_atac_network(
Key to store the results in adata.varp. The default is "atac_network".
seed : int, optional
Seed for random number generator. The default is 42.
njobs : int, optional
Number of jobs to run in parallel. The default is 1.
threads_per_worker : int, optional
Number of threads per worker. The default is 1.
verbose : bool, optional
If True, will print additional information. The default is False.
Expand Down Expand Up @@ -842,6 +847,10 @@ def sliding_graphical_lasso(
Print alpha coefficient. The default is False.
seed : int, optional
Seed for random number generator. The default is 42.
njobs : int, optional
Number of jobs to run in parallel. The default is 1.
threads_per_worker : int, optional
Number of threads per worker. The default is 1.
Returns
-------
Expand Down

0 comments on commit a192673

Please sign in to comment.