-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12-DEcomplex.Rmd
More file actions
36 lines (23 loc) · 1.73 KB
/
12-DEcomplex.Rmd
File metadata and controls
36 lines (23 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Rice Dataset
We'll add some complexity with a rice dataset. The publication can be found here: https://pmc.ncbi.nlm.nih.gov/articles/PMC12304625/#tpj70349-fig-0003
All samples are from the Nipponbare accession and are leaf tissue.
I have pulled the read counts from the Gene Expression Omnibus (GEO) (https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE295637). We are using the batch corrected, FPKM read counts. More information on FPKM is here: https://www.rna-seqblog.com/rpkm-fpkm-and-tpm-clearly-explained/
<!--I didn't see any batch info so we can't correct for it ourselves-->
Factors (Levels):
+ Water (Drought / Well-watered)
+ Temperature (30° = normal / 40° for 30 min = heat shock)
+ Segment (2 / 3 / 4 / 5 / 6)
Leaves were cut into 7 equal segments from base to tip and the middle 5 segments were sequenced.
<!-- The segments are similar to a time series and were analysed with LRT. The others used the Wald test and were done pairwise but the model was not given. We could also use coexpression analysis, including using different phenotypes to enable analysis of the segment series as a whole or in pieces. -->
<!-- Heat explains a larger portion of the variance than drought (see Supplemental Fig. S3, which also shows PC3 that tracks segment.) -->
4 biological replicates (80 samples total)
The read counts are here:
/home/data/diffexpr/rice/GSE295637_2025.Robertson_Wilkins.BatchCorrectedFPKM.csv
These steps were already performed:
+ Perform read QC
+ Align reads to the genome
+ Get read counts
+ Normalize read counts
<!-- Note that DESeq2 wants raw read counts so technically these are not the correct input -->
What strategies would you use to analyze the data?
Try to carry out one of these strategies.