This is a test version of Biostars. For the public version, visit https://www.biostars.org.
DESeq2 code to perform DEG analysis
library(DESeq2)
rawCountTable <- as.matrix(read.delim(file.choose(), row.names=1))
Col_data = read.table(file = "ANN_LUAD.txt", header = T, sep = "\t")
dds <- DESeqDataSetFromMatrix(countData = rawCountTable, colData = Col_data, design = ~ Type)
dds = DESeq(dds)
keep <- rowSums(counts(dds)) >= 10
dds <- dds[keep,]
dds = estimateSizeFactors(dds)
sizeFactors(dds)
vsd <- assay(varianceStabilizingTransformation(dds, blind=FALSE))

After this I have done the gene mapping and I want to ask the next step with the codes to get DEGs result

https://drive.google.com/file/d/118nDashzRA7hyVLUmUsot2CEquxuEaZB/view?usp=share_link

seseq2 deg

issue with the codes how to do the next step

Put your data away for a few days and go through a DESeq2 tutorial or two first.

0 answers

No answers yet.

Log in to answer this question.