Exemple #1
0
 public Motif getMotifFromName(string motifName)
 {
     for (int i = 0; i < tune.motifCount(); i++)
     {
         Motif m = tune.getMotifFromList(i);
         if (m.getName() == motifName)
         {
             return(m);
         }
     }
     return(null);
 }