diff options
author | Hao Chen | 2020-03-07 22:34:27 -0600 |
---|---|---|
committer | Hao Chen | 2020-03-07 22:34:27 -0600 |
commit | ff5c5d3aff13f4f81c9b3e9a39a63e7794cb609e (patch) | |
tree | 0a0910c6733d2e3695960cbbc1e5efc17a3f488c /server.py | |
parent | cea42615bd0c0c02bad574db42fc7c44c5ca5c66 (diff) | |
download | genecup-ff5c5d3aff13f4f81c9b3e9a39a63e7794cb609e.tar.gz |
Hakan fixing the count bug
Diffstat (limited to 'server.py')
-rwxr-xr-x | server.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -535,7 +535,6 @@ def cytoscape(): @app.route("/sentences") def sentences(): - pmid_temp="" pmid_list=[] edge=request.args.get('edgeID') (tf_name, gene0, cat0)=edge.split("|") @@ -547,7 +546,6 @@ def sentences(): (gene,nouse,cat, pmid, text)=sent.split("\t") if (gene.upper() == gene0.upper() and cat.upper() == cat0.upper() and (pmid+cat0 not in pmid_list)) : out3+= "<li> "+ text + " <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=" + pmid +"\" target=_new>PMID:"+pmid+"<br></a>" - pmid_temp = pmid pmid_list.append(pmid+cat0) out1="<h3>"+gene0 + " and " + cat0 + "</h3>\n" if len(pmid_list)>1: |