diff options
author | Pjotr Prins | 2024-06-22 05:26:14 -0500 |
---|---|---|
committer | Pjotr Prins | 2024-06-22 05:26:14 -0500 |
commit | 7ea75737fb14cf7b5a57bc951916a42b0fe3562c (patch) | |
tree | 7cb9251c612bdf115ae7f51692b3f1b562da4d28 | |
parent | e9438ef321c47409d47bbd0c363998094726b1b9 (diff) | |
download | genecup-7ea75737fb14cf7b5a57bc951916a42b0fe3562c.tar.gz |
Fix syntax
-rwxr-xr-x | server.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1401,7 +1401,7 @@ def synonyms(): synonym_list_str = ';'.join([str(syn) for syn in synonym_list]) synonym_list_str +=';' + node case = 1 - return render_template('genenames.html', case = case, gene = node.upper(,version=version()), synonym_list = synonym_list, synonym_list_str=synonym_list_str) + return render_template('genenames.html', case = case, gene = node.upper(), version=version(), synonym_list = synonym_list, synonym_list_str=synonym_list_str) except: try: synonym_list = session['synonym_list'] |