Hello.
I ran this code below
from Bio.PDB import *
parser = PDBParser()
io = PDBIO()
structure = parser.get_structure('3F9R', '3F9R.pdb')
model = structure[0]
dssp = DSSP(model, '3F9R.pdb')
residues = list(dssp)
residues
How do I select columns for calculated RSA and residue from this dictionary?
If I want to see the contents in this for residues, I have an output file that looks in short like this.
[(1,
'G',
'-',
0.7857142857142857,
360.0,
-167.6,
0,
0.0,
2,
-0.1,
0,
0.0,
444,
-0.1),
(2,
'M',
'-',
0.14893617021276595,
-67.2,
140.1,
1,
-0.1,
36,
-0.2,
2,
-0.0,
35,
-0.1),
(3,
'K',
'-',
0.23902439024390243,
-78.0,
-14.6,
34,
-2.9,
35,
-0.1,
2,
-0.2,
197,
-0.1),