Hi , I am new to R and this tool. i am following this given script
https://gist.github.com/stephenturner/f60c1934405c127f09a6
I want to do differential gene expression in my six samples. I want compare the expression of six samples .i have no control and exp data sample. i have simply six sample to compare to each other named as sample1. sample2, sample3, sample4, sample5 sample6..I have completed steps to stringtie now i want to use the Deseq tool . I have read tutorial. but i am stuck in this step how to set it according to my data
Assign condition (first four are controls, second four contain the expansion)
(condition <- factor(c(rep("ctl", 4), rep("exp", 4))))
Actually i want this comparison `> combn(6,2)
[1,] 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
[2,] 2 3 4 5 6 3 4 5 6 4 5 6 5 6 6`