Method: FCSParse::FCSEvent#to_s

Defined in:
lib/fcsparse/fcsevent.rb

#to_sString

Converts the event to a string representation. This is the same as calling #to_s_delim with the delimiter set to DefaultDelimiter.

Returns:

  • (String)

    a String containing delimited ordered parameter values.



207
208
209
210
211
# File 'lib/fcsparse/fcsevent.rb', line 207

def to_s
  
  to_s_delim(DefaultDelimiter)
  
end