Hi everyone,
I'm doing the differential expression analysis of miRNAs by using edgeR. I have 3 normal samples and 3 cancer samples. At the end I have this result, where FDR are always 1.
Am I doing something wrong? (I'm new in bioinformatics..)
mydata <- read.table("provaR.txt",header = TRUE, check.names = FALSE)
cpm_data <- cpm(data_clean)
group <- c('normal','normal','normal','cancer','cancer','cancer')
y <- DGEList(counts = cpm_data, group = group)
y <- calcNormFactors(y)
y <- estimateDisp(y)
et <- exactTest(y)
results_edgeR <- topTags(et)
results_edgeR$table
logFC logCPM PValue FDR
hsa-miR-10395-3p 2.1245133 2.067156 0.02247458 1
hsa-miR-4479 -2.8776329 1.622607 0.03125763 1
hsa-miR-125a-3p -0.6333918 4.525262 0.04110584 1
hsa-mir-6858 -1.5911778 2.404987 0.04391790 1
hsa-mir-1272 2.0010084 2.137744 0.04611976 1
hsa-miR-654-3p -1.7058564 2.246162 0.04907249 1
hsa-miR-497-5p -0.5813002 4.440483 0.05123472 1
hsa-mir-409 1.1249962 2.713441 0.05229014 1
hsa-mir-935 -0.5925923 4.329391 0.05611091 1
hsa-mir-3187 -0.5953264 4.344462 0.06414303 1
Yes, my samples are in this order: normal, normal, normal, cancer, cancer, cancer. Thank you so much!