-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flowCore transform method inappropriate for cytoframe #296
Comments
We want to do 2), because |
Right, so maybe we should tackle the range issue before this. |
Maybe we should deprecate the legacy inline form of transformation in flowCore since it is problematic and pretty much has not been heard to be used anywhere else. |
I agree that is an easier solution if you don't think there would be many issues with backwards compatibility. I haven't seen the legacy inline transformation elsewhere, but given the large number of Bioc packages dependent on flowCore, I wouldn't be surprised if there is some usage lurking somewhere in their source. But a full development cycle to deal with the deprecation warnings should be plenty of time. |
If you don't mind, deprecation would be good as I think that I have such inline uses. But if it's easier for you, just break. |
Currently, calling
transform
on acytoframe
dispatches toflowCore::transform
for aflowFrame
based on inheritance. For the case of transformation using atransformList
, the result is still correct asexprs<-
is eventually called via%on%
andexprs<-
has acytoframe
override that modifies the underlying data:https://github.com/RGLab/flowCore/blob/b196fd4ca55ab5093ee61ef03c97abc9fb5eaea1/R/flowFrame-accessors.R#L859
https://github.com/RGLab/flowCore/blob/b196fd4ca55ab5093ee61ef03c97abc9fb5eaea1/R/on-methods.R#L159
flowWorkspace/R/cytoframe.R
Lines 468 to 475 in a779c8c
For example, this works as expected:
However, for the inline form (specifying transformations as arguments like `FSC-H`=log(`FSC-H`)), this will fail to appropriately alter the underlying data because it splits off to
flowCore:::.transform
which instead just returns a new transformedflowFrame
:https://github.com/RGLab/flowCore/blob/b196fd4ca55ab5093ee61ef03c97abc9fb5eaea1/R/flowFrame-accessors.R#L860-L908
For example, this fails to appropriately modify the underlying data:
So, probably we need to do one of 2 things:
flowCore::transform
to useexprs<-
in all cases so thecytoframe
-specificexprs<-
can take overcytoframe
-specifictransform
method toflowWorkspace
so it callscf_setData
directlyThe text was updated successfully, but these errors were encountered: