File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ def convert(
9090 chunks = (chunk_width ,),
9191 )
9292 a .attrs ["_ARRAY_DIMENSIONS" ] = ["samples" ]
93+ logger .debug (f"Encoded samples" )
9394
9495 # TODO encode these in slices - but read them in one go to avoid
9596 # fetching repeatedly from bim file
@@ -101,6 +102,7 @@ def convert(
101102 chunks = (chunk_length ,),
102103 )
103104 a .attrs ["_ARRAY_DIMENSIONS" ] = ["variants" ]
105+ logger .debug (f"encoded variant_position" )
104106
105107 alleles = np .stack ([bed .allele_1 , bed .allele_2 ], axis = 1 )
106108 a = root .array (
@@ -111,6 +113,7 @@ def convert(
111113 chunks = (chunk_length ,),
112114 )
113115 a .attrs ["_ARRAY_DIMENSIONS" ] = ["variants" , "alleles" ]
116+ logger .debug (f"encoded variant_allele" )
114117
115118 # TODO remove this?
116119 a = root .empty (
You can’t perform that action at this time.
0 commit comments