The more I read the more I get confused.
I have 1 control sample and 1 treated sample. I want to know which one of my genes are expressed higher or lower than others. This is RNA seq data
Since the data is huge, I just made a representative example So the control is
df1<- structure(list(names = structure(c(1L, 2L, 3L, 4L, 5L, 15L, 8L,
7L, 10L, 11L, 9L, 12L, 6L, 14L, 13L), .Label = c("A", "AA", "AAA",
"Aab", "buy", "fdd", "fgd", "gff", "hhk", "kil", "lilk", "lolo",
"nghg", "vgfh", "yuyn"), class = "factor"), col1A = c(1.64, 0.03,
0, 4.202, 2.981, 0.055, 0, 0.002, 0.005, 0, 0.002, 0.649, 2.55,
2.762, 6.402)), class = "data.frame", row.names = c(NA, -15L))
Treated is df2
df2<- structure(list(names = structure(c(1L, 2L, 3L, 4L, 5L, 15L, 8L,
7L, 10L, 11L, 9L, 12L, 6L, 14L, 13L), .Label = c("A", "AA", "AAA",
"Aab", "buy", "fdd", "fgd", "gff", "hhk", "kil", "lilk", "lolo",
"nghg", "vgfh", "yuyn"), class = "factor"), col1 = c(2.172, 0,
0, 4.353, 4.581, 0.001, 0.027, 0, 0.002, 0, 0, 0.087, 2.129,
4.317, 5.849)), class = "data.frame", row.names = c(NA, -15L))
I have read so many posts, I could not really figure which method to use, some say permutation, some say simple t test
Help with a one-sample permutation z-test
How to best visualize one-sample test?
Two independent sample test one sided hypothesis test
Should I look at the samples as the last example?
Can someone comment what direction I should go ?