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