Skip to content

Commit

Permalink
Fix samples length
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Apr 26, 2024
1 parent dbd7a3e commit 664ac45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deeprvat/deeprvat/associate.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def compute_burdens_(
sample_ids = zarr.open(
burdens_chunk_path / f"sample_ids.zarr",
mode="a",
shape=this_sampleid.shape,
shape=len(this_sampleid),
chunks=(None),
dtype=np.float32,
compressor=Blosc(clevel=compression_level),
Expand Down

0 comments on commit 664ac45

Please sign in to comment.