Method: Bio::SiRNA::ShRNA#design

Defined in:
lib/bio/util/sirna.rb

#design(method = 'BLOCK-iT') ⇒ Object

only the ‘BLOCK-iT’ rule is implemented for now.



239
240
241
242
243
244
245
246
# File 'lib/bio/util/sirna.rb', line 239

def design(method = 'BLOCK-iT')
  case method
  when 'BLOCK-iT'
    block_it
  else
    raise NotImplementedError
  end
end