nearby genes expression
1
0
Entering edit mode
6.3 years ago
ta_awwad ▴ 340

Hello Guy, I have deseq2 table with differentially expressed genes. I would like to extract the log2FC as well as raw counts for 5 genes That are flanking my gene of interest to use them for heatmap .. can anyone help?

RNA-Seq deseq2 • 1.4k views
ADD COMMENT
2
Entering edit mode

Sure.

  1. Get the coordinates of your gene of interest from GTF.
  2. use bedtools to find what are the nearest genes using closest feature
  3. Take the gene IDs from step.2 and grep for log2FC from DESeq2 results

or

  1. Go to UCSC genome browser and enter your gene of interest
  2. Zoom out to find what are the flanking genes and note down
  3. Take the gene IDs from step.2 and grep for log2FC from DESeq2 results
ADD REPLY
0
Entering edit mode

thanks much venu ... but there is no shortcut to do this task?

ADD REPLY
1
Entering edit mode

Both of them takes <5 min to complete the task. I can't think of any other shortcut.

ADD REPLY
0
Entering edit mode

If you know the names of those genes then fish them out of the results object (which can be written to a file).

ADD REPLY
0
Entering edit mode

Thanks Genomax .. I was just thinking of direct way to fetch the names of those genes then extract the expression values .. I will do it manually ... thanks once more

ADD REPLY
0
Entering edit mode
6.3 years ago
arta ▴ 670
dds <- DESeq(dds)
res <- results(dds)

res is the data frame where you can find log2FC in second column res[,2] and rownames are genes.

dds <- DESeqDataSetFromMatrix(countData = cts,
                          colData = coldata,
                          design = ~ condition)

The counts are stored in countData.

ADD COMMENT
0
Entering edit mode

thanks arta for the contribution ... but this not what I want actually

ADD REPLY

Login before adding your answer.

Traffic: 1441 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