Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


This page is currently under construction - check back soon!

...

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

...

  1. Open RStudio (ensure you run as administrator, otherwise yo umay run into permission errors).
  2. 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",dependencies=TRUE)
    biocLite("flowViz")
    biocLite("flowUtils")
    biocLite("geneplotter")
    install.packages("stringi")


  3. Determine your working directory by entering 

    Code Block
    getwd()
    
    


  4. Set your working directory by entering - for example

    Code Block
    setwd('C:/Users/utopi/Desktop/testdata')


  5. Set the FCS folder as a variable

    Code Block
    ##file.name <- system.file("extdata","0877408774.B08", package="flowCore")
    read.FCS('A1.fcs')


  6. Still in progress...

...