JAL-2041 add ID,clinical_significance to feature attributes (for export)
[jalview.git] / src / jalview / io / gff / GffConstants.java
1 package jalview.io.gff;
2
3 /**
4  * A class to hold constants shared by creators and consumers of GFF or feature
5  * data
6  */
7 public class GffConstants
8 {
9   // SequenceOntology terms are to be found in SequenceOntologyI
10
11   /*
12    * clinical_significance may be an attribute of 
13    * sequence_variant data from Ensembl
14    */
15   public static final String CLINICAL_SIGNIFICANCE = "clinical_significance";
16
17   /*
18    * not instantiable
19    */
20   private GffConstants()
21   {
22   }
23 }