You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ds = sg.simulate_genotype_call_dataset(n_variant=2, n_sample=4, missing_pct=0, phased=True, seed=1)
for i, alleles in enumerate(ds['variant_allele'].values):
print(f"Site {i}: {alleles}")
Alleles are e.g. [b'T' b'C'] (dtype |S1). I was expecting them to be dtype <U1. Is this intentional?
The text was updated successfully, but these errors were encountered:
Alleles are e.g.
[b'T' b'C']
(dtype|S1
). I was expecting them to be dtype<U1
. Is this intentional?The text was updated successfully, but these errors were encountered: