Entering edit mode
3.4 years ago
Bioinformatics1
▴
10
Hello,
I aligned 3 group data and used DESeq2 in https://basespace.illumina.com/analyses/
Now I excel file of data after DESeq2.
Can you guide how to continue in R and draw a plot Heatmap, and other graphs for the study of gene expression of 3 groups?
- How do I upload excel with the below information in R?
- When I use
dds
, there is an error. How I can remove the error? Thanks in advance
dds <- DESeq(dds)
Error in is(object, "DESeqDataSet") : object 'dds' not found
baseMean log2FoldChange lfcSE pvalue padj
## <numeric> <numeric> <numeric> <numeric> <numeric>
## FBgn0000008 95.14429 0.00119920 0.151897 0.9918817 0.997211
## FBgn0000014 1.05652 -0.00473412 0.205468 0.8172987 NA
I strongly recommend that you set your data aside and find a DESeq2 tutorial, and run through that before looking at your data. This board is not meant to teach rudimentary R.
Please, try to format your code using the appropriate tool when you write. Also is a good practice to share the code you run and how your data looks like. But as @swbarnes said, try to use a DESeq2 tutorial, here you have one. Your input should be a count table with expression values. That can be create with so many different tools, one of my favorite is
featureCounts
.My samples do not have replicate and receive this error: how to change the command that shows each sample has only one and there is no replication? thanks in advance
Please use
ADD REPLY
when responding to existing posts to keep threads logically organized.SUBMIT ANSWER
is only for new answers to original question.If you don't have replicates you can't use DESeq2.