JAL-838 ScoreMatrix now respects SimilarityParams!
[jalview.git] / src / jalview / api / analysis / PairwiseScoreModelI.java
index 241348c..ecada36 100644 (file)
@@ -17,26 +17,6 @@ public interface PairwiseScoreModelI
    * @return
    */
   abstract public float getPairwiseScore(char c, char d);
-
-  /**
-   * Returns a readable name for the model, suitable for display in menus
-   * 
-   * @return
-   */
-  String getName();
-
-  /**
-   * Answers true if the model is applicable to nucleotide data
-   * 
-   * @return
-   */
-  boolean isDNA();
-
-  /**
-   * Answers true if the model is applicable to peptide data
-   * 
-   * @return
-   */
-  boolean isProtein();
+  // TODO make this static when Java 8
 
 }