Hi, if I wanted to use this design in order to take in account the batch effects:
dds = DESeqDataSetFromMatrix(countData = countData, colData = colData, design = ~ condition + batch)
Is it correct to use this colData?
condition batch
test1 test 1
test2 test 1
test3 test 2
control1 control 1
control2 control 1
control3 control 2
Or this colData?
condition batch
test1 test A
test2 test A
test3 test B
control1 control A
control2 control A
control3 control B
Thank you.
Riccardo
Thank you.
Using this command:
Will I get my test vs control comparison with the batch effects correction?
Thanks.
Riccardo