UnboundLocalError | Python 3.6.8: /usr/bin/python3 Fri Nov 15 13:41:04 2024 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/var/www/html/BioLiP/pdb.cgi in <module>() |
1443 pubmed=display_regular_ligand(pdbid,asym_id,lig3,ligIdx,title) |
1444 else: |
=> 1445 pubmed,uniprot=display_protein_receptor(pdbid,asym_id,title) |
1446 |
1447 uniprot_line='' |
pubmed = '', uniprot = '', display_protein_receptor = <function display_protein_receptor>, pdbid = '6k33', asym_id = 'a6', title = 'Structure of a cyanobacterial photosystem I surrounded by octadecameric IsiA antenna proteins.' |
/var/www/html/BioLiP/pdb.cgi in display_protein_receptor(pdbid='6k33', asym_id='a6', title='Structure of a cyanobacterial photosystem I surrounded by octadecameric IsiA antenna proteins.') |
839 |
840 if go: |
=> 841 display_go(go,uniprot,pdbid,asym_id) |
842 return pubmed,uniprot |
843 |
global display_go = <function display_go>, go = '0009521,0009767,0016020,0016168,0019684', uniprot = '', pdbid = '6k33', asym_id = 'a6' |
/var/www/html/BioLiP/pdb.cgi in display_go(go='0009521,0009767,0016020,0016168,0019684', uniprot='', pdbid='6k33', asym_id='a6') |
480 '''.replace("$namespace_link",namespace_link |
481 ).replace("$namespace",namespace |
=> 482 ).replace("$uniprot",u |
483 )) |
484 for l,(term,name) in enumerate(go2aspect[Aspect]): |
u undefined |
UnboundLocalError: local variable 'u' referenced before assignment
args =
("local variable 'u' referenced before assignment",)
with_traceback =
<built-in method with_traceback of UnboundLocalError object>