File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ 0.4.0a3] - **** -** -**
4
4
5
+ ** Features**
6
+
7
+ - Document that the ` zarr-vcf ` dataset can be either a path or an in-memory zarr group.
8
+ (feature introduced in {pr}` 966 ` , documented in {pr}` 974 ` , {user}` hyanwong ` )
9
+
5
10
** Fixes**
6
11
7
12
- Properly account for "N" as an unknown ancestral state, and ban "" from being
8
- set as an ancestral state ({pr}` 963 ` , {user}` hyanwong ` ))
13
+ set as an ancestral state ({pr}` 963 ` , {user}` hyanwong ` )
9
14
10
15
## [ 0.4.0a2] - 2024-09-06
11
16
Original file line number Diff line number Diff line change @@ -2308,8 +2308,10 @@ class VariantData(SampleData):
2308
2308
the inference process will have ``inferred_ts.num_samples`` equal to double
2309
2309
the number returned by ``VariantData.num_samples``.
2310
2310
2311
- :param str path: The path to the file containing the input dataset in VCF-Zarr
2312
- format.
2311
+ :param Union(str, zarr.hierarchy.Group) path_or_zarr: The input dataset in
2312
+ `VCF Zarr <https://github.com/sgkit-dev/vcf-zarr-spec>`_ format.
2313
+ This can either a path to the Zarr dataset saved on disk, or the
2314
+ Zarr object itself.
2313
2315
:param Union(array, str) ancestral_state: A numpy array of strings specifying
2314
2316
the ancestral states (alleles) used in inference. This must be the same length
2315
2317
as the number of unmasked sites in the dataset. Alternatively, a single string
You can’t perform that action at this time.
0 commit comments