Description Usage Arguments Value Author(s) Examples
View source: R/augment_pathways.R
This function takes each pathway of the input list of signaling pathways and adds the miRNAs that are related to it.
1 | integrate_mir(original_pathways, targets_db)
|
original_pathways |
A list of
graph::graphNEL objects where each of the nodes is named with '<gene_ID>'.
Gene IDs used to identify the nodes must be the same gene IDs used to
identify the genes on the miRNA-target
interactions data.frame, |
targets_db |
A data.frame with
columns: 'miRNA' which names the miRNAs
and 'Target.ID' which gives the gene ID of the target gene.
The Gene IDs used to identify the "Target.ID" column
must be the same gene IDs used on the nodes of the |
Gene signaling pathways augmented with miRNA interactions. This is a list of graph::graphNEL objects where each of the nodes is named with '<gene_ID>'. Nodes of each graph::graphNEL represent genes and miRNAs involved in the pathway and edges represent the biological interactions (activation or repression) among them.
Diana Diaz <dmd at wayne dot edu>
1 2 3 4 | data(kegg_pathways)
data(mirTarBase)
kegg_pathways <- kegg_pathways[1:5] #delete this for augmenting all pathways.
augmented_pathways <- integrate_mir(kegg_pathways, mirTarBase)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.