예제 #1
0
 public void PrintChromosomeList()
 {
     foreach (string chrName in _jasixIndex.GetChromosomeList())
     {
         _writer.WriteLine(chrName);
     }
 }
예제 #2
0
        public void ListChromosomesAndSections()
        {
            foreach (string chrName in _jasixIndex.GetChromosomeList())
            {
                _writer.WriteLine(chrName);
            }

            foreach (var section in _jasixIndex.GetSections())
            {
                _writer.WriteLine(section);
            }
        }