Skip to content

Commit

Permalink
Write Annotator to meta instead of AnnotatorFullName
Browse files Browse the repository at this point in the history
  • Loading branch information
jankolkmeier committed Feb 18, 2020
1 parent 537fb4a commit 8455727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Types/AnnoListFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public partial class AnnoList
sw.WriteLine("<annotation ssi-v=\"3\">");

sw.WriteLine(" <info ftype=\"" + Source.File.Type.ToString() + "\" size=\"" + this.Count + "\" />");
sw.WriteLine(" <meta annotator=\"" + Meta.AnnotatorFullName + "\" role=\"" + Meta.Role + "\"/>");
sw.WriteLine(" <meta annotator=\"" + Meta.Annotator + "\" role=\"" + Meta.Role + "\"/>");
if (Scheme.Type == AnnoScheme.TYPE.CONTINUOUS)
{
sw.WriteLine(" <scheme name=\"" + this.Scheme.Name + "\" type=\"CONTINUOUS\" sr=\"" + this.Scheme.SampleRate + "\" min=\"" + this.Scheme.MinScore + "\" max=\"" + this.Scheme.MaxScore + "\" mincolor=\"" + this.Scheme.MinOrBackColor + "\" maxcolor=\"" + this.Scheme.MaxOrForeColor + "\" />");
Expand Down

0 comments on commit 8455727

Please sign in to comment.