Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/bio/appl/ngs/cufflinks/gtf/gtf_parser.rb

Instance Method Summary collapse

Instance Method Details

#is_numeric?Boolean

Returns:

  • (Boolean)


245
246
247
248
249
250
# File 'lib/bio/appl/ngs/cufflinks/gtf/gtf_parser.rb', line 245

def is_numeric?
  Float(self)
  true
rescue
  false
end