@@ -1646,7 +1646,7 @@ def cohort_diversity_stats(
16461646 random_seed : base_params .random_seed = 42 ,
16471647 n_jack : base_params .n_jack = 200 ,
16481648 confidence_level : base_params .confidence_level = 0.95 ,
1649- chunks : base_params .chunks = base_params .large_chunks ,
1649+ chunks : base_params .chunks = base_params .native_chunks ,
16501650 inline_array : base_params .inline_array = base_params .inline_array_default ,
16511651 ) -> pd .Series :
16521652 debug = self ._log .debug
@@ -1753,7 +1753,7 @@ def diversity_stats(
17531753 random_seed : base_params .random_seed = 42 ,
17541754 n_jack : base_params .n_jack = 200 ,
17551755 confidence_level : base_params .confidence_level = 0.95 ,
1756- chunks : base_params .chunks = base_params .large_chunks ,
1756+ chunks : base_params .chunks = base_params .native_chunks ,
17571757 inline_array : base_params .inline_array = base_params .inline_array_default ,
17581758 ) -> pd .DataFrame :
17591759 # Normalise cohorts parameter.
@@ -1960,7 +1960,7 @@ def ihs_gwss(
19601960 base_params .max_cohort_size
19611961 ] = ihs_params .max_cohort_size_default ,
19621962 random_seed : base_params .random_seed = 42 ,
1963- chunks : base_params .chunks = base_params .large_chunks ,
1963+ chunks : base_params .chunks = base_params .native_chunks ,
19641964 inline_array : base_params .inline_array = base_params .inline_array_default ,
19651965 ) -> Tuple [np .ndarray , np .ndarray ]:
19661966 # change this name if you ever change the behaviour of this function, to
@@ -2141,7 +2141,7 @@ def plot_ihs_gwss_track(
21412141 show : gplt_params .show = True ,
21422142 x_range : Optional [gplt_params .x_range ] = None ,
21432143 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2144- chunks : base_params .chunks = base_params .large_chunks ,
2144+ chunks : base_params .chunks = base_params .native_chunks ,
21452145 inline_array : base_params .inline_array = base_params .inline_array_default ,
21462146 ) -> gplt_params .figure :
21472147 # compute ihs
@@ -2283,7 +2283,7 @@ def plot_xpehh_gwss(
22832283 genes_height : gplt_params .genes_height = gplt_params .genes_height_default ,
22842284 show : gplt_params .show = True ,
22852285 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2286- chunks : base_params .chunks = base_params .large_chunks ,
2286+ chunks : base_params .chunks = base_params .native_chunks ,
22872287 inline_array : base_params .inline_array = base_params .inline_array_default ,
22882288 ) -> gplt_params .figure :
22892289 # gwss track
@@ -2383,7 +2383,7 @@ def plot_ihs_gwss(
23832383 genes_height : gplt_params .genes_height = gplt_params .genes_height_default ,
23842384 show : gplt_params .show = True ,
23852385 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2386- chunks : base_params .chunks = base_params .large_chunks ,
2386+ chunks : base_params .chunks = base_params .native_chunks ,
23872387 inline_array : base_params .inline_array = base_params .inline_array_default ,
23882388 ) -> gplt_params .figure :
23892389 # gwss track
@@ -2479,7 +2479,7 @@ def xpehh_gwss(
24792479 base_params .max_cohort_size
24802480 ] = xpehh_params .max_cohort_size_default ,
24812481 random_seed : base_params .random_seed = 42 ,
2482- chunks : base_params .chunks = base_params .large_chunks ,
2482+ chunks : base_params .chunks = base_params .native_chunks ,
24832483 inline_array : base_params .inline_array = base_params .inline_array_default ,
24842484 ) -> Tuple [np .ndarray , np .ndarray ]:
24852485 # change this name if you ever change the behaviour of this function, to
@@ -2658,7 +2658,7 @@ def plot_xpehh_gwss_track(
26582658 show : gplt_params .show = True ,
26592659 x_range : Optional [gplt_params .x_range ] = None ,
26602660 output_backend : gplt_params .output_backend = gplt_params .output_backend_default ,
2661- chunks : base_params .chunks = base_params .large_chunks ,
2661+ chunks : base_params .chunks = base_params .native_chunks ,
26622662 inline_array : base_params .inline_array = base_params .inline_array_default ,
26632663 ) -> gplt_params .figure :
26642664 # compute xpehh
@@ -3311,7 +3311,7 @@ def plot_njt(
33113311 max_cohort_size : Optional [base_params .max_cohort_size ] = None ,
33123312 random_seed : base_params .random_seed = 42 ,
33133313 inline_array : base_params .inline_array = base_params .inline_array_default ,
3314- chunks : base_params .chunks = base_params .large_chunks ,
3314+ chunks : base_params .chunks = base_params .native_chunks ,
33153315 ) -> plotly_params .figure :
33163316 from biotite .sequence .phylo import neighbor_joining # type: ignore
33173317 from scipy .spatial .distance import squareform # type: ignore
0 commit comments