diff options
Diffstat (limited to 'gn2/wqflask/show_trait/show_trait.py')
-rw-r--r-- | gn2/wqflask/show_trait/show_trait.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/show_trait/show_trait.py b/gn2/wqflask/show_trait/show_trait.py index 64d9be3b..1ee058ab 100644 --- a/gn2/wqflask/show_trait/show_trait.py +++ b/gn2/wqflask/show_trait/show_trait.py @@ -697,7 +697,7 @@ def get_ncbi_summary(this_trait): # the output later try: response = requests.get( - "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=gene&id=%s&retmode=json" % this_trait.geneid) + "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=gene&id=%s&retmode=json" % this_trait.geneid) summary = json.loads(response.content)[ 'result'][this_trait.geneid]['summary'] return summary |