Exemplo n.º 1
0
        public void ListChromosomesAndSections()
        {
            foreach (string chrName in _jasixIndex.GetChromosomeList())
            {
                _writer.WriteLine(chrName);
            }

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