This page is currently under construction - check back soon!
...
- Download and install R (latest stable version, or a specific version if needed) from here - https://www.r-project.org/
- Download and install RStudio Desktop from here - https://www.rstudio.com/products/rstudio/#Desktop
- Download and install FlowJo from here (and organise a licence if you haven't already got one)
- Download and install SeqGeq from here (and organise a licence if you haven't already got one)
- Download and install Matlab
Excellent links for information that was used for R/Rstudio/flowCore
- Basic intro to R - https://cran.r-project.org/doc/contrib/Torfs+Brauer-Short-R-Intro.pdf
- Introduction to flowCore - https://bmcbioinformatics.biomedcentral.com/articles/10.1186/1471-2105-10-106
Data pre-processing in FlowJo using R plugins
...
In FlowJo, after importing your cytometry data, click the 'Check sample quality' button in the tools workspace. This will flag samples that should be checked. FlowJo plots the median values for each parameter over time and flags any that are outside of 2 standard deviations. Green is good. Any thing else should be reviewed.
Active sample quality check - FlowAI in FlowJo
...
- Open RStudio (ensure you run as administrator, otherwise yo umay run into permission errors).
Install Bioconductor and additional packages that are used for flow cytometry data analysis
Code Block ## try http:// if https:// URLs are not supported source("https://bioconductor.org/biocLite.R") biocLite() biocLite("flowCore") biocLite("flowViz") biocLite("flowUtils") biocLite("geneplotter")
Determine your working directory by entering
Code Block getwd()
Set your working directory by entering - for example
Code Block setwd("'C:/Users/utopi/Desktop/testdata"')
Set the FCS folder as a variable
Code Block fcsfolder<##file.name <- system.file("extdata","0877408774.B08", package="fcsdata"flowCore") read.FCS('A1.fcs')
- Still in progress...