[BioC] introduction - flowCore user

Nolwenn Le Meur nlemeur at irisa.fr
Thu Jan 22 09:36:23 CET 2009


Steve Lauriault wrote:
> Dear Members,
>
> My name is Stevan Lauriault.  I am a flow cytometrist by trade, and I’m just
> beginning to access R, flowCore and related packages for the purpose of
> learning, accessing a good free analysis platform, and perhaps contributing
> some insight/ideas to developers.  
>
> I have a good background with FlowJo, CellQuest Pro, and FCS Express
> software packages/features but am very new to open source development.  I'm
> interested in high throughput quantitative imaging (and classical) flow
> cytometry, population comparison algorithms, clustering/filtering and batch
> statistical export/analysis.  
>
> I’m currently going through the "HowTo_flowCore.pdf" document, and in
> section 2.1.3 the plot(x) function returns the error:
>
> Error in UseMethod("splom") : no applicable method for "splom" Error in
> print(splom(x, pch = pch, ...)) : 
> error in evaluating the argument 'x' in selecting a method for function
> 'print'
>
> I have been told that splom now uses panel.xyplot.flowframe.  How do I
> correct this error?
>
> Also, this is probably a very easy question.  I am running R/flowCore on
> Pentium4/Windows XP, and I'd like to know what annotation I should use to
> extract FCS (2, 3, or looking forward... 4) files of a designated dos
> filepath from my C:\ drive and read into the read.FCS function?  For
> example, what format do I substitute for file.name in the function
> read.FCS(file.name).  How then do I retrieve a series of FCS files and apply
> them to flowSet?  
>
> Any help would be appreciated.
>
> Thanks,
>
> Stevan Lauriault
>
> Founder
> Lauritech Inc. 
> steve at lauritech.com
> www.lauritech.com
> t/f: (416)283-4066
>   
>  
>  
>
>   
> ------------------------------------------------------------------------
>
> _______________________________________________
> Bioconductor mailing list
> Bioconductor at stat.math.ethz.ch
> https://stat.ethz.ch/mailman/listinfo/bioconductor
> Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor
Hi Steve,

I thank you for your interest in the flowCore suite.

Recent improvements have been done in the lattice, latticeExtra and 
flowViz packages (used by flowCore for plotting) and you should probably 
update those to be able to use the plot function that use the splom method.

By the way, when reporting error messages, I would recommend that you 
send in our emails the output of the sessionInfo() command so we can see 
what version of R and associated packages you are using. More and more 
packages have dependencies and the version of each package is important. 
If you are using released R and bioC packages it evolves slowly (every 
6months) but it happens that major bugs need to be fixed within the 
6months. If you use development versions it can be very unstable.

I am not sure I get your second question but I am going to try to 
answer. You should be able to read batch of FCS2 and 3 files directly 
using the flowCore function read.flowSet. This will automatically 
generate a flowSet object:
fcs.loc <- system.file("extdata",package="flowCore")
file.location <- paste(fcs.loc, dir(fcs.loc), sep="/")
samp <- read.flowSet(file.location[1:3])

See flowSet man page for more details.

Best regards,
Nolwenn Le Meur

-- 
Nolwenn Le Meur, PhD
INSERM/IRISA - Equipe Symbiose 
Universite de Rennes I
Campus de Beaulieu
35042 Rennes cedex - France
Phone: +33 2 99 84 71 00
Fax: +33 2 99 84 71 71
E-mail: nlemeur at irisa.fr
Web: http://www.irisa.fr/symbiose/nolwenn_le_meur



More information about the Bioconductor mailing list