Class: BioTable::TabFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/bio-table/formatter.rb

Instance Method Summary collapse

Instance Method Details

#write(list) ⇒ Object



39
40
41
# File 'lib/bio-table/formatter.rb', line 39

def write list
  print list.map{|field| (field==nil ? "NA" : field)}.join("\t"),"\n"
end