Should I remove samples after normalization of miRNA seq read counts ?
I followed https://www.bioconductor.org/help/workflows/RNAseq123/ for my rnaseq analysis. As my read counts were around 2.5 million, I had to use higher CPM. Hope this should be fine for downstream analysis.
After following command:
par(mfrow=c(1,2))
lcpm <- cpm(y2, log=TRUE)
boxplot(lcpm, las=2, col=group$Sample, main="")
title(main="A. Example: Unnormalised data at CPM-2",ylab="Log-cpm")
y2 <- calcNormFactors(y2)
y2$samples$norm.factors
lcpm <- cpm(y, log=TRUE)
boxplot(lcpm, las=2, col=group$Sample, main="")
title(main="B. Example: Normalised data at CPM-2",ylab="Log-cpm")
I got following boxplot graph. ![enter image description here][1] [1]: https://ibb.co/gWW2r6
Based on normalized data, which samples should I remove from analysis ?
• 1,884 views
•
link
1 answer
Some of the samples look different from the others, in terms of their data distribution via the box-and-whiskers plot; however, I would reserve judgement on outliers without seeing, in addition, a PCA bi-plot and violin plot.
Kevin
• 0 views
•
link
Log in to answer this question.