Export clusters identified by FlowSOM #75
-
Hi all, First off, thank you for a great package, I have found Spectre in R so far very user friendly and I have just skimmed the surface. I have a couple of questions and please feel free to point me to relevant tutorials or resources that I may have overlooked. 1)I have followed the Simple discovery workflow and was wondering if there was a way to check dot plots of various cluster identified by FlowSOM. Say we think ,based on the heat map, a given cluster is T regulatory cells and want to check if this is true based on classical 2D dot plots, either by exporting the data in a way that can be read by FlowJo (too look at back gating), or is there a way of doing this in R directly. In general I am talking about validating identified cluster by classical 2D dot plot methods, how would you recommend going about this? I am envisaging exporting the dataset as an FCS files with annotated clusters included, and then importing to flowjo to check expression of markers on 2D plots.
Thanks Reuben |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @ReubenMcG, thanks so much! "...if there was a way to check dot plots of various cluster identified by FlowSOM" Definitely! Either you can make some plots of the marker of interest directly (e.g. rather than making a plot of UMAP_X vs UMAP_Y coloured by cluster/population, you could make one of CD3_asinh vs FoxP3_asinh or similar. Here is an example with the demo data:
However, to get into more detail you can easily produce FCS files and pull them into FlowJo. In the 'annotation' section there is a command there that generates FCS files, and you can pull them directly into FlowJo! All the raw and asinh columns will be in there, as will be the cluster and population data -- they'll just be converted to numbers, but it's not too difficult to figure out which is which. My typical method for this is to pull the files back into FlowJo. **"Is there a way of visualising manually gated populations from FlowJo on the dimensionality reduced plots (uMAP or tSNE plots) within R using Spectre" Indeed there is! In the simple discovery script the FCS files are generate from the 'full' dataset, but you can easily do this with the subsampled dataset (with the UMAP/tSNE etc) as well. Here is the existing code for the full dataset:
You could then run this to do the same for the subsampled data but running the
|
Beta Was this translation helpful? Give feedback.
Hi @ReubenMcG, thanks so much!
"...if there was a way to check dot plots of various cluster identified by FlowSOM"
Definitely! Either you can make some plots of the marker of interest directly (e.g. rather than making a plot of UMAP_X vs UMAP_Y coloured by cluster/population, you could make one of CD3_asinh vs FoxP3_asinh or similar.
Here is an example with the demo data:
However, to get into more detail you can easily produce FCS files and pull them into FlowJo. In the 'annotation' section there is a command th…