79 80 81 82 83 84 85
# File 'lib/sequence_logo/ytilib/ytilib.rb', line 79 def Ytilib.read_plain2array(path) array = [] File.open(path).each_line { |line| array << line.strip if !line.strip.empty? } return array end