Skip to content

Commit

Permalink
increase ldmatrix input to 3000 for post api request
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyao00 committed Jan 17, 2023
1 parent da5e809 commit 5873431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LDlink/LDmatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def calculate_matrix(snplst, pop, request, web, request_method, genome_build, r2
if web or request_method == "GET":
snp_limit = 300
else:
snp_limit = 1000
snp_limit = 3000
snps = validsnp(snplst,genome_build,snp_limit)
#if return value is string, then it is error message and need to return the message
if isinstance(snps, str):
Expand Down

0 comments on commit 5873431

Please sign in to comment.