Class: Bio::FastaFormat
- Inherits:
- 
      Object
      
        - Object
- Bio::FastaFormat
 
- Defined in:
- lib/crb-blast.rb
Instance Method Summary collapse
Instance Method Details
#isNucl? ⇒ Boolean
| 9 10 11 | # File 'lib/crb-blast.rb', line 9 def isNucl? Bio::Sequence.guess(self.seq, 0.9, 500) == Bio::Sequence::NA end | 
#isProt? ⇒ Boolean
| 13 14 15 | # File 'lib/crb-blast.rb', line 13 def isProt? Bio::Sequence.guess(self.seq, 0.9, 500) == Bio::Sequence::AA end |