Method: Bio::Sequence#method_missing
- Defined in:
- lib/bio/sequence.rb
#method_missing(sym, *args, &block) ⇒ Object
Pass any unknown method calls to the wrapped sequence object. see www.rubycentral.com/book/ref_c_object.html#Object.method_missing
97 98 99 |
# File 'lib/bio/sequence.rb', line 97 def method_missing(sym, *args, &block) #:nodoc: @seq.send(sym, *args, &block) end |