X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fdatamodel%2Fannotations%2FAlphaFoldAnnotationRowBuilder.java;h=4e9553e51297d634cb6ed5bdba01cb8d18fc7d8a;hb=HEAD;hp=fa48968dc4fb6d1c7cfade4753cc1ff0a13dd165;hpb=892e857760e779796e156b4fa36d97d8d31e73e1;p=jalview.git diff --git a/src/jalview/datamodel/annotations/AlphaFoldAnnotationRowBuilder.java b/src/jalview/datamodel/annotations/AlphaFoldAnnotationRowBuilder.java index fa48968..4e9553e 100644 --- a/src/jalview/datamodel/annotations/AlphaFoldAnnotationRowBuilder.java +++ b/src/jalview/datamodel/annotations/AlphaFoldAnnotationRowBuilder.java @@ -1,18 +1,20 @@ package jalview.datamodel.annotations; -import jalview.datamodel.AlignmentAnnotation.TFType; import jalview.datamodel.Annotation; -import jalview.util.MessageManager; +import jalview.structure.StructureImportSettings; +import jalview.structure.StructureImportSettings.TFType; public class AlphaFoldAnnotationRowBuilder extends AnnotationRowBuilder { + public static final String LABEL = "Alphafold Reliability"; + public AlphaFoldAnnotationRowBuilder() { - super(MessageManager.getString("label.alphafold_reliability")); + super(LABEL); min = 0; max = 100; hasMinMax = true; - this.setTFType(TFType.PLDDT); + this.setTFType(StructureImportSettings.TFType.PLDDT); } @Override