Thank for the answer.
I don't understand when should I specify the argument contrast in makeContrasts? Maybe I didn't understand the meaning of contrasts.
2) the output in last part is the same, but in one case the makeContrasts returns (near Levels) the word contrast in the other one returns the specific combination of sample.
However the purpose of my analysis is to obtain for each gene a ranked list of expression level in tissues, sorting in decreasing way in according to expression level; so I think that I must to compare the first group with all others but I don't know if the comparison must to do one tissue at a time or together; for example:
contrast.matrix<-makeContrasts(A-B, A-C,levels=design)
Contrasts
Levels A-B, A-C
A 1 1
B -1 0
C 0 -1
contrast.matrix<-makeContrasts(A- (B+C)/2, levels=design)
Contrasts
Levels A - (B + C)/2
A 1.0
B -0.5
C -0.5
the results are different, but I didn't understand the scientific difference. What could be the correct approach for my analysis?
Thanks a lot again!