AlignmentAnnotation tfactorann = new AlignmentAnnotation(
tfacName, tfacName + " for " + pdbid + id,
annots, min, max, AlignmentAnnotation.LINE_GRAPH);
+
+ tfactorann.setCalcId(getClass().getName());
+
tfactorann.setSequenceRef(sequence);
sequence.addAlignmentAnnotation(tfactorann);
}
for (AlignmentAnnotation ana : shadow.getAnnotation())
{
- List<AlignmentAnnotation> transfer = sq
- .getAlignmentAnnotations(ana.getCalcId(), ana.label);
+ // match on calcId, label and description so annotations from
+ // different structures are preserved
+ List<AlignmentAnnotation> transfer = sq.getAlignmentAnnotations(
+ ana.getCalcId(), ana.label, ana.description);
if (transfer == null || transfer.size() == 0)
{
ana = new AlignmentAnnotation(ana);
{
for (AlignmentAnnotation ana : sequence.getAnnotation())
{
+ // match on calcId, label and description so annotations from
+ // different structures are preserved
List<AlignmentAnnotation> transfer = dsq
- .getAlignmentAnnotations(ana.getCalcId(), ana.label);
+ .getAlignmentAnnotations(ana.getCalcId(), ana.label,
+ ana.description);
if (transfer == null || transfer.size() == 0)
{
ana = new AlignmentAnnotation(ana);