> I need to be able to get the bit score and raw score for *each* of the > hsps, but HSPI provides no methods to get this data. This does the trick: print join(',',$hsp->score,$hsp->bits),"\n"; Like I already said, score() is inherited from Bio::SeqFeature::SimilarityPair. This is also the case for the bits() method. HTH, Marc