JAL-3210 Improvements to eclipse detection. New src tree and SwingJS updated from...
[jalview.git] / src / jalview / datamodel / DBRefSource.java
index 2f94884..71d6972 100755 (executable)
@@ -42,7 +42,8 @@ public class DBRefSource
   
   
   public static final String UNIPROT = "UNIPROT";
-  public static final String UP_NAME = "UNIPROT_NAME".toUpperCase();
+
+  public static final String UP_NAME = "UNIPROT_NAME";
   /**
    * Uniprot Knowledgebase/TrEMBL as served from EMBL protein products.
    */
@@ -56,10 +57,18 @@ public class DBRefSource
   public static final String EMBLCDSProduct = "EMBLCDSProtein".toUpperCase();
 
   public static final String PDB    = "PDB";
-  public static final String PFAM   = "PFAM";
+
+  public static final String PFAM = "PFAM";
+
   public static final String RFAM   = "RFAM";
   public static final String GENEDB = "GeneDB".toUpperCase();
 
+  public static final String PFAM_FULL = "PFAM (Full)";
+
+  public static final String PFAM_SEED = "PFAM (Seed)";
+
+  public static final String RFAM_SEED = "RFAM (Seed)";
+
   public static final String PDB_CANONICAL_NAME = PDB;
 
 
@@ -135,7 +144,7 @@ public class DBRefSource
 //       CODINGDBS, DNACODINGDBS, PROTEINDBS };
 //       
        public static final int PRIMARY_SOURCES_MASK = CODING_MASK | DNA_CODING_MASK | PROTEIN_MASK;
-       
+
     public static boolean isPrimarySource(String source)
     {
        return ((PRIMARY_SOURCES_MASK & getSourceKey(source)) != 0);