Method: Bio::Spidey::Report::Hit#strand

Defined in:
lib/bio/appl/spidey/report.rb

#strandObject

Returns strand information of the hit. Returns ‘plus’, ‘minus’, or nil. This would be a Bio::Spidey specific method.



322
323
324
325
# File 'lib/bio/appl/spidey/report.rb', line 322

def strand
  unless defined?(@strand); parse_strand; end
  @strand
end