Skip to content

Commit b87e50b

Browse files
committed
Fix code formatting per ruff-format
Apply automatic formatting fixes from ruff-format hook.
1 parent d91edcd commit b87e50b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

malariagen_data/anoph/to_vcf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,9 @@ def snp_calls_to_vcf(
198198
missing = (a0 < 0) | (a1 < 0)
199199

200200
# Build formatted GT strings using NumPy vectorization
201-
gt_formatted = np.empty((gt_chunk.shape[0], n_samples), dtype=object)
201+
gt_formatted = np.empty(
202+
(gt_chunk.shape[0], n_samples), dtype=object
203+
)
202204
gt_formatted[missing] = "./."
203205
present_idx = ~missing
204206
if np.any(present_idx):

0 commit comments

Comments
 (0)