File tree 1 file changed +19
-0
lines changed 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ def diversity(
36
36
Returns
37
37
-------
38
38
diversity value.
39
+
40
+ Warnings
41
+ --------
42
+ This method does not currently support datasets that are chunked along the
43
+ samples dimension.
39
44
"""
40
45
if allele_counts not in ds :
41
46
ds = count_cohort_alleles (ds )
@@ -109,6 +114,11 @@ def divergence(
109
114
Returns
110
115
-------
111
116
divergence value between pairs of cohorts.
117
+
118
+ Warnings
119
+ --------
120
+ This method does not currently support datasets that are chunked along the
121
+ samples dimension.
112
122
"""
113
123
114
124
if allele_counts not in ds :
@@ -173,6 +183,11 @@ def Fst(
173
183
Returns
174
184
-------
175
185
Fst value between pairs of cohorts.
186
+
187
+ Warnings
188
+ --------
189
+ This method does not currently support datasets that are chunked along the
190
+ samples dimension.
176
191
"""
177
192
if allele_counts not in ds :
178
193
ds = count_cohort_alleles (ds )
@@ -209,6 +224,10 @@ def Tajimas_D(
209
224
-------
210
225
Tajimas' D value.
211
226
227
+ Warnings
228
+ --------
229
+ This method does not currently support datasets that are chunked along the
230
+ samples dimension.
212
231
"""
213
232
if allele_counts not in ds :
214
233
ds = count_variant_alleles (ds )
You can’t perform that action at this time.
0 commit comments