From 605a697184cf2dbf1558c1c035f73645c65d707b Mon Sep 17 00:00:00 2001 From: Luca Ponzoni Date: Mon, 28 Jun 2021 23:49:05 -0400 Subject: [PATCH] fix bug caused by PolyPhen2 webserver update --- rhapsody/features/PolyPhen2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhapsody/features/PolyPhen2.py b/rhapsody/features/PolyPhen2.py index 3d516eb..241d182 100644 --- a/rhapsody/features/PolyPhen2.py +++ b/rhapsody/features/PolyPhen2.py @@ -129,7 +129,7 @@ def queryPolyPhen2(filename, dump=True, prefix='pph2', num_lines = sum(1 for line in open(filename, 'rb') if line[0] != '#') input_file = open(filename, 'rb') # submit query - address = 'http://genetics.bwh.harvard.edu/cgi-bin/ggi/ggi2.cgi' + address = 'http://genetics.bwh.harvard.edu/ggi/cgi-bin/ggi2.cgi' files = { '_ggi_project': (None, 'PPHWeb2'), '_ggi_origin': (None, 'query'),