Skip to content

Instantly share code, notes, and snippets.

@FloWuenne
Created June 14, 2018 20:15
Show Gist options
  • Save FloWuenne/098afe3bff11ed588cc6496bcf4312ac to your computer and use it in GitHub Desktop.
Save FloWuenne/098afe3bff11ed588cc6496bcf4312ac to your computer and use it in GitHub Desktop.
Check correlation between number of genic reads and genes and transcripts detected per cell
## Read in summary file from Drop-seq pipe
infile =
DGE_info <- read.table(infile,
sep="\t",
header=T)
## Correlation Number of genic reads vs num of genes detected per cell
ggplot(DGE_info,aes(NUM_GENIC_READS,NUM_GENES,col=NUM_TRANSCRIPTS)) +
geom_point()
## Correlation Number of genic reads vs num of transcripts (UMIs) detected per cell
ggplot(DGE_info,aes(NUM_GENIC_READS,NUM_TRANSCRIPTS,col=NUM_GENES)) +
geom_point()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment