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); }
public void InitializeLineFormat(string header) { _format = new LineFormat <Annotation>(AnnotationPropertyFactory.GetInstance(), header); }