rcsb / symmetry

:ferris_wheel: Detect, analyze, and visualize protein symmetry
GNU Lesser General Public License v2.1
26 stars 16 forks source link

problems with d2agsa2 #11

Closed andreasprlic closed 11 years ago

andreasprlic commented 11 years ago

The SCOP domain definition has problems with d2agsa2 . The ranges contain negative PDB residue numbers A:-1-403 .

I believe the error is in Protodomain.java line 489

dmyersturnbull commented 11 years ago

Nice catch. Fixed with a regex match: ^([-]?[\d]+[\w]?)-([-]?[\d]+[\w]?)$ => start=\1, end=\2.