--> -->

Structure of PDB 2zid Chain A Binding Site BS02

Receptor Information
>2zid Chain A (length=536) Species: 210007 (Streptococcus mutans UA159) [Search protein sequence] [Download receptor structure] [Download structure with residue number starting from 1] [View receptor structure]
MQKHWWHKATVYQIYPKSFMDTNGDGIGDLKGITSKLDYLQKLGVMAIWL
SPVYDSPMDDNGYDIANYEAIADIFGNMADMDNLLTQAKMRGIKIIMDLV
VNHTSDEHAWFIEAREHPDSSERDYYIWCDQPNDLESIFGGSAWQYDDKS
DQYYLHFFSKKQPDLNWENANLRQKIYDMMNFWIDKGIGGFRMDVIDMIG
KIPAQHIVSNGPKLHAYLKEMNAASFGQHDLLTVGQTWGATPEIAKQYSN
PVNHELSMVFQFEHIGLQHKPEAPKWDYVKELNVPALKTIFNKWQTELEL
GQGWNSLFWNNHDLPRVLSIWGNTGKYREKSAKALAILLHLMRGTPYIYQ
GEEIGMTNYPFKDLNELDDIESLNYAKEAFTNGKSMETIMDSIRMIGRDN
ARTPMQWDASQNAGFSTADKTWLPVNPNYKDINVQAALKNSNSIFYTYQQ
LIQLRKENDWLVDADFELLPTADKVFAYLRKVREERYLIVVNVSDQEEVL
EIDVDKQETLISNTNESAALANHKLQPWDAFCIKIL
 
 
IndexError
Python 3.6.8: /usr/bin/python3
Mon Nov 25 00:41:42 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>()
   1435     title=pdb2title(pdbid)
   1436     if bs.startswith("BS"):
=> 1437         pubmed,uniprot=display_interaction(pdbid,asym_id,bs,title)
   1438     else:
   1439         if lig3:
pubmed = '', uniprot = '', display_interaction = <function display_interaction>, pdbid = '2zid', asym_id = 'A', bs = 'BS02', title = 'Substrate recognition mechanism of alpha-1,6-glu...e, dextran glucosidase from Streptococcus mutans.'
 /var/www/html/BioLiP/pdb.cgi in display_interaction(pdbid='2zid', asym_id='A', bs='BS02', title='Substrate recognition mechanism of alpha-1,6-glu...e, dextran glucosidase from Streptococcus mutans.')
    925                 p=subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE)
    926                 stdout,stderr=p.communicate()
=>  927                 line     =stdout.decode().splitlines()[0]
    928                 items    =line.split('\t')
    929                 rhea     ='\n'.join(["RHEA:"+r for r in items[2].split(',')])
line = '2zid\tA\tGLC\t5', stdout = b'', stdout.decode = <built-in method decode of bytes object>, ).splitlines undefined

IndexError: list index out of range
      args = ('list index out of range',)
      with_traceback = <built-in method with_traceback of IndexError object>