Method: Bio::EMBOSS.seqret

Defined in:
lib/bio/appl/emboss.rb

.seqret(arg) ⇒ Object

Combines the initialization and execution for the emboss seqret command.

puts Bio::EMBOSS.seqret('embl:xlrhodop')

is equivalent to:

object = Bio::EMBOSS.new('seqret embl:xlrhodop')
puts object.exec

Arguments:

  • (required) arg: argument given to the emboss seqret command

Returns

String



93
94
95
# File 'lib/bio/appl/emboss.rb', line 93

def self.seqret(arg)
  str = self.retrieve('seqret', arg)
end