@@ -1622,7 +1622,7 @@ def cohort_diversity_stats(
16221622 random_seed : base_params .random_seed = 42 ,
16231623 n_jack : base_params .n_jack = 200 ,
16241624 confidence_level : base_params .confidence_level = 0.95 ,
1625- chunks : base_params .chunks = base_params .large_chunks ,
1625+ chunks : base_params .chunks = base_params .native_chunks ,
16261626 inline_array : base_params .inline_array = base_params .inline_array_default ,
16271627 ) -> pd .Series :
16281628 debug = self ._log .debug
@@ -1728,7 +1728,7 @@ def diversity_stats(
17281728 random_seed : base_params .random_seed = 42 ,
17291729 n_jack : base_params .n_jack = 200 ,
17301730 confidence_level : base_params .confidence_level = 0.95 ,
1731- chunks : base_params .chunks = base_params .large_chunks ,
1731+ chunks : base_params .chunks = base_params .native_chunks ,
17321732 inline_array : base_params .inline_array = base_params .inline_array_default ,
17331733 ) -> pd .DataFrame :
17341734 # Normalise cohorts parameter.
@@ -1933,7 +1933,7 @@ def ihs_gwss(
19331933 base_params .max_cohort_size
19341934 ] = ihs_params .max_cohort_size_default ,
19351935 random_seed : base_params .random_seed = 42 ,
1936- chunks : base_params .chunks = base_params .large_chunks ,
1936+ chunks : base_params .chunks = base_params .native_chunks ,
19371937 inline_array : base_params .inline_array = base_params .inline_array_default ,
19381938 ) -> Tuple [np .ndarray , np .ndarray ]:
19391939 # change this name if you ever change the behaviour of this function, to
@@ -2110,7 +2110,7 @@ def plot_ihs_gwss_track(
21102110 show : gplt_params .show = True ,
21112111 x_range : Optional [gplt_params .x_range ] = None ,
21122112 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2113- chunks : base_params .chunks = base_params .large_chunks ,
2113+ chunks : base_params .chunks = base_params .native_chunks ,
21142114 inline_array : base_params .inline_array = base_params .inline_array_default ,
21152115 ) -> gplt_params .figure :
21162116 # compute ihs
@@ -2251,7 +2251,7 @@ def plot_xpehh_gwss(
22512251 genes_height : gplt_params .genes_height = gplt_params .genes_height_default ,
22522252 show : gplt_params .show = True ,
22532253 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2254- chunks : base_params .chunks = base_params .large_chunks ,
2254+ chunks : base_params .chunks = base_params .native_chunks ,
22552255 inline_array : base_params .inline_array = base_params .inline_array_default ,
22562256 ) -> gplt_params .figure :
22572257 # gwss track
@@ -2350,7 +2350,7 @@ def plot_ihs_gwss(
23502350 genes_height : gplt_params .genes_height = gplt_params .genes_height_default ,
23512351 show : gplt_params .show = True ,
23522352 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2353- chunks : base_params .chunks = base_params .large_chunks ,
2353+ chunks : base_params .chunks = base_params .native_chunks ,
23542354 inline_array : base_params .inline_array = base_params .inline_array_default ,
23552355 ) -> gplt_params .figure :
23562356 # gwss track
@@ -2445,7 +2445,7 @@ def xpehh_gwss(
24452445 base_params .max_cohort_size
24462446 ] = xpehh_params .max_cohort_size_default ,
24472447 random_seed : base_params .random_seed = 42 ,
2448- chunks : base_params .chunks = base_params .large_chunks ,
2448+ chunks : base_params .chunks = base_params .native_chunks ,
24492449 inline_array : base_params .inline_array = base_params .inline_array_default ,
24502450 ) -> Tuple [np .ndarray , np .ndarray ]:
24512451 # change this name if you ever change the behaviour of this function, to
@@ -2624,7 +2624,7 @@ def plot_xpehh_gwss_track(
26242624 show : gplt_params .show = True ,
26252625 x_range : Optional [gplt_params .x_range ] = None ,
26262626 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2627- chunks : base_params .chunks = base_params .large_chunks ,
2627+ chunks : base_params .chunks = base_params .native_chunks ,
26282628 inline_array : base_params .inline_array = base_params .inline_array_default ,
26292629 ) -> gplt_params .figure :
26302630 # compute xpehh
@@ -3269,7 +3269,7 @@ def plot_njt(
32693269 max_cohort_size : Optional [base_params .max_cohort_size ] = None ,
32703270 random_seed : base_params .random_seed = 42 ,
32713271 inline_array : base_params .inline_array = base_params .inline_array_default ,
3272- chunks : base_params .chunks = base_params .large_chunks ,
3272+ chunks : base_params .chunks = base_params .native_chunks ,
32733273 ) -> plotly_params .figure :
32743274 from biotite .sequence .phylo import neighbor_joining # type: ignore
32753275 from scipy .spatial .distance import squareform # type: ignore
0 commit comments