Skip to content

Commit

Permalink
ldpair output_list
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyao00 committed Sep 13, 2022
1 parent 872a444 commit 723f26b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LDlink/LDpair.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ def calculate_pair(snp_pairs, pop, web, genome_build, request):

if geno1[1] != vcf1_pos:
output["warning"] = str(output["warning"] if "warning" in output else "") + "VCF File does not match variant coordinates for SNP1. "
output_list.append(output)
#output_list.append(output)
geno1[1] = vcf1_pos

if geno2[1] != vcf2_pos:
output["warning"] = str(output["warning"] if "warning" in output else "") + "VCF File does not match variant coordinates for SNP2. "
output_list.append(output)
#output_list.append(output)
geno2[1] = vcf2_pos


Expand Down

0 comments on commit 723f26b

Please sign in to comment.