Example #1
0
        public void InitializeLineFormat(List <Annotation> t)
        {
            var anns = (from ann in t
                        from key in ann.Annotations.Keys
                        select key).Distinct().OrderBy(m => m).Merge('\t');

            _format = new LineFormat <Annotation>(AnnotationPropertyFactory.GetInstance(), anns);
        }
Example #2
0
 public void InitializeLineFormat(string header)
 {
     _format = new LineFormat <Annotation>(AnnotationPropertyFactory.GetInstance(), header);
 }