flowDensity loop on flowSet
0
0
Entering edit mode
beshea.jj • 0
@besheajj-18337
Last seen 5.4 years ago

I have been gating my fcs file by using flowDensity. However- I have gotten to a point where I need to analyze closer to 10-20 fcs files. I've tried looping flowDensity with fsApply:

something like- fsApply(fs, flowdensity()) as well as fsApply(fs, Saved Flow Density Gate)

I have also tried to for loop the flowDensity parameters over the flowSet but none of this seems to work. Is there a way to gate the fcs files with the same flowDensity gate? Otherwise the flowSet is useless since i would have to parse out each single fcs file anyway. I hope this makes sense and would be happy to follow up with more information if needed. 

 

 

JB 

flowdensity flowcore for loop • 1.2k views
ADD COMMENT
0
Entering edit mode

You should be able to turn your gate into a function and use fsApply to apply that function to all of the flowFrames in your flowSet:

gate.function <- function(x){flowDensity(x, channels = c("FSC-A","FSC-H"),position = c(F,F), percentile =c(.99,.99), use.percentile = c(T,T), ellip.gate = T, scale = .99)}

fsApply(my.flowset, gate.function)
ADD REPLY

Login before adding your answer.

Traffic: 548 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6