1 package jalview.datamodel;
\r
4 * A set of feature property constants used by jalview
\r
8 public class FeatureProperties
\r
11 public static final String EXONPOS = "exon number";
\r
12 public static final String EXONPRODUCT = "product";
\r
14 * lookup feature type for a particular database to see if its a coding region feature
\r
15 * @param dbrefsource
\r
19 public static boolean isCodingFeature(String dbrefsource, String type)
\r
21 return ((dbrefsource==null || dbrefsource.equalsIgnoreCase(DBRefSource.EMBL))
\r
22 && type.equalsIgnoreCase("CDS"));
\r