From 20c3c43543eaace7306503d4257586ba37244d7e Mon Sep 17 00:00:00 2001 From: Helena Rasche Date: Mon, 4 Apr 2022 15:11:22 +0200 Subject: [PATCH] Fix david url --- tools/phenotype_association/linkToDavid.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/phenotype_association/linkToDavid.pl b/tools/phenotype_association/linkToDavid.pl index 5caa4eaa562..8cfda87717a 100755 --- a/tools/phenotype_association/linkToDavid.pl +++ b/tools/phenotype_association/linkToDavid.pl @@ -39,8 +39,8 @@ if (scalar @gene > 400) { print "ERROR David only allows 400 genes submitted via a link\n"; exit 1; } - -my $link = 'http://david.abcc.ncifcrf.gov/api.jsp?type=TYPE&ids=GENELIST&tool=summary'; + +my $link = 'http://david.ncifcrf.gov/api.jsp?type=TYPE&ids=GENELIST&tool=summary'; my $g = join(",", @gene); $link =~ s/GENELIST/$g/;