Note: This is to be used in conjunction with flowjo-plugin-data-dump
- Download the data-dump plugin .jar from the releases page
- Place it in your
/Applications/plugins
directory or windows equivalent - Start FlowJo
- Select a sample or node then click Workspace -> Plugins -> FlowJoPluginDataDump
- It will save files to the output folder and give you a command to copy paste that looks like this:
invokeAlgorithm(FlowJoPluginTestbed.getFcmlFromFile("/some/directory/FlowJo Plugin Data Dump/fcmlQueryElement.xml"), FlowJoPluginTestbed.createFileObject("/some/directory/FlowJo Plugin Data Dump/st_HM-1_CHECK192_001..ExtNode.csv"), FlowJoPluginTestbed.createFileObject("/some/directory/FlowJo Plugin Data Dump"));
- Download the testbed .jar from the releases page
- Add flowjo-plugin-testbed.jar to your classpath
- In your plugin, create a main function and call the
invokeAlgorithm()
from the previous step
public static void main(String[] args) {
YourPlugin plugin = new YourPlugin();
try {
plugin.invokeAlgorithm(FlowJoPluginTestbed.getFcmlFromFile("/some/directory/FlowJo Plugin Data Dump/fcmlQueryElement.xml"), FlowJoPluginTestbed.createFileObject("/some/directory/FlowJo Plugin Data Dump/st_HM-1_CHECK192_001..ExtNode.csv"), FlowJoPluginTestbed.createFileObject("/some/directory/FlowJo Plugin Data Dump"));
} catch (IOException e) {
e.printStackTrace();
}
}
- You'll now be able to use standard Java development and debugging practise to test if your plugin works.
The standard cycle for developing and debugging FlowJo plugins can be quite painful, and usually involves some variation of the following:
- Build a fat .jar file including dependencies for your plugin
- Copy it into your
/Applications/plugins
directory or windows equivalent - Start FlowJo from the command line
- Open your workspace
- Wait for FlowJo to finish scanning for .jar files
- Run the plugin and check the console for errors
Sometimes this process can take upwards of 5 minutes for a single round trip, which is not feasible if you're developing a plugin or have a programming style that requires a lot of back and forth debugging. By using this in combination with flowjo-plugin-data-dump, you'll be able to get quick debugging.
If you're interested in creating plugins for Flowjo, chances are you've read the FlowJo Plugin Development Guide.
If you're writing a population plugin, you'll know that the bulk of the work is done by the invokeAlgorithm()
method (documented here).
The invokeAlgorithm(SElement fcmlElem, File sampleFile, File outputFolder)
function takes 3 arguments:
This is basically an XML document in "FCML" (flow cytometry markup language) format. It contains metadata describing the current node on which the plugin is being run. Note: this means that you need to dump the plugin data specifically for the sample or node you're intending to test with.
It looks something like this:
<FCML version="3" >
<FcmlQuery queryId="FCML" >
<DataSet uri="/Users/nicbarker/Documents/test gating/st_HM-1_CHECK192_001.fcs" >
<transforms:spilloverMatrix prefix="Comp-" name="Compensation-copy" editable="1" color="#00ccff" version="FlowJo-10.4" status="FINALIZED" transforms:id="ce3c3c11-eef9-4505-b2c6-54495cce1ac4" suffix="" >
<data-type:parameters>
<data-type:parameter data-type:name="B 530_B-A" />
<data-type:parameter data-type:name="B 695_A-A" />
<data-type:parameter data-type:name="R 780_A-A" />
<data-type:parameter data-type:name="UV 379_C-A" />
<data-type:parameter data-type:name="V 450_F-A" />
<data-type:parameter data-type:name="V 525_E-A" />
<data-type:parameter data-type:name="YG 582_D-A" />
<data-type:parameter data-type:name="YG 780_A-A" />
</data-type:parameters>
When you call your population plugin, most of the time FlowJo will actually write out a new file to the disk containing the subpopulation at that node so you can work on it without damaging the original file. The structure and data in this file depends on which version of the plugin you use (FCS_FILE, TRANSFORMED_VALUES_CSV or RAW_VALUES_CSV) You then do your processing on that file and return your results. This is a basic java file object and you can read it from the disk as normal.
This is just a File object that points to the directory where the previous two files will be stored.
flowjo-plugin-testbed
will read the files off the disk generated by flowjo-plugin-data-dump
and provide them to your plugins invokeAlgorithm
function, emulating FlowJo. It actually uses one of FlowJo's internal libraries to parse the FCML file.