module BioVcf::VcfSample
Public Class Methods
empty?(s)
click to toggle source
Check whether a sample is empty (on the raw string value)
# File lib/bio-vcf/vcfsample.rb, line 5 def VcfSample::empty? s s==nil or s == './.' or s == '' or s[0..2]=='./.' or s[0..1] == '.:' end