GFFRecord.phase

Column 8: phase; For features of type "CDS", the phase indicates where the feature begins with reference to the reading frame. The phase is one of the integers 0, 1, or 2, indicating the number of bases that should be removed from the beginning of this feature to reach the first base of the next codon. In other words, a phase of "0" indicates that the next codon begins at the first base of the region described by the current line, a phase of "1" indicates that the next codon begins at the second base of this region, and a phase of "2" indicates that the codon begins at the third base of this region. This is NOT to be confused with the frame, which is simply start modulo 3.

For forward strand features, phase is counted from the start field. For reverse strand features, phase is counted from the end field.

The phase is REQUIRED for all CDS features.

Tragically, phase can be either an integer (0, 1, 2), or not present (".") Totally arbitrarily, we will represent absent as -1

  1. phase [@property getter]
    struct GFFRecord(GFFVersion ver)
    @property const
    phase
    ()
  2. long phase [@property setter]

Meta