コード例 #1
0
        public int CompareTo(Object oth)
        {
            Allele b = (Allele)oth;

            return(this._st.CompareTo(b._st));
        }
コード例 #2
0
 public Allele(Allele Broad, Allele Narrow)
 {
     _st  = Math.Min(Broad._st, Narrow._st);
     _ed  = Math.Max(Broad._ed, Narrow._ed);
     _ref = Broad._ref;
 }