Chimera-users
Threads by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- 3 participants
- 7012 discussions
20 Feb '25
Dear UCSF
Hello, I'm Choi Hwan. I'm a college student majoring in molecular design
research in Korea.
I'm inquiring about a problem in the process of making a pdbqt file during
the research project.
First of all, the contents are as follows.
I made a total of two ligand.pdbqt.
(1) Called Lingand(4YZN) to chimera as sdf file and ran autodock vina.
That way, I can see that 4YZN.pdb and 4YZN.pdbqt are created.
(2) We also used Autodock tools to make 4YZN.pdbqt of 4YZN.pdb generated in
the process above. Autodock tools used here directly used
prepare_ligand4.py in the path where chimera was installed.
As a result, the format of the three pdbqt made was different. The
4YZN.pdbqt made in chimera had 6 active torsions and the 4YZN.pdbqt made
using Autodock tools had 7 active torsions. The result was that the vina
docking results were different. As a result of docking, the (1) pdbqt made
in chimera was better suited for vina docking.
I want to create the pdbqt format generated by chimera. Since we need to
make a large amount of compound into pdbqt, could you tell me how to get
pdbqt without using chimera GUI? I am using linux.
Or I would like to know if I missed anything in the process of making sdf
-> pdb -> pdbqt in chimera. (using chimera 1.17.3)
3
2
Dear Responsible,
I am working on a script that should iterate through several structures,
check the structures for clashes among all atoms, and eliminate the pdb in
any clashes are found.
Here is what I have worked out so far:
# -*- coding: utf-8 -*-
import os
from chimera import runCommand as rc
from chimera import replyobj
import chimera
# Specify folder
folder_path = "/gporq3/store_0/usr/chiarini/chroma/chroma/"
# String to be found
search_string = "xxx"
# List of files in the folder
file_names = [fn for fn in os.listdir(folder_path) if fn.endswith(".pdb")]
print("File trovati nella cartella:" + str(file_names))
# Loop on every file containing 'search_string' in the name
for pdb_file in file_names:
if search_string in pdb_file:
pdb_path = os.path.join(folder_path, pdb_file)
# Open the PDB
rc("open {}".format(pdb_path))
# Calculates clashes
rc("findclash")
rc("wait")
# Verify if any clashes are found
clashes = chimera.clashClashList()
if clashes:
# If clashes are found eliminates the file
os.remove(pdb_path)
print("Clash trovati, il file {} รจ stato
eliminato.".format(pdb_file))
else:
# If no clash, exit normally
print("Nessun clash trovato per {}.".format(pdb_file))
But no analisys is done at all. I have been searching through the script
page (https://www.rbvi.ucsf.edu/trac/chimera/wiki/Scripts) in order to
found some clue on this function but so far I have found none.
Could you help me on this issue?
Thank you in advance
Valerio Chiarini
3
3
Good afternoon.
We have a VIBE board that we would like to utilize your software for. The
only issue is that it is a smart board that can't download traditional
software. Do you have a software download that I could try to see if it
could work?
Thank you!
Wendy
--
Wendy Tomamichel
DePauw Chemistry Lab Manager
Julian Science and Mathematics Center
2 E. Hanna St. Room 348
Greencastle, IN 46135
765-658-4606
3
2
Hi all,
The RCSB made a change to their web site this morning that broke the fetching of PDB files by ID code in Chimera. We have committed a fix to Chimera that re-enables PDB fetching, and that fix will be in tomorrow's daily build. Note that this problem only really affects you if you are trying to access PDB files you've never used before, because Chimera caches fetched PDB files on your machine.
We hope to make a production release that incorporates this fix sooner rather than later, but aren't yet sure exactly when that will be.
--Eric
Eric Pettersen
UCSF Computer Graphics Lab
1
0
Dear Concern,
I have used chimera for a long time, and I was wondering if I can contribute with some scripts/python code that can make chimera more beneficial to others.
Regards,
Raj Shekhor Roy
PhD Student
Electrical Engineering and Computer Science (EECS) Department
University of Missouri - Columbia
Email: rsr3gt(a)umsystem.edu
Phone (Cell): 573-814-9512
2
1
Dear Responsible,
I am working on a script that should iterate through several structures,
check the structures for clashes among all atoms, and eliminate the pdb
in any clashes are found.
Here is what I have worked out so far:
# -*- coding: utf-8 -*-
import os
from chimera import runCommand as rc
from chimera import replyobj
import chimera
# Specify folder
folder_path = "/gporq3/store_0/usr/chiarini/chroma/chroma/"
# String to be found
search_string = "xxx"
# List of files in the folder
file_names = [fn for fn in os.listdir(folder_path) if
fn.endswith(".pdb")]
print("File trovati nella cartella:" + str(file_names))
# Loop on every file containing 'search_string' in the name
for pdb_file in file_names:
if search_string in pdb_file:
pdb_path = os.path.join(folder_path, pdb_file)
# Open the PDB
rc("open {}".format(pdb_path))
# Calculates clashes
rc("findclash")
rc("wait")
# Verify if any clashes are found
clashes = chimera.clashClashList()
if clashes:
# If clashes are found eliminates the file
os.remove(pdb_path)
print("Clash trovati, il file {} C( stato
eliminato.".format(pdb_file))
else:
# If no clash, exit normally
print("Nessun clash trovato per {}.".format(pdb_file))
But no analisys is done at all. I have been searching through the script
page (https://www.rbvi.ucsf.edu/trac/chimera/wiki/Scripts) in order to
found some clue on this function but so far I have found none.
Could you help me on this issue?
Thank you in advance
--
Dr. Valerio Chiarini
_Senior Scientist_
Proteins & Monoclona Antibodies Department b Takis Biotech
c/o Tecnopolo
Via di Castel Romano, 100
00128 Rome, Italy
Tel.: +39 06-50576077
Fax: +39 06-50576710
Email: chiarini(a)takisbiotech.it
Web: http://www.takisbiotech.it 196/03_
_Le informazioni contenute in questa comunicazione e gli eventuali
documenti allegati hanno carattere confidenziale, sono tutelate dal
segreto
professionale e sono ad uso esclusivo del destinatario. Nel caso questa
comunicazione Vi sia pervenuta per errore, Vi informiamo che la sua
diffusione e riproduzione C( contraria alla legge e preghiamo di darci
prontamente avviso e di cancellare quanto ricevuto. __Grazie._
_This e-mail message and any files transmitted with it are subject to
attorney-client privilege and contain confidential information intended
only for the person(s) to whom it is addressed. If you are not the
intended
recipient, you are hereby notified that any use or distribution of this
e-mail is strictly prohibited: please notify the sender and delete the
original message. __Thank you._
1
0
Hi,
We would be interested to add more than one key color bar in the same chimerax session. But we noticed the key command allows only one color key can be present at a time.
Is there a way to add more than one color key in the same session?
Thanks a lot,
Fabian
Fabian Glaser, PhD
Technion Centre for Structural Biology (TCSB), Computational Section, Head
Technion Human Health Initiative (THHI)
Technion - Israel Institute of Technology, Haifa, Israel
fglaser(a)technion.ac.il
+972 (0)48293701
2
1
Hi,
I tried to do docking with Chimera, but I aced an error. The process I used is:
Tools - structure binding- dock prep -uncheck write mol2 file ok next step add Gasteiger charge ok
I used several frames of a MD simulation of modelled 3CQU6 protein, in water for Docking and I faced the same error for all pdb files.
Please let me know how to resolve the problem.
Thank you in advanced
Model 0 (frame_1001000_model1.pdb) appears to be a protein without secondary structure assignments.
Automatically computing assignments using 'ksdssp' and parameter values:
energy cutoff -0.5
minimum helix length 3
minimum strand length 3
Use command 'help ksdssp' for more information.
Residues with incomplete side chains:
โโโโโโILE 6
โโโโโโILE 19
โโโโโโILE 36
โโโโโโILE 74
โโโโโโILE 75
โโโโโโILE 84
โโโโโโILE 103
โโโโโโILE 165
โโโโโโILE 180
โโโโโโILE 186
โโโโโโILE 257
โโโโโโILE 288
โโโโโโILE 290
โโโโโโILE 300
โโโโโโILE 361
โโโโโโILE 366
โโโโโโILE 402
โโโโโโILE 411
โโโโโโILE 447
โโโโโโILE 449
Replacing each by 'swapaa same (residue atom spec) lib Dunbrack preserve True'
ILE 6: phi -77.4, psi 129.6 trans
Chi angles for ILE 6: -55.1
ILE 19: phi -78.2, psi 162.7 trans
Chi angles for ILE 19: 76.7
ILE 36: phi -122.2, psi 128.4 trans
Chi angles for ILE 36: -55.1
ILE 74: phi -136.5, psi 119.3 trans
Chi angles for ILE 74: -40.3
ILE 75: phi -110.2, psi 156.4 trans
Chi angles for ILE 75: 61.0
ILE 84: phi -109.4, psi 143.1 trans
Chi angles for ILE 84: -158.3
ILE 103: phi -57.4, psi -37.7 trans
Chi angles for ILE 103: -68.6
ILE 165: phi -131.8, psi 170.4 trans
Chi angles for ILE 165: 60.6
ILE 180: phi -125.3, psi 108.1 trans
Chi angles for ILE 180: -55.2
ILE 186: phi -93.0, psi 145.1 trans
Chi angles for ILE 186: 56.5
ILE 257: phi -67.9, psi -35.9 trans
Chi angles for ILE 257: -60.0
ILE 288: phi -112.5, psi 145.4 trans
Chi angles for ILE 288: 62.8
ILE 290: phi -94.7, psi 123.7 trans
Chi angles for ILE 290: -48.4
ILE 300: phi -73.4, psi 134.5 trans
Chi angles for ILE 300: -66.4
ILE 361: phi -79.0, psi -30.9 trans
Chi angles for ILE 361: -176.4
ILE 366: phi -127.0, psi 128.1 trans
Chi angles for ILE 366: -63.8
ILE 402: phi -61.0, psi -39.2 trans
Chi angles for ILE 402: -52.7
ILE 411: phi -89.8, psi 134.0 trans
Chi angles for ILE 411: -65.6
ILE 447: phi -79.9, psi 129.4 trans
Chi angles for ILE 447: -42.2
ILE 449: phi -73.8, psi 174.9 trans
Chi angles for ILE 449: 72.4
Applying ILE rotamer (chi angles: 63.1 170.6) to ILE 19
Applying ILE rotamer (chi angles: -174.1 70.6) to ILE 84
Applying ILE rotamer (chi angles: -60.3 -60.9) to ILE 300
Applying ILE rotamer (chi angles: -56.7 92.3) to ILE 74
Applying ILE rotamer (chi angles: -57.1 -63.4) to ILE 36
Applying ILE rotamer (chi angles: 62.2 171.6) to ILE 165
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 402
Applying ILE rotamer (chi angles: -67.0 169.0) to ILE 257
Applying ILE rotamer (chi angles: 62.3 170.5) to ILE 449
Applying ILE rotamer (chi angles: -162.1 168.1) to ILE 361
Applying ILE rotamer (chi angles: 61.8 170.9) to ILE 186
Applying ILE rotamer (chi angles: 60.6 171.1) to ILE 288
Applying ILE rotamer (chi angles: 61.7 170.9) to ILE 75
Applying ILE rotamer (chi angles: -61.1 170.2) to ILE 290
Applying ILE rotamer (chi angles: -58.4 -66.3) to ILE 366
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 6
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 103
Applying ILE rotamer (chi angles: -58.8 172.2) to ILE 180
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 447
Applying ILE rotamer (chi angles: -62.1 169.6) to ILE 411
No SEQRES records for frame_1001000_model1.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
389 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโMET HN2 (MET 1 HN2)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโARG HC (ARG 15 HC, ARG 23 HC, ARG 25 HC + 27 others)
โโโโโโMET HN3 (MET 1 HN3)
โโโโโโARG 3HC (ARG 15 3HC, ARG 23 3HC, ARG 25 3HC + 27 others)
โโโโโโARG 6HC (ARG 15 6HC, ARG 23 6HC, ARG 25 6HC + 27 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโARG 4HC (ARG 15 4HC, ARG 23 4HC, ARG 25 4HC + 27 others)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโARG 2HC (ARG 15 2HC, ARG 23 2HC, ARG 25 2HC + 27 others)
โโโโโโARG 1HC (ARG 15 1HC, ARG 23 1HC, ARG 25 1HC + 27 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโMET HN1 (MET 1 HN1)
โโโโโโARG 5HC (ARG 15 5HC, ARG 23 5HC, ARG 25 5HC + 27 others)
โโโโโโARG HH (ARG 15 HH, ARG 15 HH, ARG 15 HH + 117 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -206.220
The following residues had non-integral charges:
โโโโโโMET 1 0.4048
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 0.7253
โโโโโโLYS 14 0.7253
โโโโโโARG 15 -1.4817
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 -1.4817
โโโโโโARG 25 -1.4817
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 -1.4817
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 -1.4817
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 -1.4817
โโโโโโARG 69 -1.4817
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 -1.4817
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 -1.4817
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 0.7253
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 -1.4817
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 -1.4817
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 0.7253
โโโโโโARG 144 -1.4817
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 -1.4817
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 0.7253
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 -1.4817
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 -1.4817
โโโโโโHIS 207 0.7253
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 0.7253
โโโโโโASP 221 -1.2936
โโโโโโARG 222 -1.4817
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 0.7253
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 -1.4817
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 -1.4817
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 -1.4817
โโโโโโALA 250 -0.2719
โโโโโโARG 251 -1.4817
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 0.7253
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 -1.4817
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 0.7253
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 -1.4817
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 -1.4817
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 0.7253
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 -1.4817
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 -1.4817
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 -1.4817
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 0.7253
โโโโโโARG 406 -1.4817
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 0.7253
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 -1.4817
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 -1.4817
โโโโโโARG 466 -1.4817
โโโโโโHIS 468 0.7253
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 34 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
Model 0 (frame_1001000_model1.pdb) appears to be a protein without secondary structure assignments.
Automatically computing assignments using 'ksdssp' and parameter values:
energy cutoff -0.5
minimum helix length 3
minimum strand length 3
Use command 'help ksdssp' for more information.
Residues with incomplete side chains:
โโโโโโILE 6
โโโโโโILE 19
โโโโโโILE 36
โโโโโโILE 74
โโโโโโILE 75
โโโโโโILE 84
โโโโโโILE 103
โโโโโโILE 165
โโโโโโILE 180
โโโโโโILE 186
โโโโโโILE 257
โโโโโโILE 288
โโโโโโILE 290
โโโโโโILE 300
โโโโโโILE 361
โโโโโโILE 366
โโโโโโILE 402
โโโโโโILE 411
โโโโโโILE 447
โโโโโโILE 449
Replacing each by 'swapaa same (residue atom spec) lib Dunbrack preserve True'
ILE 6: phi -77.4, psi 129.6 trans
Chi angles for ILE 6: -55.1
ILE 19: phi -78.2, psi 162.7 trans
Chi angles for ILE 19: 76.7
ILE 36: phi -122.2, psi 128.4 trans
Chi angles for ILE 36: -55.1
ILE 74: phi -136.5, psi 119.3 trans
Chi angles for ILE 74: -40.3
ILE 75: phi -110.2, psi 156.4 trans
Chi angles for ILE 75: 61.0
ILE 84: phi -109.4, psi 143.1 trans
Chi angles for ILE 84: -158.3
ILE 103: phi -57.4, psi -37.7 trans
Chi angles for ILE 103: -68.6
ILE 165: phi -131.8, psi 170.4 trans
Chi angles for ILE 165: 60.6
ILE 180: phi -125.3, psi 108.1 trans
Chi angles for ILE 180: -55.2
ILE 186: phi -93.0, psi 145.1 trans
Chi angles for ILE 186: 56.5
ILE 257: phi -67.9, psi -35.9 trans
Chi angles for ILE 257: -60.0
ILE 288: phi -112.5, psi 145.4 trans
Chi angles for ILE 288: 62.8
ILE 290: phi -94.7, psi 123.7 trans
Chi angles for ILE 290: -48.4
ILE 300: phi -73.4, psi 134.5 trans
Chi angles for ILE 300: -66.4
ILE 361: phi -79.0, psi -30.9 trans
Chi angles for ILE 361: -176.4
ILE 366: phi -127.0, psi 128.1 trans
Chi angles for ILE 366: -63.8
ILE 402: phi -61.0, psi -39.2 trans
Chi angles for ILE 402: -52.7
ILE 411: phi -89.8, psi 134.0 trans
Chi angles for ILE 411: -65.6
ILE 447: phi -79.9, psi 129.4 trans
Chi angles for ILE 447: -42.2
ILE 449: phi -73.8, psi 174.9 trans
Chi angles for ILE 449: 72.4
Applying ILE rotamer (chi angles: -174.1 70.6) to ILE 84
Applying ILE rotamer (chi angles: -60.3 -60.9) to ILE 300
Applying ILE rotamer (chi angles: -57.1 -63.4) to ILE 36
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 402
Applying ILE rotamer (chi angles: -56.7 92.3) to ILE 74
Applying ILE rotamer (chi angles: 62.2 171.6) to ILE 165
Applying ILE rotamer (chi angles: -67.0 169.0) to ILE 257
Applying ILE rotamer (chi angles: 63.1 170.6) to ILE 19
Applying ILE rotamer (chi angles: -62.1 169.6) to ILE 411
Applying ILE rotamer (chi angles: -162.1 168.1) to ILE 361
Applying ILE rotamer (chi angles: 61.8 170.9) to ILE 186
Applying ILE rotamer (chi angles: 60.6 171.1) to ILE 288
Applying ILE rotamer (chi angles: 61.7 170.9) to ILE 75
Applying ILE rotamer (chi angles: -61.1 170.2) to ILE 290
Applying ILE rotamer (chi angles: -58.4 -66.3) to ILE 366
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 103
Applying ILE rotamer (chi angles: -58.8 172.2) to ILE 180
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 447
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 6
Applying ILE rotamer (chi angles: 62.3 170.5) to ILE 449
No SEQRES records for frame_1001000_model1.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
389 hydrogen bonds
Hydrogens added
Charge model: AMBER ff99SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโMET HN2 (MET 1 HN2)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโARG HC (ARG 15 HC, ARG 23 HC, ARG 25 HC + 27 others)
โโโโโโMET HN3 (MET 1 HN3)
โโโโโโARG 3HC (ARG 15 3HC, ARG 23 3HC, ARG 25 3HC + 27 others)
โโโโโโARG 6HC (ARG 15 6HC, ARG 23 6HC, ARG 25 6HC + 27 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโARG 4HC (ARG 15 4HC, ARG 23 4HC, ARG 25 4HC + 27 others)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโARG 2HC (ARG 15 2HC, ARG 23 2HC, ARG 25 2HC + 27 others)
โโโโโโARG 1HC (ARG 15 1HC, ARG 23 1HC, ARG 25 1HC + 27 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโMET HN1 (MET 1 HN1)
โโโโโโARG 5HC (ARG 15 5HC, ARG 23 5HC, ARG 25 5HC + 27 others)
โโโโโโARG HH (ARG 15 HH, ARG 15 HH, ARG 15 HH + 117 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -204.317
The following residues had non-integral charges:
โโโโโโMET 1 0.4048
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 0.7253
โโโโโโLYS 14 0.7253
โโโโโโARG 15 -1.4817
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 -1.4817
โโโโโโARG 25 -1.4817
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 -1.4817
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 -1.4817
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 -1.4817
โโโโโโARG 69 -1.4817
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 -1.4817
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 -1.4817
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 0.7253
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 -1.4817
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 -1.4817
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 0.7253
โโโโโโARG 144 -1.4817
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 -1.4817
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 0.7253
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 -1.4817
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 -1.4817
โโโโโโHIS 207 0.7253
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 0.7253
โโโโโโASP 221 -1.2936
โโโโโโARG 222 -1.4817
โโโโโโLEU 223 -0.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 0.7253
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 -1.4817
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 -1.4817
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 -1.4817
โโโโโโALA 250 -0.2719
โโโโโโARG 251 -1.4817
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 0.7253
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 -1.4817
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 0.7253
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 -1.4817
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 -1.4817
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 0.7253
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 -1.4817
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 -1.4817
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 -1.4817
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 0.7253
โโโโโโARG 406 -1.4817
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 0.7253
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 -1.4817
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 -1.4817
โโโโโโARG 466 -1.4817
โโโโโโHIS 468 0.7253
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 33 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
Model 0 (frame_1001000_model1.pdb) appears to be a protein without secondary structure assignments.
Automatically computing assignments using 'ksdssp' and parameter values:
energy cutoff -0.5
minimum helix length 3
minimum strand length 3
Use command 'help ksdssp' for more information.
The following problems occurred while reading PDB file for frame_1001000.pdb
warning: Ignored bad PDB record found on line 1
warning: Ignored bad PDB record found on line 3
Model 0 (frame_1001000.pdb) appears to be a protein without secondary structure assignments.
Automatically computing assignments using 'ksdssp' and parameter values:
energy cutoff -0.5
minimum helix length 3
minimum strand length 3
Use command 'help ksdssp' for more information.
Residues with incomplete side chains:
โโโโโโILE 6
โโโโโโILE 19
โโโโโโILE 36
โโโโโโILE 74
โโโโโโILE 75
โโโโโโILE 84
โโโโโโILE 103
โโโโโโILE 165
โโโโโโILE 180
โโโโโโILE 186
โโโโโโILE 257
โโโโโโILE 288
โโโโโโILE 290
โโโโโโILE 300
โโโโโโILE 361
โโโโโโILE 366
โโโโโโILE 402
โโโโโโILE 411
โโโโโโILE 447
โโโโโโILE 449
Replacing each by 'swapaa same (residue atom spec) lib Dunbrack preserve True'
ILE 6: phi -77.4, psi 129.6 trans
Chi angles for ILE 6: -55.1
ILE 19: phi -78.2, psi 162.7 trans
Chi angles for ILE 19: 76.7
ILE 36: phi -122.2, psi 128.4 trans
Chi angles for ILE 36: -55.1
ILE 74: phi -136.5, psi 119.3 trans
Chi angles for ILE 74: -40.3
ILE 75: phi -110.2, psi 156.4 trans
Chi angles for ILE 75: 61.0
ILE 84: phi -109.4, psi 143.1 trans
Chi angles for ILE 84: -158.3
ILE 103: phi -57.4, psi -37.7 trans
Chi angles for ILE 103: -68.6
ILE 165: phi -131.8, psi 170.4 trans
Chi angles for ILE 165: 60.6
ILE 180: phi -125.3, psi 108.1 trans
Chi angles for ILE 180: -55.2
ILE 186: phi -93.0, psi 145.1 trans
Chi angles for ILE 186: 56.5
ILE 257: phi -67.9, psi -35.9 trans
Chi angles for ILE 257: -60.0
ILE 288: phi -112.5, psi 145.4 trans
Chi angles for ILE 288: 62.8
ILE 290: phi -94.7, psi 123.7 trans
Chi angles for ILE 290: -48.4
ILE 300: phi -73.4, psi 134.5 trans
Chi angles for ILE 300: -66.4
ILE 361: phi -79.0, psi -30.9 trans
Chi angles for ILE 361: -176.4
ILE 366: phi -127.0, psi 128.1 trans
Chi angles for ILE 366: -63.8
ILE 402: phi -61.0, psi -39.2 trans
Chi angles for ILE 402: -52.7
ILE 411: phi -89.8, psi 134.0 trans
Chi angles for ILE 411: -65.6
ILE 447: phi -79.9, psi 129.4 trans
Chi angles for ILE 447: -42.2
ILE 449: phi -73.8, psi 174.9 trans
Chi angles for ILE 449: 72.4
Applying ILE rotamer (chi angles: 62.2 171.6) to ILE 165
Applying ILE rotamer (chi angles: -67.0 169.0) to ILE 257
Applying ILE rotamer (chi angles: 63.1 170.6) to ILE 19
Applying ILE rotamer (chi angles: -60.3 -60.9) to ILE 300
Applying ILE rotamer (chi angles: -174.1 70.6) to ILE 84
Applying ILE rotamer (chi angles: -57.1 -63.4) to ILE 36
Applying ILE rotamer (chi angles: -56.7 92.3) to ILE 74
Applying ILE rotamer (chi angles: 60.6 171.1) to ILE 288
Applying ILE rotamer (chi angles: -58.4 -66.3) to ILE 366
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 103
Applying ILE rotamer (chi angles: -62.1 169.6) to ILE 411
Applying ILE rotamer (chi angles: -58.8 172.2) to ILE 180
Applying ILE rotamer (chi angles: -61.1 170.2) to ILE 290
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 447
Applying ILE rotamer (chi angles: 62.3 170.5) to ILE 449
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 402
Applying ILE rotamer (chi angles: -162.1 168.1) to ILE 361
Applying ILE rotamer (chi angles: 61.8 170.9) to ILE 186
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 6
Applying ILE rotamer (chi angles: 61.7 170.9) to ILE 75
No SEQRES records for frame_1001000.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
395 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -152.379
The following residues had non-integral charges:
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 -0.2719
โโโโโโLYS 14 0.7253
โโโโโโARG 15 0.7253
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 0.7253
โโโโโโARG 25 0.7253
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 0.7253
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 0.7253
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 0.7253
โโโโโโARG 69 0.7253
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 0.7253
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 0.7253
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 -0.2719
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 0.7253
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 0.7253
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 -0.2719
โโโโโโARG 144 0.7253
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 0.7253
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 -0.2719
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 0.7253
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 0.7253
โโโโโโHIS 207 -0.2719
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 -0.2719
โโโโโโASP 221 -1.2936
โโโโโโARG 222 0.7253
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 -0.2719
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 0.7253
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 0.7253
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 0.7253
โโโโโโALA 250 -0.2719
โโโโโโARG 251 0.7253
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 -0.2719
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 0.7253
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 -0.2719
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 0.7253
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 0.7253
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 -0.2719
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 0.7253
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 0.7253
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 0.7253
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 -0.2719
โโโโโโARG 406 0.7253
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 -0.2719
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 0.7253
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 0.7253
โโโโโโARG 466 0.7253
โโโโโโHIS 468 -0.2719
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 23 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
No incomplete side chains
No SEQRES records for frame_1001000.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
395 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -152.379
The following residues had non-integral charges:
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 -0.2719
โโโโโโLYS 14 0.7253
โโโโโโARG 15 0.7253
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 0.7253
โโโโโโARG 25 0.7253
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 0.7253
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 0.7253
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 0.7253
โโโโโโARG 69 0.7253
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 0.7253
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 0.7253
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 -0.2719
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 0.7253
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 0.7253
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 -0.2719
โโโโโโARG 144 0.7253
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 0.7253
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 -0.2719
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 0.7253
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 0.7253
โโโโโโHIS 207 -0.2719
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 -0.2719
โโโโโโASP 221 -1.2936
โโโโโโARG 222 0.7253
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 -0.2719
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 0.7253
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 0.7253
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 0.7253
โโโโโโALA 250 -0.2719
โโโโโโARG 251 0.7253
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 -0.2719
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 0.7253
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 -0.2719
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 0.7253
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 0.7253
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 -0.2719
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 0.7253
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 0.7253
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 0.7253
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 -0.2719
โโโโโโARG 406 0.7253
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 -0.2719
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 0.7253
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 0.7253
โโโโโโARG 466 0.7253
โโโโโโHIS 468 -0.2719
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 23 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
The following problems occurred while reading PDB file for frame_853960.pdb
warning: Ignored bad PDB record found on line 1
warning: Ignored bad PDB record found on line 3
Model 0 (frame_853960.pdb) appears to be a protein without secondary structure assignments.
Automatically computing assignments using 'ksdssp' and parameter values:
energy cutoff -0.5
minimum helix length 3
minimum strand length 3
Use command 'help ksdssp' for more information.
Residues with incomplete side chains:
โโโโโโILE 6
โโโโโโILE 19
โโโโโโILE 36
โโโโโโILE 74
โโโโโโILE 75
โโโโโโILE 84
โโโโโโILE 103
โโโโโโILE 165
โโโโโโILE 180
โโโโโโILE 186
โโโโโโILE 257
โโโโโโILE 288
โโโโโโILE 290
โโโโโโILE 300
โโโโโโILE 361
โโโโโโILE 366
โโโโโโILE 402
โโโโโโILE 411
โโโโโโILE 447
โโโโโโILE 449
Replacing each by 'swapaa same (residue atom spec) lib Dunbrack preserve True'
ILE 6: phi -107.2, psi 108.1 trans
Chi angles for ILE 6: -68.8
ILE 19: phi -140.8, psi 145.1 trans
Chi angles for ILE 19: -160.5
ILE 36: phi -119.2, psi 123.0 trans
Chi angles for ILE 36: -36.7
ILE 74: phi -113.1, psi 135.8 trans
Chi angles for ILE 74: -50.0
ILE 75: phi -140.4, psi 153.3 trans
Chi angles for ILE 75: 43.5
ILE 84: phi -129.2, psi 117.8 trans
Chi angles for ILE 84: -66.0
ILE 103: phi -69.8, psi -30.0 trans
Chi angles for ILE 103: -59.8
ILE 165: phi -117.7, psi 158.0 trans
Chi angles for ILE 165: 51.0
ILE 180: phi -103.1, psi 117.0 trans
Chi angles for ILE 180: -57.2
ILE 186: phi -68.7, psi 152.2 trans
Chi angles for ILE 186: 54.6
ILE 257: phi -68.8, psi -40.9 trans
Chi angles for ILE 257: -56.1
ILE 288: phi -92.0, psi 124.5 trans
Chi angles for ILE 288: -51.5
ILE 290: phi -121.9, psi 123.0 trans
Chi angles for ILE 290: -61.5
ILE 300: phi -70.1, psi 136.1 trans
Chi angles for ILE 300: -61.5
ILE 361: phi -68.8, psi -37.9 trans
Chi angles for ILE 361: -56.6
ILE 366: phi -92.8, psi 158.8 trans
Chi angles for ILE 366: -14.9
ILE 402: phi -67.9, psi -50.9 trans
Chi angles for ILE 402: -52.7
ILE 411: phi -115.4, psi 158.5 trans
Chi angles for ILE 411: 45.5
ILE 447: phi -59.2, psi 150.3 trans
Chi angles for ILE 447: 45.2
ILE 449: phi -136.8, psi 151.6 trans
Chi angles for ILE 449: 55.5
Applying ILE rotamer (chi angles: -67.2 169.2) to ILE 103
Applying ILE rotamer (chi angles: 60.9 170.1) to ILE 447
Applying ILE rotamer (chi angles: -171.9 70.5) to ILE 19
Applying ILE rotamer (chi angles: -67.0 169.0) to ILE 361
Applying ILE rotamer (chi angles: -57.7 -65.9) to ILE 84
Applying ILE rotamer (chi angles: 62.4 170.2) to ILE 186
Applying ILE rotamer (chi angles: -62.2 169.5) to ILE 74
Applying ILE rotamer (chi angles: -56.4 -59.2) to ILE 288
Applying ILE rotamer (chi angles: -57.4 -60.3) to ILE 366
Applying ILE rotamer (chi angles: 61.8 171.3) to ILE 165
Applying ILE rotamer (chi angles: -60.4 170.3) to ILE 180
Applying ILE rotamer (chi angles: -67.0 169.0) to ILE 257
Applying ILE rotamer (chi angles: -59.9 171.3) to ILE 290
Applying ILE rotamer (chi angles: -59.2 171.5) to ILE 6
Applying ILE rotamer (chi angles: 61.8 171.3) to ILE 411
Applying ILE rotamer (chi angles: 60.0 172.1) to ILE 449
Applying ILE rotamer (chi angles: -66.5 168.5) to ILE 402
Applying ILE rotamer (chi angles: -59.9 171.3) to ILE 36
Applying ILE rotamer (chi angles: 60.0 172.1) to ILE 75
Applying ILE rotamer (chi angles: -64.7 169.9) to ILE 300
No SEQRES records for frame_853960.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
412 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -152.379
The following residues had non-integral charges:
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 -0.2719
โโโโโโLYS 14 0.7253
โโโโโโARG 15 0.7253
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 0.7253
โโโโโโARG 25 0.7253
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 0.7253
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 0.7253
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 0.7253
โโโโโโARG 69 0.7253
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 0.7253
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 0.7253
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 -0.2719
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 0.7253
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 0.7253
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 -0.2719
โโโโโโARG 144 0.7253
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 0.7253
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 -0.2719
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 0.7253
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 0.7253
โโโโโโHIS 207 -0.2719
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 -0.2719
โโโโโโASP 221 -1.2936
โโโโโโARG 222 0.7253
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 -0.2719
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 0.7253
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 0.7253
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 0.7253
โโโโโโALA 250 -0.2719
โโโโโโARG 251 0.7253
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 -0.2719
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 0.7253
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 -0.2719
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 0.7253
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 0.7253
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 -0.2719
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 0.7253
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 0.7253
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 0.7253
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 -0.2719
โโโโโโARG 406 0.7253
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 -0.2719
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 0.7253
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 0.7253
โโโโโโARG 466 0.7253
โโโโโโHIS 468 -0.2719
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 23 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
The following problems occurred while reading PDB file for frame_747500.pdb
warning: Ignored bad PDB record found on line 1
warning: Ignored bad PDB record found on line 3
Model 0 (frame_747500.pdb) appears to be a protein without secondary structure assignments.
Automatically computing assignments using 'ksdssp' and parameter values:
energy cutoff -0.5
minimum helix length 3
minimum strand length 3
Use command 'help ksdssp' for more information.
Residues with incomplete side chains:
โโโโโโILE 6
โโโโโโILE 19
โโโโโโILE 36
โโโโโโILE 74
โโโโโโILE 75
โโโโโโILE 84
โโโโโโILE 103
โโโโโโILE 165
โโโโโโILE 180
โโโโโโILE 186
โโโโโโILE 257
โโโโโโILE 288
โโโโโโILE 290
โโโโโโILE 300
โโโโโโILE 361
โโโโโโILE 366
โโโโโโILE 402
โโโโโโILE 411
โโโโโโILE 447
โโโโโโILE 449
Replacing each by 'swapaa same (residue atom spec) lib Dunbrack preserve True'
ILE 6: phi -97.6, psi 123.0 trans
Chi angles for ILE 6: -49.2
ILE 19: phi -110.9, psi 157.8 trans
Chi angles for ILE 19: 56.5
ILE 36: phi -113.4, psi 132.3 trans
Chi angles for ILE 36: -49.8
ILE 74: phi -106.1, psi 127.7 trans
Chi angles for ILE 74: -55.6
ILE 75: phi -117.2, psi 133.7 trans
Chi angles for ILE 75: -55.8
ILE 84: phi -98.3, psi 121.6 trans
Chi angles for ILE 84: -68.6
ILE 103: phi -61.3, psi -46.5 trans
Chi angles for ILE 103: -81.6
ILE 165: phi -113.3, psi 146.0 trans
Chi angles for ILE 165: 49.5
ILE 180: phi -96.5, psi 127.6 trans
Chi angles for ILE 180: -57.0
ILE 186: phi -68.3, psi 152.4 trans
Chi angles for ILE 186: 58.6
ILE 257: phi -59.4, psi -43.6 trans
Chi angles for ILE 257: -63.7
ILE 288: phi -95.2, psi 104.5 trans
Chi angles for ILE 288: -54.8
ILE 290: phi -59.0, psi 103.3 trans
Chi angles for ILE 290: -70.7
ILE 300: phi -59.3, psi 153.1 trans
Chi angles for ILE 300: 69.1
ILE 361: phi -68.8, psi -24.6 trans
Chi angles for ILE 361: 73.7
ILE 366: phi -48.8, psi 148.2 trans
Chi angles for ILE 366: -156.2
ILE 402: phi -77.8, psi -45.6 trans
Chi angles for ILE 402: -56.6
ILE 411: phi -123.7, psi 143.9 trans
Chi angles for ILE 411: -172.2
ILE 447: phi -78.2, psi 130.4 trans
Chi angles for ILE 447: -61.5
ILE 449: phi -104.2, psi 10.1 trans
Chi angles for ILE 449: 52.1
Applying ILE rotamer (chi angles: 64.6 171.3) to ILE 361
Applying ILE rotamer (chi angles: -55.4 -59.0) to ILE 84
Applying ILE rotamer (chi angles: -65.5 168.9) to ILE 402
Applying ILE rotamer (chi angles: -60.7 170.4) to ILE 75
Applying ILE rotamer (chi angles: -61.2 170.5) to ILE 290
Applying ILE rotamer (chi angles: 60.6 171.1) to ILE 165
Applying ILE rotamer (chi angles: 61.7 170.9) to ILE 19
Applying ILE rotamer (chi angles: -168.6 167.4) to ILE 366
Applying ILE rotamer (chi angles: -68.1 168.5) to ILE 257
Applying ILE rotamer (chi angles: 62.4 170.2) to ILE 186
Applying ILE rotamer (chi angles: 63.8 170.0) to ILE 449
Applying ILE rotamer (chi angles: -61.3 170.0) to ILE 74
Applying ILE rotamer (chi angles: -61.3 170.0) to ILE 36
Applying ILE rotamer (chi angles: 60.9 170.1) to ILE 300
Applying ILE rotamer (chi angles: -67.8 167.9) to ILE 103
Applying ILE rotamer (chi angles: -62.9 169.7) to ILE 447
Applying ILE rotamer (chi angles: -54.1 -58.4) to ILE 288
Applying ILE rotamer (chi angles: -61.6 169.5) to ILE 180
Applying ILE rotamer (chi angles: -175.0 166.3) to ILE 411
Applying ILE rotamer (chi angles: -60.4 170.3) to ILE 6
No SEQRES records for frame_747500.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
399 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -152.379
The following residues had non-integral charges:
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 -0.2719
โโโโโโLYS 14 0.7253
โโโโโโARG 15 0.7253
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 0.7253
โโโโโโARG 25 0.7253
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 0.7253
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 0.7253
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 0.7253
โโโโโโARG 69 0.7253
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 0.7253
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 0.7253
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 -0.2719
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 0.7253
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 0.7253
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 -0.2719
โโโโโโARG 144 0.7253
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 0.7253
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 -0.2719
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 0.7253
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 0.7253
โโโโโโHIS 207 -0.2719
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 -0.2719
โโโโโโASP 221 -1.2936
โโโโโโARG 222 0.7253
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 -0.2719
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 0.7253
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 0.7253
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 0.7253
โโโโโโALA 250 -0.2719
โโโโโโARG 251 0.7253
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 -0.2719
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 0.7253
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 -0.2719
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 0.7253
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 0.7253
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 -0.2719
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 0.7253
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 0.7253
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 0.7253
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 -0.2719
โโโโโโARG 406 0.7253
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 -0.2719
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 0.7253
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 0.7253
โโโโโโARG 466 0.7253
โโโโโโHIS 468 -0.2719
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 23 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
No incomplete side chains
No SEQRES records for frame_747500.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
399 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -152.379
The following residues had non-integral charges:
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 -0.2719
โโโโโโLYS 14 0.7253
โโโโโโARG 15 0.7253
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 0.7253
โโโโโโARG 25 0.7253
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 0.7253
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 0.7253
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 0.7253
โโโโโโARG 69 0.7253
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 0.7253
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 0.7253
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 -0.2719
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 0.7253
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 0.7253
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 -0.2719
โโโโโโARG 144 0.7253
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 0.7253
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 -0.2719
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 0.7253
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 0.7253
โโโโโโHIS 207 -0.2719
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 -0.2719
โโโโโโASP 221 -1.2936
โโโโโโARG 222 0.7253
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 -0.2719
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 0.7253
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 0.7253
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 0.7253
โโโโโโALA 250 -0.2719
โโโโโโARG 251 0.7253
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 -0.2719
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 0.7253
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 -0.2719
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 0.7253
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 0.7253
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 -0.2719
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 0.7253
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 0.7253
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 0.7253
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 -0.2719
โโโโโโARG 406 0.7253
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 -0.2719
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 0.7253
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 0.7253
โโโโโโARG 466 0.7253
โโโโโโHIS 468 -0.2719
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 23 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
No incomplete side chains
No SEQRES records for frame_747500.pdb (#0) principal chain; guessing terminii instead
Chain-initial residues that are actual N terminii: MET 1
Chain-initial residues that are not actual N terminii:
Chain-final residues that are actual C terminii: ALA 480
Chain-final residues that are not actual C terminii:
399 hydrogen bonds
Hydrogens added
Charge model: AMBER ff14SB
Non-standard atom names:
โโโโโโLEU HN (LEU 12 HN, LEU 28 HN, LEU 29 HN + 38 others)
โโโโโโASN HN (ASN 31 HN, ASN 53 HN, ASN 54 HN + 10 others)
โโโโโโGLY HN (GLY 10 HN, GLY 16 HN, GLY 33 HN + 27 others)
โโโโโโSER HN (SER 2 HN, SER 56 HN, SER 122 HN + 20 others)
โโโโโโSER HG1 (SER 2 HG1, SER 56 HG1, SER 122 HG1 + 20 others)
โโโโโโALA OT1 (ALA 480 OT1)
โโโโโโTYR HN (TYR 18 HN, TYR 26 HN, TYR 38 HN + 15 others)
โโโโโโILE HN (ILE 6 HN, ILE 19 HN, ILE 36 HN + 17 others)
โโโโโโARG HN (ARG 15 HN, ARG 23 HN, ARG 25 HN + 27 others)
โโโโโโVAL HN (VAL 4 HN, VAL 7 HN, VAL 45 HN + 25 others)
โโโโโโTRP HN (TRP 11 HN, TRP 22 HN, TRP 80 HN + 4 others)
โโโโโโPHE HN (PHE 27 HN, PHE 35 HN, PHE 55 HN + 24 others)
โโโโโโLYS HN (LYS 8 HN, LYS 14 HN, LYS 20 HN + 33 others)
โโโโโโASP HN (ASP 3 HN, ASP 32 HN, ASP 44 HN + 25 others)
โโโโโโHIS HN (HIS 13 HN, HIS 89 HN, HIS 143 HN + 10 others)
โโโโโโCYS HG1 (CYS 60 HG1, CYS 77 HG1, CYS 224 HG1 + 4 others)
โโโโโโALA HN (ALA 5 HN, ALA 50 HN, ALA 58 HN + 22 others)
โโโโโโGLU HN (GLU 9 HN, GLU 17 HN, GLU 40 HN + 46 others)
โโโโโโCYS HN (CYS 60 HN, CYS 77 HN, CYS 224 HN + 4 others)
โโโโโโMET HN (MET 63 HN, MET 118 HN, MET 134 HN + 12 others)
โโโโโโGLN HN (GLN 43 HN, GLN 47 HN, GLN 59 HN + 14 others)
โโโโโโTHR HN (THR 21 HN, THR 34 HN, THR 65 HN + 27 others)
โโโโโโALA OT2 (ALA 480 OT2)
Total charge for #0: -152.379
The following residues had non-integral charges:
โโโโโโSER 2 -0.6994
โโโโโโASP 3 -1.2936
โโโโโโVAL 4 -0.2719
โโโโโโALA 5 -0.2719
โโโโโโILE 6 -0.2719
โโโโโโVAL 7 -0.2719
โโโโโโLYS 8 0.7253
โโโโโโGLU 9 -1.2936
โโโโโโGLY 10 -0.2719
โโโโโโTRP 11 -0.2719
โโโโโโLEU 12 -0.2719
โโโโโโHIS 13 -0.2719
โโโโโโLYS 14 0.7253
โโโโโโARG 15 0.7253
โโโโโโGLY 16 -0.2719
โโโโโโGLU 17 -1.2936
โโโโโโTYR 18 -0.2719
โโโโโโILE 19 -0.2719
โโโโโโLYS 20 0.7253
โโโโโโTHR 21 -0.2719
โโโโโโTRP 22 -0.2719
โโโโโโARG 23 0.7253
โโโโโโARG 25 0.7253
โโโโโโTYR 26 -0.2719
โโโโโโPHE 27 -0.2719
โโโโโโLEU 28 -0.2719
โโโโโโLEU 29 -0.2719
โโโโโโLYS 30 0.7253
โโโโโโASN 31 -0.2719
โโโโโโASP 32 -1.2936
โโโโโโGLY 33 -0.2719
โโโโโโTHR 34 -0.2719
โโโโโโPHE 35 -0.2719
โโโโโโILE 36 -0.2719
โโโโโโGLY 37 -0.2719
โโโโโโTYR 38 -0.2719
โโโโโโLYS 39 0.7253
โโโโโโGLU 40 -1.2936
โโโโโโARG 41 0.7253
โโโโโโGLN 43 -0.2719
โโโโโโASP 44 -1.2936
โโโโโโVAL 45 -0.2719
โโโโโโASP 46 -1.2936
โโโโโโGLN 47 -0.2719
โโโโโโARG 48 0.7253
โโโโโโGLU 49 -1.2936
โโโโโโALA 50 -0.2719
โโโโโโLEU 52 -0.2719
โโโโโโASN 53 -0.2719
โโโโโโASN 54 -0.2719
โโโโโโPHE 55 -0.2719
โโโโโโSER 56 -0.6994
โโโโโโVAL 57 -0.2719
โโโโโโALA 58 -0.2719
โโโโโโGLN 59 -0.2719
โโโโโโCYS 60 -1.2719
โโโโโโGLN 61 -0.2719
โโโโโโLEU 62 -0.2719
โโโโโโMET 63 -0.2719
โโโโโโLYS 64 0.7253
โโโโโโTHR 65 -0.2719
โโโโโโGLU 66 -1.2936
โโโโโโARG 67 0.7253
โโโโโโARG 69 0.7253
โโโโโโASN 71 -0.2719
โโโโโโTHR 72 -0.2719
โโโโโโPHE 73 -0.2719
โโโโโโILE 74 -0.2719
โโโโโโILE 75 -0.2719
โโโโโโARG 76 0.7253
โโโโโโCYS 77 -1.2719
โโโโโโLEU 78 -0.2719
โโโโโโGLN 79 -0.2719
โโโโโโTRP 80 -0.2719
โโโโโโTHR 81 -0.2719
โโโโโโTHR 82 -0.2719
โโโโโโVAL 83 -0.2719
โโโโโโILE 84 -0.2719
โโโโโโGLU 85 -1.2936
โโโโโโARG 86 0.7253
โโโโโโTHR 87 -0.2719
โโโโโโPHE 88 -0.2719
โโโโโโHIS 89 -0.2719
โโโโโโVAL 90 -0.2719
โโโโโโGLU 91 -1.2936
โโโโโโTHR 92 -0.2719
โโโโโโGLU 94 -1.2936
โโโโโโGLU 95 -1.2936
โโโโโโARG 96 0.7253
โโโโโโGLU 97 -1.2936
โโโโโโGLU 98 -1.2936
โโโโโโTRP 99 -0.2719
โโโโโโTHR 100 -0.2719
โโโโโโTHR 101 -0.2719
โโโโโโALA 102 -0.2719
โโโโโโILE 103 -0.2719
โโโโโโGLN 104 -0.2719
โโโโโโTHR 105 -0.2719
โโโโโโVAL 106 -0.2719
โโโโโโALA 107 -0.2719
โโโโโโASP 108 -1.2936
โโโโโโGLY 109 -0.2719
โโโโโโLEU 110 -0.2719
โโโโโโLYS 111 0.7253
โโโโโโLYS 112 0.7253
โโโโโโGLN 113 -0.2719
โโโโโโGLU 114 -1.2936
โโโโโโGLU 115 -1.2936
โโโโโโGLU 116 -1.2936
โโโโโโGLU 117 -1.2936
โโโโโโMET 118 -0.2719
โโโโโโASP 119 -1.2936
โโโโโโPHE 120 -0.2719
โโโโโโARG 121 0.7253
โโโโโโSER 122 -0.6994
โโโโโโGLY 123 -0.2719
โโโโโโSER 124 -0.6994
โโโโโโSER 126 -0.6994
โโโโโโASP 127 -1.2936
โโโโโโASN 128 -0.2719
โโโโโโSER 129 -0.6994
โโโโโโGLY 130 -0.2719
โโโโโโALA 131 -0.2719
โโโโโโGLU 132 -1.2936
โโโโโโGLU 133 -1.2936
โโโโโโMET 134 -0.2719
โโโโโโGLU 135 -1.2936
โโโโโโVAL 136 -0.2719
โโโโโโSER 137 -0.6994
โโโโโโLEU 138 -0.2719
โโโโโโALA 139 -0.2719
โโโโโโLYS 140 0.7253
โโโโโโLYS 142 0.7253
โโโโโโHIS 143 -0.2719
โโโโโโARG 144 0.7253
โโโโโโVAL 145 -0.2719
โโโโโโTHR 146 -0.2719
โโโโโโMET 147 -0.2719
โโโโโโASN 148 -0.2719
โโโโโโGLU 149 -1.2936
โโโโโโPHE 150 -0.2719
โโโโโโGLU 151 -1.2936
โโโโโโTYR 152 -0.2719
โโโโโโLEU 153 -0.2719
โโโโโโLYS 154 0.7253
โโโโโโLEU 155 -0.2719
โโโโโโLEU 156 -0.2719
โโโโโโGLY 157 -0.2719
โโโโโโLYS 158 0.7253
โโโโโโGLY 159 -0.2719
โโโโโโTHR 160 -0.2719
โโโโโโPHE 161 -0.2719
โโโโโโGLY 162 -0.2719
โโโโโโLYS 163 0.7253
โโโโโโVAL 164 -0.2719
โโโโโโILE 165 -0.2719
โโโโโโLEU 166 -0.2719
โโโโโโVAL 167 -0.2719
โโโโโโLYS 168 0.7253
โโโโโโGLU 169 -1.2936
โโโโโโLYS 170 0.7253
โโโโโโALA 171 -0.2719
โโโโโโTHR 172 -0.2719
โโโโโโGLY 173 -0.2719
โโโโโโARG 174 0.7253
โโโโโโTYR 175 -0.2719
โโโโโโTYR 176 -0.2719
โโโโโโALA 177 -0.2719
โโโโโโMET 178 -0.2719
โโโโโโLYS 179 0.7253
โโโโโโILE 180 -0.2719
โโโโโโLEU 181 -0.2719
โโโโโโLYS 182 0.7253
โโโโโโLYS 183 0.7253
โโโโโโGLU 184 -1.2936
โโโโโโVAL 185 -0.2719
โโโโโโILE 186 -0.2719
โโโโโโVAL 187 -0.2719
โโโโโโALA 188 -0.2719
โโโโโโLYS 189 0.7253
โโโโโโASP 190 -1.2936
โโโโโโGLU 191 -1.2936
โโโโโโVAL 192 -0.2719
โโโโโโALA 193 -0.2719
โโโโโโHIS 194 -0.2719
โโโโโโTHR 195 -0.2719
โโโโโโLEU 196 -0.2719
โโโโโโTHR 197 -0.2719
โโโโโโGLU 198 -1.2936
โโโโโโASN 199 -0.2719
โโโโโโARG 200 0.7253
โโโโโโVAL 201 -0.2719
โโโโโโLEU 202 -0.2719
โโโโโโGLN 203 -0.2719
โโโโโโASN 204 -0.2719
โโโโโโSER 205 -0.6994
โโโโโโARG 206 0.7253
โโโโโโHIS 207 -0.2719
โโโโโโPHE 209 -0.2719
โโโโโโLEU 210 -0.2719
โโโโโโTHR 211 -0.2719
โโโโโโALA 212 -0.2719
โโโโโโLEU 213 -0.2719
โโโโโโLYS 214 0.7253
โโโโโโTYR 215 -0.2719
โโโโโโSER 216 -0.6994
โโโโโโPHE 217 -0.2719
โโโโโโGLN 218 -0.2719
โโโโโโTHR 219 -0.2719
โโโโโโHIS 220 -0.2719
โโโโโโASP 221 -1.2936
โโโโโโARG 222 0.7253
โโโโโโLEU 223 -0.2719
โโโโโโCYS 224 -1.2719
โโโโโโPHE 225 -0.2719
โโโโโโVAL 226 -0.2719
โโโโโโMET 227 -0.2719
โโโโโโGLU 228 -1.2936
โโโโโโTYR 229 -0.2719
โโโโโโALA 230 -0.2719
โโโโโโASN 231 -0.2719
โโโโโโGLY 232 -0.2719
โโโโโโGLY 233 -0.2719
โโโโโโGLU 234 -1.2936
โโโโโโLEU 235 -0.2719
โโโโโโPHE 236 -0.2719
โโโโโโPHE 237 -0.2719
โโโโโโHIS 238 -0.2719
โโโโโโLEU 239 -0.2719
โโโโโโSER 240 -0.6994
โโโโโโARG 241 0.7253
โโโโโโGLU 242 -1.2936
โโโโโโARG 243 0.7253
โโโโโโVAL 244 -0.2719
โโโโโโPHE 245 -0.2719
โโโโโโSER 246 -0.6994
โโโโโโGLU 247 -1.2936
โโโโโโASP 248 -1.2936
โโโโโโARG 249 0.7253
โโโโโโALA 250 -0.2719
โโโโโโARG 251 0.7253
โโโโโโPHE 252 -0.2719
โโโโโโTYR 253 -0.2719
โโโโโโGLY 254 -0.2719
โโโโโโALA 255 -0.2719
โโโโโโGLU 256 -1.2936
โโโโโโILE 257 -0.2719
โโโโโโVAL 258 -0.2719
โโโโโโSER 259 -0.6994
โโโโโโALA 260 -0.2719
โโโโโโLEU 261 -0.2719
โโโโโโASP 262 -1.2936
โโโโโโTYR 263 -0.2719
โโโโโโLEU 264 -0.2719
โโโโโโHIS 265 -0.2719
โโโโโโSER 266 -0.6994
โโโโโโGLU 267 -1.2936
โโโโโโLYS 268 0.7253
โโโโโโASN 269 -0.2719
โโโโโโVAL 270 -0.2719
โโโโโโVAL 271 -0.2719
โโโโโโTYR 272 -0.2719
โโโโโโARG 273 0.7253
โโโโโโASP 274 -1.2936
โโโโโโLEU 275 -0.2719
โโโโโโLYS 276 0.7253
โโโโโโLEU 277 -0.2719
โโโโโโGLU 278 -1.2936
โโโโโโASN 279 -0.2719
โโโโโโLEU 280 -0.2719
โโโโโโMET 281 -0.2719
โโโโโโLEU 282 -0.2719
โโโโโโASP 283 -1.2936
โโโโโโLYS 284 0.7253
โโโโโโASP 285 -1.2936
โโโโโโGLY 286 -0.2719
โโโโโโHIS 287 -0.2719
โโโโโโILE 288 -0.2719
โโโโโโLYS 289 0.7253
โโโโโโILE 290 -0.2719
โโโโโโTHR 291 -0.2719
โโโโโโASP 292 -1.2936
โโโโโโPHE 293 -0.2719
โโโโโโGLY 294 -0.2719
โโโโโโLEU 295 -0.2719
โโโโโโCYS 296 -1.2719
โโโโโโLYS 297 0.7253
โโโโโโGLU 298 -1.2936
โโโโโโGLY 299 -0.2719
โโโโโโILE 300 -0.2719
โโโโโโLYS 301 0.7253
โโโโโโASP 302 -1.2936
โโโโโโGLY 303 -0.2719
โโโโโโALA 304 -0.2719
โโโโโโTHR 305 -0.2719
โโโโโโMET 306 -0.2719
โโโโโโLYS 307 0.7253
โโโโโโTHR 308 -0.2719
โโโโโโPHE 309 -0.2719
โโโโโโCYS 310 -1.2719
โโโโโโGLY 311 -0.2719
โโโโโโTHR 312 -0.2719
โโโโโโGLU 314 -1.2936
โโโโโโTYR 315 -0.2719
โโโโโโLEU 316 -0.2719
โโโโโโALA 317 -0.2719
โโโโโโGLU 319 -1.2936
โโโโโโVAL 320 -0.2719
โโโโโโLEU 321 -0.2719
โโโโโโGLU 322 -1.2936
โโโโโโASP 323 -1.2936
โโโโโโASN 324 -0.2719
โโโโโโASP 325 -1.2936
โโโโโโTYR 326 -0.2719
โโโโโโGLY 327 -0.2719
โโโโโโARG 328 0.7253
โโโโโโALA 329 -0.2719
โโโโโโVAL 330 -0.2719
โโโโโโASP 331 -1.2936
โโโโโโTRP 332 -0.2719
โโโโโโTRP 333 -0.2719
โโโโโโGLY 334 -0.2719
โโโโโโLEU 335 -0.2719
โโโโโโGLY 336 -0.2719
โโโโโโVAL 337 -0.2719
โโโโโโVAL 338 -0.2719
โโโโโโMET 339 -0.2719
โโโโโโTYR 340 -0.2719
โโโโโโGLU 341 -1.2936
โโโโโโMET 342 -0.2719
โโโโโโMET 343 -0.2719
โโโโโโCYS 344 -1.2719
โโโโโโGLY 345 -0.2719
โโโโโโARG 346 0.7253
โโโโโโLEU 347 -0.2719
โโโโโโPHE 349 -0.2719
โโโโโโTYR 350 -0.2719
โโโโโโASN 351 -0.2719
โโโโโโGLN 352 -0.2719
โโโโโโASP 353 -1.2936
โโโโโโHIS 354 -0.2719
โโโโโโGLU 355 -1.2936
โโโโโโLYS 356 0.7253
โโโโโโLEU 357 -0.2719
โโโโโโPHE 358 -0.2719
โโโโโโGLU 359 -1.2936
โโโโโโLEU 360 -0.2719
โโโโโโILE 361 -0.2719
โโโโโโLEU 362 -0.2719
โโโโโโMET 363 -0.2719
โโโโโโGLU 364 -1.2936
โโโโโโGLU 365 -1.2936
โโโโโโILE 366 -0.2719
โโโโโโARG 367 0.7253
โโโโโโPHE 368 -0.2719
โโโโโโARG 370 0.7253
โโโโโโTHR 371 -0.2719
โโโโโโLEU 372 -0.2719
โโโโโโGLY 373 -0.2719
โโโโโโGLU 375 -1.2936
โโโโโโALA 376 -0.2719
โโโโโโLYS 377 0.7253
โโโโโโSER 378 -0.6994
โโโโโโLEU 379 -0.2719
โโโโโโLEU 380 -0.2719
โโโโโโSER 381 -0.6994
โโโโโโGLY 382 -0.2719
โโโโโโLEU 383 -0.2719
โโโโโโLEU 384 -0.2719
โโโโโโLYS 385 0.7253
โโโโโโLYS 386 0.7253
โโโโโโASP 387 -1.2936
โโโโโโLYS 389 0.7253
โโโโโโGLN 390 -0.2719
โโโโโโARG 391 0.7253
โโโโโโLEU 392 -0.2719
โโโโโโGLY 393 -0.2719
โโโโโโGLY 394 -0.2719
โโโโโโGLY 395 -0.2719
โโโโโโSER 396 -0.6994
โโโโโโGLU 397 -1.2936
โโโโโโASP 398 -1.2936
โโโโโโALA 399 -0.2719
โโโโโโLYS 400 0.7253
โโโโโโGLU 401 -1.2936
โโโโโโILE 402 -0.2719
โโโโโโMET 403 -0.2719
โโโโโโGLN 404 -0.2719
โโโโโโHIS 405 -0.2719
โโโโโโARG 406 0.7253
โโโโโโPHE 407 -0.2719
โโโโโโPHE 408 -0.2719
โโโโโโALA 409 -0.2719
โโโโโโGLY 410 -0.2719
โโโโโโILE 411 -0.2719
โโโโโโVAL 412 -0.2719
โโโโโโTRP 413 -0.2719
โโโโโโGLN 414 -0.2719
โโโโโโHIS 415 -0.2719
โโโโโโVAL 416 -0.2719
โโโโโโTYR 417 -0.2719
โโโโโโGLU 418 -1.2936
โโโโโโLYS 419 0.7253
โโโโโโLYS 420 0.7253
โโโโโโLEU 421 -0.2719
โโโโโโSER 422 -0.6994
โโโโโโPHE 425 -0.2719
โโโโโโLYS 426 0.7253
โโโโโโGLN 428 -0.2719
โโโโโโVAL 429 -0.2719
โโโโโโTHR 430 -0.2719
โโโโโโSER 431 -0.6994
โโโโโโGLU 432 -1.2936
โโโโโโTHR 433 -0.2719
โโโโโโASP 434 -1.2936
โโโโโโTHR 435 -0.2719
โโโโโโARG 436 0.7253
โโโโโโTYR 437 -0.2719
โโโโโโPHE 438 -0.2719
โโโโโโASP 439 -1.2936
โโโโโโGLU 440 -1.2936
โโโโโโGLU 441 -1.2936
โโโโโโPHE 442 -0.2719
โโโโโโTHR 443 -0.2719
โโโโโโALA 444 -0.2719
โโโโโโGLN 445 -0.2719
โโโโโโMET 446 -0.2719
โโโโโโILE 447 -0.2719
โโโโโโTHR 448 -0.2719
โโโโโโILE 449 -0.2719
โโโโโโTHR 450 -0.2719
โโโโโโASP 453 -1.2936
โโโโโโGLN 454 -0.2719
โโโโโโASP 455 -1.2936
โโโโโโASP 456 -1.2936
โโโโโโSER 457 -0.6994
โโโโโโMET 458 -0.2719
โโโโโโGLU 459 -1.2936
โโโโโโCYS 460 -1.2719
โโโโโโVAL 461 -0.2719
โโโโโโASP 462 -1.2936
โโโโโโSER 463 -0.6994
โโโโโโGLU 464 -1.2936
โโโโโโARG 465 0.7253
โโโโโโARG 466 0.7253
โโโโโโHIS 468 -0.2719
โโโโโโPHE 469 -0.2719
โโโโโโGLN 471 -0.2719
โโโโโโPHE 472 -0.2719
โโโโโโSER 473 -0.6994
โโโโโโTYR 474 -0.2719
โโโโโโSER 475 -0.6994
โโโโโโALA 476 -0.2719
โโโโโโSER 477 -0.6994
โโโโโโGLY 478 -0.2719
โโโโโโTHR 479 -0.2719
โโโโโโALA 480 0.296
Correct charges are unknown for 23 non-standard atom names in otherwise standard residues
Charges of 0.0 were assigned to the unknown atoms
1 model(s) had non-integral total charge
Details in reply log
3
6
Friends
I would like to learn how to subgroup the chains of a oligomer pdb. suppose i have a pdb with chain A to L, in which A,B,C,D,E,F belongs to gp20 and G,H,I,J,K,L belongs to gp20. My question is how to add the descriptions to these groups chains so that when the viewer look the pdb file when he selects the gp20 all the chains to this group are selected A-F.
Please give your feedback if chimerax can do it, how to do it?
2
1
To whom it may concern,
I would like to know if there's a way to automatically setup a default
way for visualising orbitals/densities...
that is, after opening a .cube file, to present the density by a
specific colour, transparency etc.
Thanks a lot!
KPZ
--
_______________________________________________
Konstantinos P. Zois, MSc
PhD student
Institute of Theoretical Chemistry, Wรคhringer Str. 17, A-1090 Vienna
Department of Chemistry, Universitรคt Wien
_______________________________________________
2
1