Method: Bio::Spidey::Report::Hit#genomic
- Defined in:
- lib/bio/appl/spidey/report.rb
#genomic ⇒ Object
Returns sequence informations of the ‘Genomic’. Returns a Bio::Spidey::Report::SeqDesc object. This would be a Bio::Spidey specific method.
373 374 375 376 377 378 |
# File 'lib/bio/appl/spidey/report.rb', line 373 def genomic unless defined?(@genomic) @genomic = SeqDesc.parse(@d0.find { |x| /^Genomic\:/ =~ x }) end @genomic end |