# %%# Graphein# Author: Arian Jamasb <arian@jamasb.io>, Ramon Vinas# License: MIT# Project Website: https://github.com/a-r-j/graphein# Code Repository: https://github.com/a-r-j/grapheinimportloggingfromtypingimportCallable,List,Optionalimportnetworkxasnxfromgraphein.grn.configimportGRNGraphConfigfromgraphein.utils.utilsimport(annotate_edge_metadata,annotate_graph_metadata,annotate_node_metadata,compute_edges,)log=logging.getLogger(__name__)logging.basicConfig(level=logging.INFO)EDGE_COLOR_MAPPING={"trrust":"r","regnetwork":"b","abasy":"g"}
[docs]defparse_kwargs_from_config(config:GRNGraphConfig)->GRNGraphConfig:""" If configs for specific dataset are provided in the Global GRNGraphConfig, we update the kwargs :param config: GRN graph configuration object. :type config: graphein.grn.GRNGraphConfig :return: config with updated config.kwargs :rtype: graphein.grn.GRNGraphConfig """ifconfig.trrust_config.kwargsisnotNone:trrust_config_dict={"TRRUST_"+k:vfork,vindict(config.trrust_config.kwargs.items())}config.kwargs=config.kwargs.update(trrust_config_dict)ifconfig.regnetwork_config.kwargsisnotNone:regnetwork_config_dict={"RegNetwork_"+k:vfork,vindict(config.regnetwork_config.kwargs.items())}config.kwargs=config.kwargs.update(regnetwork_config_dict)returnconfig
[docs]defcompute_grn_graph(gene_list:List[str],edge_construction_funcs:List[Callable],graph_annotation_funcs:Optional[List[Callable]]=None,node_annotation_funcs:Optional[List[Callable]]=None,edge_annotation_funcs:Optional[List[Callable]]=None,config:Optional[GRNGraphConfig]=None,)->nx.Graph:""" Computes a Gene Regulatory Network Graph from a list of gene IDs :param gene_list: List of gene identifiers :type gene_list: List[str] :param edge_construction_funcs: List of functions to construct edges with :type edge_construction_funcs: List[Callable] :param graph_annotation_funcs: List of functions functools annotate graph metadata, defaults to None :type graph_annotation_funcs: List[Callable], optional :param node_annotation_funcs: List of functions to annotate node metadata, defaults to None :type node_annotation_funcs: List[Callable], optional :param edge_annotation_funcs: List of functions to annotate edge metadata, defaults to None :type edge_annotation_funcs: List[Callable], optional :param config: Config specifying additional parameters for STRING and BIOGRID, defaults to None :type config: graphein.grn.GRNGraphConfig, optional :return: nx.Graph of PPI network :rtype: nx.Graph """# Load default config if none suppliedifconfigisNone:config=GRNGraphConfig()# Parse kwargs from configconfig=parse_kwargs_from_config(config)# Create *directed* graph and add genes as nodesG=nx.DiGraph(gene_list=gene_list,sources=[],# ncbi_taxon_id=config.ncbi_taxon_id,)G.add_nodes_from(gene_list)log.debug(f"Added {len(gene_list)} nodes to graph")nx.set_node_attributes(G,dict(zip(gene_list,gene_list)),"gene_id",)# Annotate additional graph metadataifgraph_annotation_funcsisnotNone:G=annotate_graph_metadata(G,graph_annotation_funcs)# Annotate additional node metadataifnode_annotation_funcsisnotNone:G=annotate_node_metadata(G,node_annotation_funcs)# Add edgesG=compute_edges(G,edge_construction_funcs)# Annotate additional edge metadataifedge_annotation_funcsisnotNone:G=annotate_edge_metadata(G,edge_annotation_funcs)returnG