Method: Bio::Spidey::Report::Hit#mrna
- Defined in:
- lib/bio/appl/spidey/report.rb
#mrna ⇒ Object
Returns sequence informations of the mRNA. Returns a Bio::Spidey::Report::SeqDesc object. This would be a Bio::Spidey specific method.
383 384 385 386 387 388 |
# File 'lib/bio/appl/spidey/report.rb', line 383 def mrna unless defined?(@mrna) @mrna = SeqDesc.parse(@d0.find { |x| /^mRNA\:/ =~ x }) end @mrna end |