예제 #1
0
 public void Add(I interval, string chr, char strand)
 {
     if (!Chromosomes.ContainsKey(chr))
     {
         Chromosomes.Add(chr, new Chromosome <I, S>());
     }
     Chromosomes[chr].Add(interval, strand);
     Statistics.Update(interval);
 }