Hi Kevin, Thank you for replying, that was useful! I cannot even seem to input my data to create a qPCRset object. This is how my dataframe that contain delta Ct values look like:
ID_REF GSM2437228 GSM2437229 GSM2437230 GSM2437231 GSM2437232 GSM2437233
1 ABCA1 2.741219 2.822219 4.275552 5.6885521 4.581885 3.4185521
2 ACP1 4.388677 2.662677 2.910011 3.7580108 2.712344 2.5180108
I have 347 genes under the column name ID_REF and 337 samples that includes Group A, B and C. I tried the following to create a qPCRset object:
> readCtData('gene_data.csv', n.data= 337, n.features = 99 , header = TRUE, column.info=list(feature=1, Ct=337))
but I see the following error:
Error in `[.data.frame`(sample, , column.info[["Ct"]]) :
undefined columns selected
In addition: Warning message:
In .readCtPlain(readfile = readfile, header = header, n.features = n.features, :
347 gene names (rows) expected, got 347
Would you happen to know what I might be doing wrong?