How to prepre sample condition and sample info
1
0
Entering edit mode
Jitendra ▴ 10
@nabiyogesh-11718
Last seen 25 days ago
United Kingdom

Dear all,

I am using DESeq2 for differential gene expression analysis. But I am not able to understand I should I put sample information and condition for large set of data as I mention below. I am having around 36 sample consists of

  • 2 contrasting genotypes: R316, R512
  • 3 different davelopment stage : 5week, 7 week , 9 week 
  • 4 different tissue: embryo, endosperm, mesocarp, pericarp
  • 2 biological replicate for each

Regards

Yogesh

deseq2 • 560 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 1 day ago
United States

I recommend that you keep this information in a CSV file. You can create one in a text editor or using Excel or the like. Then read into R using the read.csv() function. Check to see that the values make sense with:

sampleInfo <- read.csv("/path/to/your_filename.csv")
head(sampleInfo)
lapply(sampleInfo, summary)
lapply(sampleInfo, table)

 

ADD COMMENT

Login before adding your answer.

Traffic: 607 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6