Ejemplo n.º 1
0
 /// <summary>
 /// Populate grid with the display names of current proteins in document and new names if given.
 /// </summary>
 public void PopulateGrid()
 {
     _gridViewDriver.Populate(
         _document.MoleculeGroups.Select(nodePepGroup => nodePepGroup.Name)
         .Distinct()
         .Select(name => new RenameProteins {
         CurrentName = name, NewName = null
     }));
 }