--- /dev/null
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ *
+ * This file is part of Jalview.
+ *
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * Jalview is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
+package jalview.datamodel.annotations;
+
+import jalview.datamodel.Annotation;
+import jalview.structure.StructureImportSettings;
+import jalview.structure.StructureImportSettings.TFType;
+
+public class QMEANDISCORowBuilder extends AnnotationRowBuilder
+{
+ public static final String LABEL = "QMEANDiSCo Score";
+
+ public QMEANDISCORowBuilder()
+ {
+ super(LABEL);
+ min = 0;
+ max = 1;
+ hasMinMax = true;
+ this.setTFType(StructureImportSettings.TFType.QMEANDISCO);
+ }
+}
\ No newline at end of file
import jalview.datamodel.SequenceI;
import jalview.datamodel.annotations.AlphaFoldAnnotationRowBuilder;
import jalview.datamodel.annotations.AnnotationRowBuilder;
+import jalview.datamodel.annotations.QMEANDISCORowBuilder;
import jalview.io.DataSourceType;
import jalview.io.FileParse;
import jalview.io.StructureFile;
|| getTemperatureFactorType() == StructureImportSettings.TFType.PLDDT)
{
builder = new AlphaFoldAnnotationRowBuilder();
+ }
+ if (getTemperatureFactorType() == StructureImportSettings.TFType.QMEANDISCO)
+ {
+ builder = new QMEANDISCORowBuilder();
}
-
+
tmpchain = new PDBChain(getId(), tmpatom.chain, builder);
getChains().add(tmpchain);
tmpchain.atoms.addElement(tmpatom);