Method: HTS::Faidx#names
- Defined in:
- lib/hts/faidx.rb
#names ⇒ Array<String> Also known as: keys
Return the list of sequence names in the index.
78 79 80 81 |
# File 'lib/hts/faidx.rb', line 78 def names check_closed Array.new(length) { |i| LibHTS.faidx_iseq(@fai, i) } end |