nguyen1j / py-fcm

Automatically exported from code.google.com/p/py-fcm
0 stars 0 forks source link

logicle transform should only be applied once per compensation matrix #13

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I was talking to Mario Roederer this afternoon, and he explained that the 
logicle transform is only 
applied ONCE per compensation matrix - basically, use the first data set to 
find the cutoff, then 
use the same cutoff for all the other files with the same comp matrix. Can you 
modify fcm so it 
does this for all the data-driven transforms? This will ensure that FCS within 
a set have 
comparable transforms.

Basically, I think you set up a dictionary with the comp-matrix as a key

try:
  r = d[comp_matrix_as_key]
except KeyError:
  r = calc_r
  d[comp_matrix_as_key] = r

Original issue reported on code.google.com by cliburn....@gmail.com on 4 Feb 2010 at 1:27

GoogleCodeExporter commented 8 years ago
common r value for the logicle was implemented a while ago.  the collection 
loading function will use it, or it can be accessed from loaded fcs files if 
loading files individually.

Original comment by Jacob.Frelinger@gmail.com on 4 Apr 2013 at 10:38