@@ -457,7 +457,7 @@ def snp_genotypes(
457457 chunks : base_params .chunks = base_params .native_chunks ,
458458 ) -> da .Array :
459459 # Check that either sample_query xor sample_indices are provided.
460- base_params .validate_sample_selection_params (
460+ base_params ._validate_sample_selection_params (
461461 sample_query = sample_query , sample_indices = sample_indices
462462 )
463463
@@ -1035,7 +1035,7 @@ def snp_calls(
10351035 random_seed : base_params .random_seed = 42 ,
10361036 ) -> xr .Dataset :
10371037 # Check that either sample_query xor sample_indices are provided.
1038- base_params .validate_sample_selection_params (
1038+ base_params ._validate_sample_selection_params (
10391039 sample_query = sample_query , sample_indices = sample_indices
10401040 )
10411041
@@ -1369,7 +1369,7 @@ def snp_allele_counts(
13691369 name = "snp_allele_counts_v2"
13701370
13711371 # Check that either sample_query xor sample_indices are provided.
1372- base_params .validate_sample_selection_params (
1372+ base_params ._validate_sample_selection_params (
13731373 sample_query = sample_query , sample_indices = sample_indices
13741374 )
13751375
@@ -1760,7 +1760,7 @@ def biallelic_snp_calls(
17601760 thin_offset : base_params .thin_offset = 0 ,
17611761 ) -> xr .Dataset :
17621762 # Check that either sample_query xor sample_indices are provided.
1763- base_params .validate_sample_selection_params (
1763+ base_params ._validate_sample_selection_params (
17641764 sample_query = sample_query , sample_indices = sample_indices
17651765 )
17661766
@@ -1926,7 +1926,7 @@ def biallelic_diplotypes(
19261926 name = "biallelic_diplotypes"
19271927
19281928 # Check that either sample_query xor sample_indices are provided.
1929- base_params .validate_sample_selection_params (
1929+ base_params ._validate_sample_selection_params (
19301930 sample_query = sample_query , sample_indices = sample_indices
19311931 )
19321932
0 commit comments