Entering edit mode
6.0 years ago
LuisNagano
▴
90
I used the follow script to get normalized data from DESeq2 and worked out, but the table don't have the gene ids, only normalized counts and samples:
Script:
normcounts <- counts(dds, normalized = TRUE)
write.csv(normcounts, file="norm_counts.csv")
The exported table is like that:
gene id BSR111-Med-46 BSR112-Med-58
1 2.87573335679571 2.58809911711063
2 31.6330669247528 51.7619823422126
How can I get the normalized count data with gene ids?
Thanks for help
How did you generate the counts? That's where the issue likely lies.