Exemplo n.º 1
0
 private void LoadProteinData(Peptide peptide)
 {
     MatchedProteins.Clear();
     peptide.ProteinList.ForEach(x => MatchedProteins.Add(new ProteinViewModel(x)));
 }
Exemplo n.º 2
0
 private void LoadProteinData(MassTagToCluster tag)
 {
     MatchedProteins.Clear();
     tag.MatchingProteins.ForEach(x => MatchedProteins.Add(new ProteinViewModel(x.Protein)));
 }