Skip to content

Commit

Permalink
fix variable
Browse files Browse the repository at this point in the history
  • Loading branch information
davmlaw committed Jul 11, 2024
1 parent 13d0f99 commit 4603fdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def handle(self, *args, **options):

# Note: This deliberately only gets classifications where the submitting variant was against this genome build
# ie we don't use Classification.get_variant_q_from_classification_qs() to get liftovers
contigs_q = Variant.get_contigs_q(self.genome_build)
contigs_q = Variant.get_contigs_q(genome_build)
variants_qs = Variant.objects.filter(contigs_q, importedalleleinfo__isnull=False)
if variants_qs.exists():
print(f"{genome_build} has variants - creating Allele/ClinGen + liftover")
Expand Down

0 comments on commit 4603fdc

Please sign in to comment.