Class: Minimap2::Aligner
- Inherits:
-
Object
- Object
- Minimap2::Aligner
- Defined in:
- lib/minimap2/aligner.rb
Instance Attribute Summary collapse
-
#idx_opt ⇒ Object
readonly
Returns the value of attribute idx_opt.
-
#index ⇒ Object
readonly
Returns the value of attribute index.
-
#map_opt ⇒ Object
readonly
Returns the value of attribute map_opt.
Instance Method Summary collapse
-
#align(seq, seq2 = nil, buf: nil, cs: false, md: false, max_frag_len: nil, extra_flags: nil) ⇒ Array
Alignments.
-
#free_index ⇒ Object
Explicitly releases the memory of the index object.
-
#initialize(fn_idx_in = nil, seq: nil, preset: nil, k: nil, w: nil, min_cnt: nil, min_chain_score: nil, min_dp_score: nil, bw: nil, bw_long: nil, best_n: nil, n_threads: 3, fn_idx_out: nil, max_frag_len: nil, extra_flags: nil, scoring: nil) ⇒ Aligner
constructor
Create a new aligner.
-
#k ⇒ Object
k-mer length, no larger than 28.
- #n_seq ⇒ Object
-
#seq(name, start = 0, stop = 0x7fffffff) ⇒ Object
Retrieve a subsequence from the index.
- #seq_names ⇒ Object
-
#w ⇒ Object
minimizer window size, no larger than 255.
Constructor Details
#initialize(fn_idx_in = nil, seq: nil, preset: nil, k: nil, w: nil, min_cnt: nil, min_chain_score: nil, min_dp_score: nil, bw: nil, bw_long: nil, best_n: nil, n_threads: 3, fn_idx_out: nil, max_frag_len: nil, extra_flags: nil, scoring: nil) ⇒ Aligner
Create a new aligner.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/minimap2/aligner.rb', line 41 def initialize( fn_idx_in = nil, seq: nil, preset: nil, k: nil, w: nil, min_cnt: nil, min_chain_score: nil, min_dp_score: nil, bw: nil, bw_long: nil, best_n: nil, n_threads: 3, fn_idx_out: nil, max_frag_len: nil, extra_flags: nil, scoring: nil ) @idx_opt = FFI::IdxOpt.new @map_opt = FFI::MapOpt.new r = FFI.mm_set_opt(preset, idx_opt, map_opt) raise ArgumentError, "Unknown preset name: #{preset}" if r == -1 # always perform alignment map_opt[:flag] |= 4 idx_opt[:batch_size] = 0x7fffffffffffffff # override preset options idx_opt[:k] = k if k idx_opt[:w] = w if w map_opt[:min_cnt] = min_cnt if min_cnt map_opt[:min_chain_score] = min_chain_score if min_chain_score map_opt[:min_dp_max] = min_dp_score if min_dp_score map_opt[:bw] = bw if bw map_opt[:bw_long] = bw_long if bw_long map_opt[:best_n] = best_n if best_n map_opt[:max_frag_len] = max_frag_len if max_frag_len map_opt[:flag] |= extra_flags if extra_flags if scoring && scoring.size >= 4 map_opt[:a] = scoring[0] map_opt[:b] = scoring[1] map_opt[:q] = scoring[2] map_opt[:e] = scoring[3] map_opt[:q2] = map_opt[:q] map_opt[:e2] = map_opt[:e] if scoring.size >= 6 map_opt[:q2] = scoring[4] map_opt[:e2] = scoring[5] map_opt[:sc_ambi] = scoring[6] if scoring.size >= 7 end end if fn_idx_in warn "Since fn_idx_in is specified, the seq argument will be ignored." if seq reader = FFI.mm_idx_reader_open(fn_idx_in, idx_opt, fn_idx_out) # The Ruby version raises an error here raise "Cannot open : #{fn_idx_in}" if reader.null? @index = FFI.mm_idx_reader_read(reader, n_threads) FFI.mm_idx_reader_close(reader) FFI.mm_mapopt_update(map_opt, index) FFI.mm_idx_index_name(index) elsif seq @index = FFI.mappy_idx_seq( idx_opt[:w], idx_opt[:k], idx_opt[:flag] & 1, idx_opt[:bucket_bits], seq, seq.size ) FFI.mm_mapopt_update(map_opt, index) map_opt[:mid_occ] = 1000 # don't filter high-occ seeds end end |
Instance Attribute Details
#idx_opt ⇒ Object (readonly)
Returns the value of attribute idx_opt.
5 6 7 |
# File 'lib/minimap2/aligner.rb', line 5 def idx_opt @idx_opt end |
#index ⇒ Object (readonly)
Returns the value of attribute index.
5 6 7 |
# File 'lib/minimap2/aligner.rb', line 5 def index @index end |
#map_opt ⇒ Object (readonly)
Returns the value of attribute map_opt.
5 6 7 |
# File 'lib/minimap2/aligner.rb', line 5 def map_opt @map_opt end |
Instance Method Details
#align(seq, seq2 = nil, buf: nil, cs: false, md: false, max_frag_len: nil, extra_flags: nil) ⇒ Array
Name change: map -> align In the Ruby language, the name map means iterator. The original name is map, but here I use the method name align.
The use of Enumerator is being considered. The method names may change again.
Returns alignments.
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/minimap2/aligner.rb', line 135 def align( seq, seq2 = nil, buf: nil, cs: false, md: false, max_frag_len: nil, extra_flags: nil ) return if index.null? return if (map_opt[:flag] & 4).zero? && (index[:flag] & 2).zero? map_opt[:max_frag_len] = max_frag_len if max_frag_len map_opt[:flag] |= extra_flags if extra_flags buf ||= FFI::TBuf.new km = FFI.mm_tbuf_get_km(buf) n_regs_ptr = ::FFI::MemoryPointer.new :int regs_ptr = FFI.mm_map_aux(index, seq, seq2, n_regs_ptr, buf, map_opt) n_regs = n_regs_ptr.read_int regs = Array.new(n_regs) do |i| FFI::Reg1.new(regs_ptr + i * FFI::Reg1.size) end hit = FFI::Hit.new cs_str = ::FFI::MemoryPointer.new(::FFI::MemoryPointer.new(:string)) m_cs_str = ::FFI::MemoryPointer.new :int alignments = [] i = 0 begin while i < n_regs FFI.mm_reg2hitpy(index, regs[i], hit) c = hit[:cigar32].read_array_of_uint32(hit[:n_cigar32]) cigar = c.map { |x| [x >> 4, x & 0xf] } # 32-bit CIGAR encoding -> Ruby array _cs = "" if cs l_cs_str = FFI.mm_gen_cs(km, cs_str, m_cs_str, @index, regs[i], seq, 1) _cs = cs_str.read_pointer.read_string(l_cs_str) end _md = "" if md l_cs_str = FFI.mm_gen_md(km, cs_str, m_cs_str, @index, regs[i], seq) _md = cs_str.read_pointer.read_string(l_cs_str) end alignments << Alignment.new(hit, cigar, _cs, _md) FFI.mm_free_reg1(regs[i]) i += 1 end ensure while i < n_regs FFI.mm_free_reg1(regs[i]) i += 1 end end alignments end |
#free_index ⇒ Object
Explicitly releases the memory of the index object.
118 119 120 |
# File 'lib/minimap2/aligner.rb', line 118 def free_index FFI.mm_idx_destroy(index) unless index.null? end |
#k ⇒ Object
k-mer length, no larger than 28
221 222 223 |
# File 'lib/minimap2/aligner.rb', line 221 def k index[:k] end |
#n_seq ⇒ Object
231 232 233 |
# File 'lib/minimap2/aligner.rb', line 231 def n_seq index[:n_seq] end |
#seq(name, start = 0, stop = 0x7fffffff) ⇒ Object
Retrieve a subsequence from the index.
207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/minimap2/aligner.rb', line 207 def seq(name, start = 0, stop = 0x7fffffff) return if index.null? return if (map_opt[:flag] & 4).zero? && (index[:flag] & 2).zero? lp = ::FFI::MemoryPointer.new(:int) s = FFI.mappy_fetch_seq(index, name, start, stop, lp) l = lp.read_int return nil if l == 0 s.read_string(l) end |
#seq_names ⇒ Object
235 236 237 238 239 240 |
# File 'lib/minimap2/aligner.rb', line 235 def seq_names ptr = index[:seq].to_ptr Array.new(index[:n_seq]) do |i| FFI::IdxSeq.new(ptr + i * FFI::IdxSeq.size)[:name] end end |
#w ⇒ Object
minimizer window size, no larger than 255
227 228 229 |
# File 'lib/minimap2/aligner.rb', line 227 def w index[:w] end |