Created
June 14, 2018 20:15
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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