public void PrintChromosomeList() { foreach (string chrName in _jasixIndex.GetChromosomeList()) { _writer.WriteLine(chrName); } }
public void ListChromosomesAndSections() { foreach (string chrName in _jasixIndex.GetChromosomeList()) { _writer.WriteLine(chrName); } foreach (var section in _jasixIndex.GetSections()) { _writer.WriteLine(section); } }