Research Article

Conformational B-Cell Epitopes Prediction from Sequences Using Cost-Sensitive Ensemble Classifiers and Spatial Clustering

Procedure 2

Procedure Spatial clustering algorithm.
Begin
  Data preparation: : the set of predicted antigenic determinant residues; : threshold for spatial clustering; : 3D structure
  (predicted or observed) of the protein.
  Calculate the max distance between any two residues in   .
  IF the max distance is greater than the pre-defined threshold  
   Clustering the residues in     into two smaller clusters according to their spatial positions with standard   -means
   algorithm:   and  
   EpitopeClusters1 = SpatialClustering( )
   EpitopeClusters2 = SpatialClustering( )
   EpitopeClusters = EpitopeClusters1     EpitopeClusters2
  ELSE
   EpitopeClusters =
  END IF
  RETURN EpitopeClusters
End