How to extract targets for specific TF from RegEnrich results
1
0
Entering edit mode
2.1 years ago
Fleur • 0

Hi all,

I am analysing my RNAseq data with RegEnrich, following the very well described pipeline as described here: Vignette RegEnrich

The analysis ends with the function

plotRegTarExpr(object, reg = "ARNTL2")

To plot any specific TF target in orange and its targets in black. Leading to a plot such as this:

Regulator and Targets plot

I am wondering if there is a way/command to extract the names of the target genes for each TF? Thanks a lot, I hope someone can help

Bioconductor RegEnrich RNAseq R • 545 views
ADD COMMENT
1
Entering edit mode
2.1 years ago
Tao ▴ 10

Hi,

If you have finished the "Regulator-target network inference" step, then you can simply access the full TF-target network by:

x = results_topNet(object)@elementset # The object is theRegenrichSet object

print(x)

Further, if you want to get the targets of some of the regulators (e.g. AATF and ABT1), then you can do it based on the basic R language:

subset(x@elementset, set %in% c("AATF", "ABT1"))

If you are interested in only one regulator (e.g., AATF), then

subset(x@elementset, set == "AATF")

The second column is the target genes.

ADD COMMENT

Login before adding your answer.

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