Skip to content

Commit

Permalink
Fix misaligned number of expected columns in export
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMadBug committed Aug 6, 2024
1 parent a67daf0 commit c385e0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def handle(self, *args, **options):
count += 1
if count % 100 == 0:
print(f"Processed {count}")
variant_annotation_cells = [None] * 7
variant_annotation_cells = [None] * 4
gnomad_cells = [None] * 4
transcript_annotations_cells = [None] * len(transcript_annotation_keys)
substituted_transcript_version = None
Expand Down

0 comments on commit c385e0f

Please sign in to comment.