Part 8: KE enrichment score analysis and benchmarking for dataset: E-MEXP-2599
The AOP project ► Key objective 2
Author: Shakira Agata
This Jupyter Notebook shows the steps for the execution of KE enrichment analysis and benchmarking to Overrepresentation Analysis(ORA) for dataset:E-MEXP-2599. This notebook is subdivided into eleven sections:
- Section 1: Creation of dictKE dictionary
- Section 2: Creation of dictWP dictionary
- Section 3: Creation of KEgenes dictionary
- Section 4: Calculation of N variable
- Section 5: Comparison 1: diquat dibromide timepoint 1
- Section 5.1: Calculation of n variable
- Section 5.2: Calculation of variable B and variable b
- Section 5.3: Calculation of enrichment score & hypergeometric p-value
- Section 5.4: Filtering results
- Section 5.5: Calculation of percent gene overlap
- Section 5.5.1 Creation of significant KE table
- Section 5.5.2 Significant ORA pathway table
- Section 5.5.3 Creation of for loop
- Section 5.5.4 Tabulation
- Section 5.5.5 Percent overlap calculation
- Section 6: Comparison 2: diquat dibromide timepoint 2
- Section 6.1: Calculation of n variable
- Section 6.2:Calculation of variable B and variable b
- Section 6.3: Calculation of enrichment score & hypergeometric p-value
- Section 6.4: Filtering results
- Section 6.5: Calculation of percent gene overlap
- Section 6.5.1 Creation of significant KE table
- Section 6.5.2 Significant ORA pathway table
- Section 6.5.3 Creation of for loop
- Section 6.5.4 Tabulation
- Section 6.5.5 Percent overlap calculation
- Section 7: Comparison 3: cadmium chloride timepoint 1
- Section 7.1: Calculation of n variable
- Section 7.2:Calculation of variable B and variable b
- Section 7.3: Calculation of enrichment score & hypergeometric p-value
- Section 7.4: Filtering results
- Section 7.5: Calculation of percent gene overlap
- Section 7.5.1 Creation of significant KE table
- Section 7.5.2 Significant ORA pathway table
- Section 7.5.3 Creation of for loop
- Section 7.5.4 Tabulation
- Section 7.5.5 Percent overlap calculation
- Section 8: Comparison 4: cadmium chloride timepoint 2
- Section 8.1: Calculation of n variable
- Section 8.2:Calculation of variable B and variable b
- Section 8.3: Calculation of enrichment score & hypergeometric p-value
- Section 8.4: Filtering results
- Section 8.5: Calculation of percent gene overlap
- Section 8.5.1 Creation of significant KE table
- Section 8.5.2 Significant ORA pathway table
- Section 8.5.3 Creation of for loop
- Section 8.5.4 Tabulation
- Section 8.5.5 Percent overlap calculation
- Section 9: Comparison 5: cyclosporine A timepoint 1
- Section 9.1: Calculation of n variable
- Section 9.2:Calculation of variable B and variable b
- Section 9.3: Calculation of enrichment score & hypergeometric p-value
- Section 9.4: Filtering results
- Section 9.5: Calculation of percent gene overlap
- Section 9.5.1 Creation of significant KE table
- Section 9.5.2 Significant ORA pathway table
- Section 9.5.3 Creation of for loop
- Section 9.5.4 Tabulation
- Section 9.5.5 Percent overlap calculation
- Section 10: Comparison 6: cyclosporine A timepoint 2
- Section 10.1: Calculation of n variable
- Section 10.2:Calculation of variable B and variable b
- Section 10.3: Calculation of enrichment score & hypergeometric p-value
- Section 10.4: Filtering results
- Section 10.5: Calculation of percent gene overlap
- Section 10.5.1 Creation of significant KE table
- Section 10.5.2 Significant ORA pathway table
- Section 10.5.3 Creation of for loop
- Section 10.5.4 Tabulation
- Section 10.5.5 Percent overlap calculation
- Section 11: Metadata
Section 1: Creation of dictKE dictionary
In this section, the dictKE dictionary will be made which is used to retrieve the first neighbors of the key events present in the inflammatory stress response pathway AOP network.
Step 1. First, the necessary packages and inflammatory stress response pathway AOP network were loaded.
import pandas as pd
import numpy as np
from scipy.stats import hypergeom
import matplotlib.pyplot as plt
import scipy.stats as ss
import py4cytoscape as p4c
p4c.cytoscape_ping()
p4c.cytoscape_version_info()
You are connected to Cytoscape!
{'apiVersion': 'v1',
'cytoscapeVersion': '3.10.1',
'automationAPIVersion': '1.9.0',
'py4cytoscapeVersion': '1.9.0'}
network=p4c.open_session('Agata,S.-Part4 Complete Molecular inflammation-process related AOP network.cys')
Opening C:\Users\shaki\Downloads\Agata,S.-Part4 Complete Molecular inflammation-process related AOP network.cys...
Step 2. Next, the nodetable and the original nodetable derived from the KE-WP mapping results are loaded.
nodetable=p4c.get_table_columns()
dataframe_for_dictKE=pd.read_excel('Nodetable-dictKE.xlsx')
df_corrected=pd.read_excel('nodetable-dictWP.xlsx').reset_index(drop=True)
Step 3. The dataframe will now be converted into a dictionary where the keys are the IDs from the key events and the values are the titles of the molecular pathways.
completedataframe_for_dictKE=dataframe_for_dictKE[['ID (KEID)','WPtitle']].copy()
complete_dataframe_for_dictKE=completedataframe_for_dictKE.rename(columns={"ID (KEID)":"KEID"})
Step 4. The format of the dataframe will now be converted into a dictionary format.
dictKE= complete_dataframe_for_dictKE.to_dict('records')
Section 2: Creation of dictWP dictionary
In this section, the dictWP dictionary will be created. The dictWP dictionary will contain the first neighbours: genes of the individual molecular pathways mapped to the inflammatory stress response pathway AOP network.
Step 5. First, the dataframe is created in which the molecular pathways mapped to the network are filtered.
df4= nodetable[nodetable['type'] == 'Molecular pathway']
Step 6. A duplicate network will be created for which we will create filters to only contain gene and molecular pathway nodes in the network in preparation for the dictWP creation. This requires a composite filter to exclude Molecular Initiating Event (MIE) nodes, Key Event (KE) nodes and Adverse Outcome (AO) nodes.
Clonednetwork_fordictWP= p4c.clone_network()
p4c.rename_network('Cloned molecular inflammatory stress response pathway AOP network for dict WP')
{'network': 132,
'title': 'Cloned molecular inflammatory stress response pathway AOP network for dict WP'}
MIEfilter= p4c.create_column_filter('MIE filter', 'type', 'MIE', 'CONTAINS', network='Cloned molecular inflammatory stress response pathway AOP network for dict WP')
No edges selected.
KEfilter= p4c.create_column_filter('KE filter', 'type', 'KE', 'CONTAINS',network='Cloned molecular inflammatory stress response pathway AOP network for dict WP')
No edges selected.
AOfilter= p4c.create_column_filter('AO filter', 'type', 'AO', 'CONTAINS',network='Cloned molecular inflammatory stress response pathway AOP network for dict WP')
No edges selected.
combined_MIEKEAOfilter= p4c.create_composite_filter('MIE KE AO filter', ['MIE filter','KE filter','AO filter'],type='ANY',network='Cloned molecular inflammatory stress response pathway AOP network for dict WP')
No edges selected.
Step 7. You will delete the selected filtered nodes from the composite filter to only maintain the molecular pathway nodes and gene nodes.
Deletednodes= p4c.delete_selected_nodes(network='Cloned molecular inflammatory stress response pathway AOP network for dict WP')
Step 8. A for loop will be created for the WP dictionary which contains the WP titles as the keys and the names of the genes as values. Due to settings of the get_first_neighbours function, it is not possible to retrieve the gene IDs with this function.
name_list_WP=df_corrected['name'].tolist()
dictWP = {}
for name in name_list_WP:
gene_neighbors_per_WP = p4c.get_first_neighbors(node_names=name, network= 'Cloned molecular inflammatory stress response pathway AOP network for dict WP', as_nested_list=False)
dictWP[name] = gene_neighbors_per_WP
Section 3: Creation of KEgenes dictionary
In this section, you will identify the match between the dictKE and dictWP dictionary which will allow for matching between the keys: KE ID from the dictKE to the values:genes from dictWP.
Step 9. The KE_genes_dictionary dictionary will contain the match between the dictKE and dictWP dictionary by adding the values of the dictWP dictionary if the value: WPtitle of dictKE is present in dictWP.
KE_genes_dictionary=[]
for KEID in dictKE:
WPtitle= KEID['WPtitle']
if WPtitle in dictWP:
KEID['gene'] = dictWP[WPtitle]
KE_genes_dictionary.append(KEID)
Section 4: Calculation of N variable
In this section, variable N will be calculated per individual key event.
Step 10. First, the KEgenes dictionary is manipulated so that each gene is placed on an individual row. This requires the creation of a dataframe, adjustment of the column titles and explosion of the gene column.
first_dataframe=pd.DataFrame.from_dict(KE_genes_dictionary)
df5=df4.rename(columns={'name':'WPtitle'})
first_dataframe1=pd.merge(first_dataframe, df5, on='WPtitle')
second_dataframe=first_dataframe1.explode('gene')
second_dataframe1 = second_dataframe.drop(columns=['selected','AverageShortestPathLength','BetweennessCentrality','ClosenessCentrality','ClusteringCoefficient','group','type','Association type','CTL.Ext','CTL.Type','CTL.PathwayName','CTL.label','CTL.PathwayID','CTL.GeneName','CTL.GeneID','Eccentricity','EdgeCount','Indegree','IsSingleNode','NeighborhoodConnectivity','Outdegree','PartnerOfMultiEdgedNodePairs','SelfLoops','Stress','id','SUID'], axis=1)
second_dataframe1_reordered = second_dataframe.loc[:, ['KEID', 'WPtitle', 'shared name','gene']]
third_dataframe=second_dataframe1_reordered.rename(columns={'shared name':'ID'})
Step 11. The gene IDs that belong to gene symbols are added to complete the dataframe and merge this dataframe to the previous: third_dataframe. This will allow for a dataframe that contains all needed columns: KEID, WPtitle, WPID, gene symbol and gene ID.
df6= nodetable[nodetable['CTL.Type'] == 'gene']
df7=df6.rename(columns={'shared name':'gene'})
df8=df7.drop(columns=['name','selected','AverageShortestPathLength','BetweennessCentrality','ClosenessCentrality','ClusteringCoefficient','group','type','Association type','CTL.Ext','CTL.Type','CTL.PathwayName','CTL.label','CTL.PathwayID','CTL.GeneName','Eccentricity','EdgeCount','Indegree','IsSingleNode','NeighborhoodConnectivity','Outdegree','PartnerOfMultiEdgedNodePairs','SelfLoops','Stress','id','SUID'], axis=1)
mergeddataframe_gene=pd.merge(third_dataframe, df8, on='gene')
mergeddataframe_final=mergeddataframe_gene.rename(columns={'CTL.GeneID':'Entrez.Gene'})
mergeddataframe_final
KEID | WPtitle | ID | gene | Entrez.Gene | |
---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL17 | 6361 |
1 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CX3CL1 | 6376 |
2 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL24 | 6369 |
3 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL7 | 6354 |
4 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL25 | 6370 |
... | ... | ... | ... | ... | ... |
20878 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | DLG4 | 1742 |
20879 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MKNK1 | 8569 |
20880 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MTOR | 2475 |
20881 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EEF2K | 29904 |
20882 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EIF4EBP1 | 1978 |
20883 rows × 5 columns
Step 12. The following for loop will be run for the calculation of the N variable. This for loop iterates over each row of the dataframe and will count the number of genes belonging to individual Key Events that are unique.
variable_N_dictionary_count= {}
for index, row in mergeddataframe_final.iterrows():
unique_KE = row['KEID']
gene = row['Entrez.Gene']
if unique_KE not in variable_N_dictionary_count:
variable_N_dictionary_count[unique_KE] = 1
else:
variable_N_dictionary_count[unique_KE] += 1
print("The total is: ")
print(variable_N_dictionary_count)
The total is:
{'https://identifiers.org/aop.events/486': 129, 'https://identifiers.org/aop.events/875': 169, 'https://identifiers.org/aop.events/2007': 184, 'https://identifiers.org/aop.events/1495': 253, 'https://identifiers.org/aop.events/105': 165, 'https://identifiers.org/aop.events/1816': 165, 'https://identifiers.org/aop.events/1668 ': 156, 'https://identifiers.org/aop.events/244 ': 417, 'https://identifiers.org/aop.events/1739': 8, 'https://identifiers.org/aop.events/1814 ': 251, 'https://identifiers.org/aop.events/1740': 4, 'https://identifiers.org/aop.events/888': 56, 'https://identifiers.org/aop.events/1574': 10, 'https://identifiers.org/aop.events/41': 275, 'https://identifiers.org/aop.events/1270': 72, 'https://identifiers.org/aop.events/1086': 144, 'https://identifiers.org/aop.events/1487 ': 19, 'https://identifiers.org/aop.events/1539': 170, 'https://identifiers.org/aop.events/201': 36, 'https://identifiers.org/aop.events/457': 584, 'https://identifiers.org/aop.events/55': 288, 'https://identifiers.org/aop.events/188': 17, 'https://identifiers.org/aop.events/618': 240, 'https://identifiers.org/aop.events/389': 36, 'https://identifiers.org/aop.events/177': 495, 'https://identifiers.org/aop.events/2013': 100, 'https://identifiers.org/aop.events/2006': 216, 'https://identifiers.org/aop.events/1497': 528, 'https://identifiers.org/aop.events/870': 31, 'https://identifiers.org/aop.events/1669': 400, 'https://identifiers.org/aop.events/1115': 34, 'https://identifiers.org/aop.events/202': 186, 'https://identifiers.org/aop.events/1917': 166, 'https://identifiers.org/aop.events/1633': 1056, 'https://identifiers.org/aop.events/1392': 102, 'https://identifiers.org/aop.events/1815': 58, 'https://identifiers.org/aop.events/386': 372, 'https://identifiers.org/aop.events/1944': 41, 'https://identifiers.org/aop.events/1582': 51, 'https://identifiers.org/aop.events/1896': 205, 'https://identifiers.org/aop.events/1172': 22, 'https://identifiers.org/aop.events/1496': 406, 'https://identifiers.org/aop.events/68': 64, 'https://identifiers.org/aop.events/1493': 812, 'https://identifiers.org/aop.events/265': 268, 'https://identifiers.org/aop.events/1817': 328, 'https://identifiers.org/aop.events/1819': 74, 'https://identifiers.org/aop.events/1750': 528, 'https://identifiers.org/aop.events/1901': 37, 'https://identifiers.org/aop.events/1848': 195, 'https://identifiers.org/aop.events/1847': 6, 'https://identifiers.org/aop.events/1748': 4, 'https://identifiers.org/aop.events/1365': 328, 'https://identifiers.org/aop.events/890': 34, 'https://identifiers.org/aop.events/1587': 57, 'https://identifiers.org/aop.events/1457': 19, 'https://identifiers.org/aop.events/1586': 31, 'https://identifiers.org/aop.events/149': 1056, 'https://identifiers.org/aop.events/1575': 328, 'https://identifiers.org/aop.events/1579': 353, 'https://identifiers.org/aop.events/87': 114, 'https://identifiers.org/aop.events/249': 34, 'https://identifiers.org/aop.events/288': 51, 'https://identifiers.org/aop.events/209': 617, 'https://identifiers.org/aop.events/1498': 224, 'https://identifiers.org/aop.events/1499': 26, 'https://identifiers.org/aop.events/1500': 260, 'https://identifiers.org/aop.events/1488': 184, 'https://identifiers.org/aop.events/1494': 74, 'https://identifiers.org/aop.events/52': 219, 'https://identifiers.org/aop.events/381': 199, 'https://identifiers.org/aop.events/484': 706, 'https://identifiers.org/aop.events/388': 169, 'https://identifiers.org/aop.events/1262': 328, 'https://identifiers.org/aop.events/1945': 1218, 'https://identifiers.org/aop.events/2009': 74, 'https://identifiers.org/aop.events/2012': 260, 'https://identifiers.org/aop.events/1770': 60, 'https://identifiers.org/aop.events/1818': 270, 'https://identifiers.org/aop.events/1738': 4, 'https://identifiers.org/aop.events/1752': 138, 'https://identifiers.org/aop.events/887': 116, 'https://identifiers.org/aop.events/1585': 35, 'https://identifiers.org/aop.events/214': 55, 'https://identifiers.org/aop.events/1271': 58, 'https://identifiers.org/aop.events/1087': 528, 'https://identifiers.org/aop.events/1538': 34, 'https://identifiers.org/aop.events/898': 328, 'https://identifiers.org/aop.events/195': 184, 'https://identifiers.org/aop.events/459': 132, 'https://identifiers.org/aop.events/341': 10, 'https://identifiers.org/aop.events/1670': 88, 'https://identifiers.org/aop.events/759': 82, 'https://identifiers.org/aop.events/1090': 459, 'https://identifiers.org/aop.events/344': 30, 'https://identifiers.org/aop.events/1841': 17, 'https://identifiers.org/aop.events/1820': 57, 'https://identifiers.org/aop.events/896': 82, 'https://identifiers.org/aop.events/1549': 101, 'https://identifiers.org/aop.events/357': 21, 'https://identifiers.org/aop.events/352': 398}
Step 13. The output of the dictionary will be converted into a dataframe and merged to the mergeddataframe_final dataframe to add the results into a separate column.
fourth_dataframe=pd.DataFrame.from_dict(variable_N_dictionary_count,orient='index')
df_reset = fourth_dataframe.reset_index()
df_reset.columns = ['KEID', 'N']
merged_dataframe= pd.merge(mergeddataframe_final, df_reset, on='KEID')
mergeddataframe=merged_dataframe.rename(columns={'ID':'WPID','gene':'Gene.Symbol'})
mergeddataframe
KEID | WPtitle | WPID | Gene.Symbol | Entrez.Gene | N | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL17 | 6361 | 129 |
1 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CX3CL1 | 6376 | 129 |
2 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL24 | 6369 | 129 |
3 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL7 | 6354 | 129 |
4 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL25 | 6370 | 129 |
... | ... | ... | ... | ... | ... | ... |
20878 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | DLG4 | 1742 | 398 |
20879 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MKNK1 | 8569 | 398 |
20880 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MTOR | 2475 | 398 |
20881 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EEF2K | 29904 | 398 |
20882 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EIF4EBP1 | 1978 | 398 |
20883 rows × 6 columns
Section 5. Comparison 1: diquat dibromide timepoint 1
Section 5.1 Calculation of n variable
In this section, variable n will be calculated for comparison 1.
Step 14. The table containing the differential expressed genes to control is loaded with the filter for significance.
Comparison1_DEG= pd.read_csv('topTable_X12_Diquat_30 - X12_vehicle...control_.0.TSV.tsv',sep='\t')
Comparison_1_DEG= Comparison1_DEG[Comparison1_DEG['adj. p-value'] < 0.05]
Comparison_1_DEG = Comparison_1_DEG.copy()
Comparison_1_DEG.rename(columns={Comparison_1_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison_1_DEG['Entrez.Gene'] = Comparison_1_DEG['Entrez.Gene'].astype(str)
Comparison_1_DEG
Entrez.Gene | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|
0 | 10628 | 7.232834 | -1.454574 | 0.114973 | 1.820506e-11 | 3.156962e-07 |
1 | 7296 | 11.342399 | 0.736758 | 0.059977 | 3.093393e-11 | 3.156962e-07 |
2 | 835 | 6.171604 | 0.796337 | 0.066514 | 4.898336e-11 | 3.332665e-07 |
3 | 2316 | 9.740765 | -0.804938 | 0.084547 | 2.621614e-09 | 1.337744e-05 |
4 | 1063 | 8.276373 | -0.544829 | 0.064959 | 2.118435e-08 | 8.194407e-05 |
... | ... | ... | ... | ... | ... | ... |
954 | 9050 | 6.098715 | -0.478607 | 0.145858 | 2.301580e-03 | 4.919115e-02 |
955 | 284930 | 4.263554 | 0.343325 | 0.104717 | 2.317092e-03 | 4.943152e-02 |
956 | 6242 | 6.536941 | -0.305405 | 0.093154 | 2.317670e-03 | 4.943152e-02 |
957 | 128414 | 6.433673 | -0.218729 | 0.066775 | 2.334190e-03 | 4.973190e-02 |
958 | 3918 | 6.558298 | -0.264623 | 0.080848 | 2.348698e-03 | 4.998881e-02 |
959 rows × 6 columns
Step 15. Here, the results of the DEG table are integrated into the mergeddataframe dataframe. This is followed by adjustment of the dataframe columns to remove non-relevant columns.
merged_dataframe_DEG= pd.merge(mergeddataframe,Comparison_1_DEG, on='Entrez.Gene')
mergeddataframeDEG= merged_dataframe_DEG.drop(['meanExpr'], axis=1)
mergeddataframeDEG
KEID | WPtitle | WPID | Gene.Symbol | Entrez.Gene | N | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | LIF | 3976 | 129 | -0.291984 | 0.060500 | 0.000051 | 0.004791 |
1 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | IL6 | 3569 | 129 | 0.488006 | 0.085832 | 0.000007 | 0.001471 |
2 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | CFL1 | 1072 | 169 | 0.289925 | 0.070076 | 0.000276 | 0.013721 |
3 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | LIF | 3976 | 169 | -0.291984 | 0.060500 | 0.000051 | 0.004791 |
4 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | TGFBR2 | 7048 | 169 | -0.307908 | 0.064422 | 0.000057 | 0.005152 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1341 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | RPS6KA1 | 6195 | 398 | -0.385197 | 0.092076 | 0.000246 | 0.012563 |
1342 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | RPS6KB1 | 6198 | 398 | -0.268409 | 0.071914 | 0.000754 | 0.024929 |
1343 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | TSC2 | 7249 | 398 | -0.565493 | 0.170700 | 0.002130 | 0.046900 |
1344 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MTOR | 2475 | 398 | -0.261542 | 0.075657 | 0.001492 | 0.037143 |
1345 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EEF2K | 29904 | 398 | -0.317229 | 0.093362 | 0.001727 | 0.040937 |
1346 rows × 10 columns
Step 16. The following for loop for the key events is run to retrieve the n variable. It is comparable to the for loop of N, but adds a condition to check for significance of genes by p adjusted value being smaller than 0.05.
variable_n_dictionary_count= {}
for index, row in mergeddataframeDEG.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['adj. p-value']
if gene_expression_value < 0.05:
if unique_KE not in variable_n_dictionary_count:
variable_n_dictionary_count[unique_KE] = 1
else:
variable_n_dictionary_count[unique_KE] += 1
print("The total number of significant genes: ")
print(variable_n_dictionary_count)
The total number of significant genes:
{'https://identifiers.org/aop.events/486': 2, 'https://identifiers.org/aop.events/875': 9, 'https://identifiers.org/aop.events/2007': 11, 'https://identifiers.org/aop.events/1495': 11, 'https://identifiers.org/aop.events/105': 1, 'https://identifiers.org/aop.events/1816': 1, 'https://identifiers.org/aop.events/1668 ': 8, 'https://identifiers.org/aop.events/244 ': 45, 'https://identifiers.org/aop.events/1814 ': 27, 'https://identifiers.org/aop.events/41': 27, 'https://identifiers.org/aop.events/1270': 2, 'https://identifiers.org/aop.events/1086': 6, 'https://identifiers.org/aop.events/1487 ': 1, 'https://identifiers.org/aop.events/1539': 17, 'https://identifiers.org/aop.events/201': 7, 'https://identifiers.org/aop.events/457': 50, 'https://identifiers.org/aop.events/55': 12, 'https://identifiers.org/aop.events/188': 4, 'https://identifiers.org/aop.events/618': 12, 'https://identifiers.org/aop.events/389': 7, 'https://identifiers.org/aop.events/177': 3, 'https://identifiers.org/aop.events/2013': 11, 'https://identifiers.org/aop.events/2006': 21, 'https://identifiers.org/aop.events/1497': 33, 'https://identifiers.org/aop.events/870': 3, 'https://identifiers.org/aop.events/1669': 32, 'https://identifiers.org/aop.events/1115': 4, 'https://identifiers.org/aop.events/202': 8, 'https://identifiers.org/aop.events/1917': 18, 'https://identifiers.org/aop.events/1633': 66, 'https://identifiers.org/aop.events/1392': 12, 'https://identifiers.org/aop.events/1815': 10, 'https://identifiers.org/aop.events/386': 24, 'https://identifiers.org/aop.events/1944': 1, 'https://identifiers.org/aop.events/1582': 4, 'https://identifiers.org/aop.events/1896': 20, 'https://identifiers.org/aop.events/1496': 17, 'https://identifiers.org/aop.events/68': 4, 'https://identifiers.org/aop.events/1493': 34, 'https://identifiers.org/aop.events/265': 15, 'https://identifiers.org/aop.events/1817': 12, 'https://identifiers.org/aop.events/1819': 5, 'https://identifiers.org/aop.events/1750': 33, 'https://identifiers.org/aop.events/1901': 3, 'https://identifiers.org/aop.events/1848': 10, 'https://identifiers.org/aop.events/1847': 1, 'https://identifiers.org/aop.events/1365': 12, 'https://identifiers.org/aop.events/890': 4, 'https://identifiers.org/aop.events/1587': 7, 'https://identifiers.org/aop.events/1457': 4, 'https://identifiers.org/aop.events/1586': 5, 'https://identifiers.org/aop.events/149': 66, 'https://identifiers.org/aop.events/1575': 12, 'https://identifiers.org/aop.events/1579': 16, 'https://identifiers.org/aop.events/87': 14, 'https://identifiers.org/aop.events/249': 4, 'https://identifiers.org/aop.events/288': 3, 'https://identifiers.org/aop.events/209': 56, 'https://identifiers.org/aop.events/1498': 10, 'https://identifiers.org/aop.events/1499': 2, 'https://identifiers.org/aop.events/1500': 13, 'https://identifiers.org/aop.events/1488': 10, 'https://identifiers.org/aop.events/1494': 9, 'https://identifiers.org/aop.events/52': 12, 'https://identifiers.org/aop.events/381': 21, 'https://identifiers.org/aop.events/484': 62, 'https://identifiers.org/aop.events/388': 9, 'https://identifiers.org/aop.events/1262': 12, 'https://identifiers.org/aop.events/1945': 86, 'https://identifiers.org/aop.events/2009': 9, 'https://identifiers.org/aop.events/2012': 13, 'https://identifiers.org/aop.events/1770': 1, 'https://identifiers.org/aop.events/1818': 14, 'https://identifiers.org/aop.events/1752': 2, 'https://identifiers.org/aop.events/887': 1, 'https://identifiers.org/aop.events/1585': 6, 'https://identifiers.org/aop.events/214': 1, 'https://identifiers.org/aop.events/1271': 6, 'https://identifiers.org/aop.events/1087': 33, 'https://identifiers.org/aop.events/1538': 4, 'https://identifiers.org/aop.events/898': 12, 'https://identifiers.org/aop.events/195': 10, 'https://identifiers.org/aop.events/459': 9, 'https://identifiers.org/aop.events/1670': 5, 'https://identifiers.org/aop.events/759': 5, 'https://identifiers.org/aop.events/1090': 51, 'https://identifiers.org/aop.events/344': 1, 'https://identifiers.org/aop.events/1841': 4, 'https://identifiers.org/aop.events/1820': 7, 'https://identifiers.org/aop.events/896': 3, 'https://identifiers.org/aop.events/1549': 12, 'https://identifiers.org/aop.events/357': 1, 'https://identifiers.org/aop.events/352': 23}
Step 17. The output of the n variable dictionary is saved as a dataframe and integrated as a separate column into a dataframe.
n_variable_dataframe=pd.DataFrame.from_dict(variable_n_dictionary_count,orient='index')
n_variable_dataframe_reset = n_variable_dataframe.reset_index()
n_variable_dataframe_reset.columns = ['KEID', 'n']
merged_dataframe= pd.merge(mergeddataframeDEG, n_variable_dataframe_reset, on='KEID')
Section 5.2. Calculation of variable B and variable b.
In this section, variable B and variable b are calculated.
Step 18. Variable B is calculated by taking the length of the dataframe which includes all genes in 1 DEG table.
Comparison_1_DEG
Entrez.Gene | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|
0 | 10628 | 7.232834 | -1.454574 | 0.114973 | 1.820506e-11 | 3.156962e-07 |
1 | 7296 | 11.342399 | 0.736758 | 0.059977 | 3.093393e-11 | 3.156962e-07 |
2 | 835 | 6.171604 | 0.796337 | 0.066514 | 4.898336e-11 | 3.332665e-07 |
3 | 2316 | 9.740765 | -0.804938 | 0.084547 | 2.621614e-09 | 1.337744e-05 |
4 | 1063 | 8.276373 | -0.544829 | 0.064959 | 2.118435e-08 | 8.194407e-05 |
... | ... | ... | ... | ... | ... | ... |
954 | 9050 | 6.098715 | -0.478607 | 0.145858 | 2.301580e-03 | 4.919115e-02 |
955 | 284930 | 4.263554 | 0.343325 | 0.104717 | 2.317092e-03 | 4.943152e-02 |
956 | 6242 | 6.536941 | -0.305405 | 0.093154 | 2.317670e-03 | 4.943152e-02 |
957 | 128414 | 6.433673 | -0.218729 | 0.066775 | 2.334190e-03 | 4.973190e-02 |
958 | 3918 | 6.558298 | -0.264623 | 0.080848 | 2.348698e-03 | 4.998881e-02 |
959 rows × 6 columns
B=len(Comparison1_DEG.index)
B
20411
Step 19. Variable b is calculated by taking the length of the dataframe which includes all genes in 1 DEG table with the condition for significance.
Comparison1_DEG_filtered=Comparison1_DEG[Comparison1_DEG['adj. p-value'] < 0.05]
b=len(Comparison1_DEG_filtered)
b
959
Section 5.3. Calculation of enrichment score and hypergeometric p-value
In this section, the enrichment score and hypergeometric p-value will be calculated. This requires the four variables of the enrichment score per KE for which the formula will be applied to and stored in an additional dataframe.
Step 20. The final dataframe will be created that contains the KEID and the four variables: variable N, variable n, variable B and variable b.
Final_dataframe_ES= merged_dataframe.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([20411 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([959 for x in range(len(Final_dataframe_ES.index))])
Final_Dataframe_ES=Final_dataframe_ES.drop_duplicates(subset=['KEID'],keep='first')
Final_Dataframe_ES.reset_index(drop=True,inplace=True)
Copy_Final_DataFrame_ES=Final_Dataframe_ES.copy()
Step 21. The follow for loop will be used to calculate the enrichment score for individual key events and the results will be saved as a separate column into the dataframe.
def calculate_Enrichment_Score(row):
return f"{(row['n']/row['N'])/(row['b']/row['B'])}"
Copy_Final_DataFrame_ES.loc[:,'Enrichmentscore']= Copy_Final_DataFrame_ES.apply(calculate_Enrichment_Score,axis=1)
Copy_Final_DataFrame_ES
KEID | N | n | B | b | Enrichmentscore | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | 129 | 2 | 20411 | 959 | 0.32997874077487044 |
1 | https://identifiers.org/aop.events/875 | 169 | 9 | 20411 | 959 | 1.1334476865077652 |
2 | https://identifiers.org/aop.events/2007 | 184 | 11 | 20411 | 959 | 1.272390850977014 |
3 | https://identifiers.org/aop.events/1495 | 253 | 11 | 20411 | 959 | 0.9253751643469194 |
4 | https://identifiers.org/aop.events/105 | 165 | 1 | 20411 | 959 | 0.12899168957563117 |
... | ... | ... | ... | ... | ... | ... |
88 | https://identifiers.org/aop.events/1820 | 57 | 7 | 20411 | 959 | 2.613778972979895 |
89 | https://identifiers.org/aop.events/896 | 82 | 3 | 20411 | 959 | 0.778669345608993 |
90 | https://identifiers.org/aop.events/1549 | 101 | 12 | 20411 | 959 | 2.5287479738589083 |
91 | https://identifiers.org/aop.events/357 | 21 | 1 | 20411 | 959 | 1.0135061323799592 |
92 | https://identifiers.org/aop.events/352 | 398 | 23 | 20411 | 959 | 1.229958447084222 |
93 rows × 6 columns
Step 22. The following for loop will be used to calculate the hypergeometric p-value for individual Key Events and save the result as a separate column into the dataframe. This requires some in between steps for manipulation of the dataframe.
p_value_dataframe=[]
for index, row in Copy_Final_DataFrame_ES.iterrows():
M = row['B']
n = row['b']
N = row['N']
k = row['n']
hpd = ss.hypergeom(M, n, N)
p = hpd.pmf(k)
p_value_dataframe.append(p)
Hypergeometricpvalue_dataframe=pd.DataFrame(p_value_dataframe)
Hypergeometricpvalue_dataframe.columns= ['Hypergeometric p-value']
merged_finaltable=pd.concat([Copy_Final_DataFrame_ES,Hypergeometricpvalue_dataframe],axis=1)
Section 5.4. Filtering the results for significant KEs
In this section, the results will be filtered to only include significant KEs. Significant KEs have an enrichment score above 1 and a hypergeometric p-value below 0.05.
Step 23. Lastly, the results are filtered to showcase the significant KEs for the comparison 1.
filteredversion= merged_finaltable[(merged_finaltable['Enrichmentscore']>str(1))& (merged_finaltable['Hypergeometric p-value'] < 0.05)]
Section 5.5. Calculation of percent gene overlap to ORA
Section 5.5.1 Creation of the significant KEs table
In this section, you merge the dataframes to retrieve the genes connected to only the significant KEs.
Step 24. The significant KE table is created using the significan KEs from the previous merggeddataframe_final.
mergeddataframe_final=mergeddataframe_final.copy()
mergeddataframe_final['KEID'] = mergeddataframe_final['KEID'].str.strip()
significantKEID_genetable=mergeddataframe_final[(mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/244') | (mergeddataframe_final['KEID'] == 'https://identifiers.org/aop.events/1814') |(mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/41')| (mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/1539')|(mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/201') |(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/457')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/188')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/389')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/2013')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/2006')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1497')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1669')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1917')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1633')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1392')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1815')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/386')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1896')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1750')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1587')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1457')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1586')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/149')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/87')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/209')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1494')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/381')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/484')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1945')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/2009')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1585')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1271')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1087')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1090')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1841')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1820')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1549')]
significantKEIDgenetable=significantKEID_genetable.drop(columns={'WPtitle','ID'})
significantKEIDgenetable
KEID | gene | Entrez.Gene | |
---|---|---|---|
1221 | https://identifiers.org/aop.events/244 | CASP2 | 835 |
1222 | https://identifiers.org/aop.events/244 | RTCB | 51493 |
1223 | https://identifiers.org/aop.events/244 | BCL2 | 596 |
1224 | https://identifiers.org/aop.events/244 | BCL2 | 100049703 |
1225 | https://identifiers.org/aop.events/244 | BCL2L11 | 10018 |
... | ... | ... | ... |
20459 | https://identifiers.org/aop.events/1549 | TNFRSF1B | 7133 |
20460 | https://identifiers.org/aop.events/1549 | VTN | 7448 |
20461 | https://identifiers.org/aop.events/1549 | THBS1 | 7057 |
20462 | https://identifiers.org/aop.events/1549 | THBS3 | 7059 |
20463 | https://identifiers.org/aop.events/1549 | TNFRSF1A | 7132 |
10937 rows × 3 columns
Section 5.5.2 Significant ORA pathway table plus splitting
In this section, the significant ORA pathway table is created.
Step 25. The significant ORA pathway table is created using the significant enriched patwhays identified from the ORA analysis. This requires data manipulation to restructure the table in a way that the individual genes for the enriched pathways are placed on individual rows.
datafile_ORA = pd.read_csv("C:/Users/shaki/Downloads/EMEXP-2599_ORApathwaytable/Comparison 1-Diquat-timepoint1.txt", sep='\t')
datafileORA=pd.DataFrame(datafile_ORA)
filtereddatafileORA=datafileORA[datafileORA['Adjusted P-value'] < 0.05]
dropped_datafileORA_df=filtereddatafileORA.drop(['Adjusted P-value','Odds Ratio','Old P-value','Gene_set','P-value','Old adjusted P-value','Combined Score'],axis=1)
droppeddatafileORAdf=dropped_datafileORA_df.copy()
droppeddatafileORAdf['Genes']= droppeddatafileORAdf['Genes'].replace({';':','},regex=True)
df_ORApathwaytable=droppeddatafileORAdf.copy()
df_ORApathwaytable['Genes'] = df_ORApathwaytable['Genes'].astype(str)
df_ORApathwaytable['Genes'] = df_ORApathwaytable['Genes'].str.split(',')
exploded_df_ORApathwaytable = df_ORApathwaytable.explode('Genes', ignore_index=True)
Section 5.5.3 For loop to get overlapping genes
In this section, the number of overlapping genes between the significant enrichment score-based Key Events and enriched pathways from ORA are calculated.
Step 26. Next, we create two sets by converting the significant KE table and ora pathway table into dictionaries where the values of the genes are grouped together per key.
ORA_gene_sets = exploded_df_ORApathwaytable.groupby('Term')['Genes'].apply(set).to_dict()
SignificantKE_gene_sets = significantKEIDgenetable.groupby('KEID')['gene'].apply(set).to_dict()
overlapping_genes_betweenORA_and_significantKEs = {}
for term, ORA_genes in ORA_gene_sets.items():
for KEID, KEID_genes in SignificantKE_gene_sets.items():
overlap = ORA_genes.intersection(KEID_genes)
print(f"{term} x {KEID}: {len(overlap)} overlaps")
overlapping_genes_betweenORA_and_significantKEs[(term, KEID)] = {
'overlapping genes': overlap,
'number of genes that overlap': len(overlap)
}
if overlapping_genes_betweenORA_and_significantKEs:
print("\ntitle of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:")
for (term, KEID), result in overlapping_genes_betweenORA_and_significantKEs.items():
print(f"Term: {term}, KEID: {KEID}, Title of overlapping gene(s): {result['overlapping genes']}, number: {result['number of genes that overlap']}")
else:
print("No overlapping genes")
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1087: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1090: 3 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1271: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1392: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1457: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/149: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1494: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1497: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1539: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1549: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1585: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1586: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1587: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1633: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1669: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1750: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1814: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1815: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1820: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1841: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/188: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1896: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1917: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1945: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/2006: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/2009: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/201: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/2013: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/209: 4 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/244: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/381: 3 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/386: 3 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/389: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/41: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/457: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/484: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/87: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1087: 5 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1090: 8 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1271: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1392: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1457: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/149: 5 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1494: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1497: 5 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1539: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1549: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1585: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1586: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1587: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1633: 5 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1669: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1750: 5 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1814: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1815: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1820: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1841: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/188: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1896: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1917: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1945: 7 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2006: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2009: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/201: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2013: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/209: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/244: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/381: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/386: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/389: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/41: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/457: 7 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/484: 7 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/87: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1087: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1090: 9 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1271: 2 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1392: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1457: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/149: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1494: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1497: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1539: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1549: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1585: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1586: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1587: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1633: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1669: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1750: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1814: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1815: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1820: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1841: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/188: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1896: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1917: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1945: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2006: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2009: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/201: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2013: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/209: 6 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/244: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/381: 6 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/386: 6 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/389: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/41: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/457: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/484: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/87: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1087: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1090: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1271: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1392: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1457: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/149: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1494: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1497: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1539: 4 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1549: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1585: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1586: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1587: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1633: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1669: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1750: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1814: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1815: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1820: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1841: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/188: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1896: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1917: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1945: 5 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/2006: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/2009: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/201: 7 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/2013: 2 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/209: 2 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/244: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/381: 7 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/386: 5 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/389: 7 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/41: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/457: 5 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/484: 5 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/87: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1087: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 23 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1271: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1392: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1457: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/149: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1494: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1497: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1539: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1549: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1585: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1586: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1587: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1633: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1669: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1750: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1814: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1815: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1820: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1841: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/188: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1896: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1917: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1945: 21 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2006: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2009: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/201: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2013: 4 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 14 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 14 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/381: 4 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/386: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/389: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/41: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/457: 21 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/484: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/87: 5 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1087: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1090: 4 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1271: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1392: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1457: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/149: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1494: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1497: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1539: 2 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1549: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1585: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1586: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1587: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1633: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1669: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1750: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1814: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1815: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1820: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1841: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/188: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1896: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1917: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1945: 4 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/2006: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/2009: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/201: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/2013: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/209: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/244: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/381: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/386: 2 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/389: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/41: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/457: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/484: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/87: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1087: 7 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1090: 19 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1271: 1 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1392: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1457: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/149: 7 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1494: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1497: 7 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1539: 4 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1549: 6 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1585: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1586: 4 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1587: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1633: 7 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1669: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1750: 7 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1814: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1815: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1820: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1841: 1 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/188: 1 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1896: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1917: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1945: 25 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/2006: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/2009: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/201: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/2013: 3 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/209: 4 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/244: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/381: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/386: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/389: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/41: 7 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/457: 28 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/484: 28 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/87: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1087: 10 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1090: 12 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1271: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1392: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1457: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/149: 10 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1494: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1497: 10 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1539: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1549: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1585: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1586: 4 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1587: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1633: 10 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1669: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1750: 10 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1814: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1815: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1820: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1841: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/188: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1896: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1917: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1945: 16 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2006: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2009: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/201: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2013: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/209: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/244: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/381: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/386: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/389: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/41: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/457: 15 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/484: 15 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/87: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1087: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1271: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1392: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1457: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/149: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1494: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1497: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1539: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1549: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1585: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1586: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1587: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1633: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1669: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1750: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1814: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1815: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1820: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1841: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/188: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1896: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1917: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1945: 7 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2006: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2009: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/201: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2013: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/209: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/381: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/386: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/389: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/41: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/457: 7 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/484: 7 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/87: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1087: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1090: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1271: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1392: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1457: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/149: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1494: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1497: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1539: 6 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1549: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1585: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1586: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1587: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1633: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1669: 5 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1750: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1814: 5 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1815: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1820: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1841: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/188: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1896: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1917: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1945: 6 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/2006: 5 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/2009: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/201: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/2013: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/209: 7 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/244: 6 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/381: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/386: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/389: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/41: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/457: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/484: 5 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/87: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1087: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1090: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1271: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1392: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1457: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/149: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1494: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1497: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1539: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1549: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1585: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1586: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1587: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1633: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1669: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1750: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1814: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1815: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1820: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1841: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/188: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1896: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1917: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1945: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/2006: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/2009: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/201: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/2013: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/209: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/244: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/381: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/386: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/389: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/41: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/457: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/484: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/87: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1087: 5 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1090: 7 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1271: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1392: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1457: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/149: 5 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1494: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1497: 5 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1539: 4 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1549: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1585: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1586: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1587: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1633: 5 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1669: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1750: 5 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1814: 4 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1815: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1820: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1841: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/188: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1896: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1917: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1945: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/2006: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/2009: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/201: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/2013: 4 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/209: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/244: 4 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/381: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/386: 5 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/389: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/41: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/457: 4 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/484: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/87: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1087: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1090: 10 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1271: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1392: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1457: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/149: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1494: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1497: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1539: 8 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1549: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1585: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1586: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1587: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1633: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1669: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1750: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1814: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1815: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1820: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1841: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/188: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1896: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1917: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1945: 8 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/2006: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/2009: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/201: 4 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/2013: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/209: 5 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/244: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/381: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/386: 8 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/389: 4 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/41: 4 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/457: 7 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/484: 7 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/87: 1 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1087: 3 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1090: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1271: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1392: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1457: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/149: 3 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1494: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1497: 3 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1539: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1549: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1585: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1586: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1587: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1633: 3 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1669: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1750: 3 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1814: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1815: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1820: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1841: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/188: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1896: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1917: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/1945: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/2006: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/2009: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/201: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/2013: 1 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/209: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/244: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/381: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/386: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/389: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/41: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/457: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/484: 0 overlaps
NPHP1 Deletion Syndrome WP5399 x https://identifiers.org/aop.events/87: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1087: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1090: 4 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1271: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1392: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1457: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/149: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1494: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1497: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1539: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1549: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1585: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1586: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1587: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1633: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1669: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1750: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1814: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1815: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1820: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1841: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/188: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1896: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1917: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1945: 5 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/2006: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/2009: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/201: 3 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/2013: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/209: 3 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/244: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/381: 3 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/386: 2 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/389: 3 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/41: 4 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/457: 4 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/484: 4 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/87: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1087: 2 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1090: 3 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1271: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1392: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1457: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/149: 2 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1494: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1497: 2 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1539: 3 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1549: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1585: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1586: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1587: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1633: 2 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1669: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1750: 2 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1814: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1815: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1820: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1841: 4 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/188: 4 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1896: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1917: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/1945: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/2006: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/2009: 0 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/201: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/2013: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/209: 3 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/244: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/381: 3 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/386: 3 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/389: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/41: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/457: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/484: 1 overlaps
Neuroinflammation WP4919 x https://identifiers.org/aop.events/87: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1087: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1090: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1271: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1392: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1457: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/149: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1494: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1497: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1539: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1549: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1585: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1586: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1587: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1633: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1669: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1750: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1814: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1815: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1820: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1841: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/188: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1896: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1917: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1945: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2006: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2009: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/201: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2013: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/209: 15 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/244: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/381: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/386: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/389: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/41: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/457: 7 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/484: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/87: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1087: 9 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1090: 21 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1271: 1 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1392: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1457: 2 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/149: 9 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1494: 6 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1497: 9 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1539: 4 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1549: 7 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1585: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1586: 4 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1587: 6 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1633: 9 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1669: 3 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1750: 9 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1814: 3 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1815: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1820: 6 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1841: 1 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/188: 1 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1896: 2 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1917: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1945: 32 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/2006: 3 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/2009: 6 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/201: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/2013: 3 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/209: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/244: 3 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/381: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/386: 6 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/389: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/41: 6 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/457: 27 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/484: 32 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/87: 6 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1087: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1090: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1271: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1392: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1457: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/149: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1494: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1497: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1539: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1549: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1585: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1586: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1587: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1633: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1669: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1750: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1814: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1815: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1820: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1841: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/188: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1917: 4 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1945: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2006: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2009: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/201: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2013: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/209: 6 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/244: 5 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/381: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/386: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/389: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/41: 4 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/457: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/484: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/87: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1087: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1090: 50 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1271: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1392: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1457: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/149: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1494: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1497: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1539: 8 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1549: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1585: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1586: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1587: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1633: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1669: 9 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1750: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1814: 10 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1815: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1820: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1841: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/188: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1896: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1917: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1945: 22 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2006: 9 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2009: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/201: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2013: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/209: 14 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/244: 11 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/381: 10 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/386: 11 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/389: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/41: 7 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/457: 21 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/484: 21 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/87: 5 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1087: 3 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1090: 6 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1271: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1392: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1457: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/149: 3 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1494: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1497: 3 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1539: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1549: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1585: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1586: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1587: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1633: 3 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1669: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1750: 3 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1814: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1815: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1820: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1841: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/188: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1896: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1917: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1945: 6 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/2006: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/2009: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/201: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/2013: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/209: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/244: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/381: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/386: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/389: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/41: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/457: 5 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/484: 6 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/87: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1087: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1090: 13 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1271: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1392: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1457: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/149: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1494: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1497: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1539: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1549: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1585: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1586: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1587: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1633: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1669: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1750: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1814: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1815: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1820: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1841: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/188: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1896: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1917: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1945: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2006: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2009: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/201: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2013: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/381: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/386: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/389: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/41: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/457: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/484: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/87: 3 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1087: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1090: 2 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1271: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1392: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1457: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/149: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1494: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1497: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1539: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1549: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1585: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1586: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1587: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1633: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1669: 5 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1750: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1814: 5 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1815: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1820: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1841: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/188: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1896: 5 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1917: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/1945: 2 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/2006: 5 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/2009: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/201: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/2013: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/209: 4 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/244: 5 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/381: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/386: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/389: 0 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/41: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/457: 2 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/484: 1 overlaps
TP53 Network WP1742 x https://identifiers.org/aop.events/87: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1087: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1090: 5 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1271: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1392: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1457: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/149: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1494: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1497: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1539: 3 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1549: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1585: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1586: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1587: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1633: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1669: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1750: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1814: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1815: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1820: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1841: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/188: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1896: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1917: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1945: 6 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/2006: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/2009: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/201: 5 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/2013: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/209: 3 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/244: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/381: 5 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/386: 4 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/389: 5 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/41: 5 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/457: 6 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/484: 6 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/87: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1087: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1090: 7 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1271: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1392: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1457: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/149: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1494: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1497: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1539: 4 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1549: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1585: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1586: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1587: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1633: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1669: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1750: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1814: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1815: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1820: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1841: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/188: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1896: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1917: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1945: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2006: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2009: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/201: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2013: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/209: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/244: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/381: 6 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/386: 6 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/389: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/41: 4 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/457: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/484: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/87: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1087: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1090: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1271: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1392: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1457: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/149: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1494: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1497: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1539: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1549: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1585: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1586: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1587: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1633: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1669: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1750: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1814: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1815: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1820: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1841: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/188: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1896: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1917: 5 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1945: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2006: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2009: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/201: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2013: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/209: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/244: 5 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/381: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/386: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/389: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/41: 5 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/457: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/484: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/87: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1087: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1271: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1392: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1457: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/149: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1494: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1497: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1539: 10 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1549: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1585: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1586: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1587: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1633: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1669: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1750: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1814: 5 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1815: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1820: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1841: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/188: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1896: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1917: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1945: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2006: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2009: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/201: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2013: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/381: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/386: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/389: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/41: 5 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/457: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/484: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/87: 0 overlaps
title of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2'}, number: 3
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PRKDC'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PRKDC'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PRKDC'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PRKDC'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKDC', 'MAPK14', 'TSC2'}, number: 4
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKDC'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2'}, number: 3
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2'}, number: 3
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1', 'LAMA1', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5'}, number: 8
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'AKT1', 'LAMA1', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'AKT1', 'LAMA1', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'AKT1', 'LAMA1', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CDC25B', 'JUN', 'MAPK14', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'MAPK14', 'NDRG1', 'AKT1', 'TSC2', 'BAX', 'JUN', 'JAK1'}, number: 9
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'JAK1'}, number: 2
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CDC25B', 'JUN', 'MAPK14', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CDC25B', 'JUN', 'MAPK14', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1', 'JUN', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'JAK1'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CDC25B', 'JUN', 'MAPK14', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'PRKDC', 'JUN', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CDC25B', 'JUN', 'MAPK14', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'PRKDC', 'JUN', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'PRKDC', 'AKT1'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'PRKDC', 'JUN', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14', 'JAK1', 'AKT1'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'BAX', 'TSC2', 'PRKDC', 'JUN'}, number: 6
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'PRKDC', 'JUN', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'MAPK14', 'AKT1', 'TSC2', 'JUN'}, number: 6
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1', 'TSC2', 'JUN', 'JAK1'}, number: 6
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KA1', 'RPS6KB1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1', 'RPS6KA1'}, number: 4
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KA1', 'EEF2K', 'RPS6KB1'}, number: 7
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RPS6KB1', 'AKT1'}, number: 2
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KA1', 'EEF2K', 'RPS6KB1'}, number: 7
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'AKT1', 'TSC2', 'RPS6KA1', 'RPS6KB1'}, number: 5
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KA1', 'EEF2K', 'RPS6KB1'}, number: 7
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'EEF2K', 'RPS6KB1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TGFBR2', 'FGFR1', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5', 'GADD45A'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'WNT10A', 'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'COL4A1', 'RPS6KB1', 'MAX', 'COL4A3', 'JAK1', 'MTOR', 'MET', 'LAMB1', 'JUN', 'LAMA5', 'DVL3', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3'}, number: 23
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'JUN', 'JAK1'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'TXNRD1'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TGFBR2', 'FGFR1', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5', 'GADD45A'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TGFBR2', 'FGFR1', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5', 'GADD45A'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'PRKCB', 'AKT1', 'ABL1', 'RPS6KB1', 'JUN', 'JAK1'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5', 'JAK1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TGFBR2', 'FGFR1', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5', 'GADD45A'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'PMAIP1', 'ABL1', 'CDKN1A', 'JUN', 'GADD45A'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TGFBR2', 'FGFR1', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5', 'GADD45A'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'PMAIP1', 'ABL1', 'CDKN1A', 'JUN', 'GADD45A'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'JUN'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'JUN'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'BAX', 'ABL1', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2', 'GSTA4', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'COL4A1', 'RPS6KB1', 'COL4A3', 'JAK1', 'MTOR', 'GNB1', 'MET', 'LAMB1', 'LAMA5', 'PRKCB', 'IL6', 'AKT1', 'ABL1', 'CDKN1A', 'ITGA3'}, number: 21
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'PMAIP1', 'ABL1', 'CDKN1A', 'JUN', 'GADD45A'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'CEBPA', 'JAK1', 'RPS6KB1'}, number: 4
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'DVL3', 'PRKCB', 'BAX', 'WNT10A', 'TGFBR2', 'PMAIP1', 'GSTA4', 'HMOX1', 'GADD45A', 'CDKN1A', 'NQO1', 'JUN', 'TXNRD1'}, number: 14
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'TGFBR2', 'PMAIP1', 'ABL1', 'GSTA4', 'HMOX1', 'GADD45A', 'CDKN1A', 'NQO1', 'JUN', 'TXNRD1'}, number: 14
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'AKT1', 'JUN', 'RPS6KB1'}, number: 4
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'PRKCB', 'IL6', 'AKT1', 'TGFBR2', 'RPS6KB1', 'ADCY3', 'JUN', 'JAK1'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'AKT1', 'TGFBR2', 'GSTA4', 'HMOX1', 'CDKN1A', 'RPS6KB1', 'NQO1', 'TXNRD1'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'COL4A1', 'RPS6KB1', 'JAK1', 'MTOR', 'GNB1', 'NCOA1', 'MET', 'LAMB1', 'LAMA5', 'GADD45A', 'IL6', 'AKT1', 'CDKN1A', 'CEBPA', 'ITGA3'}, number: 21
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'COL4A1', 'RPS6KB1', 'COL4A3', 'JAK1', 'MTOR', 'GNB1', 'MET', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'DEPTOR', 'TSC2'}, number: 4
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'DNM1'}, number: 2
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC1', 'DEPTOR', 'TSC2'}, number: 4
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'DEPTOR', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PDGFA', 'AKT1', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 7
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'JAK1', 'MTOR', 'TSC1', 'MET', 'LAMB1', 'LAMA5', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 19
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JAK1'}, number: 1
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC', 'AKT1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PDGFA', 'AKT1', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 7
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PDGFA', 'AKT1', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 7
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'AKT1', 'JAK1', 'RPS6KB1'}, number: 4
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5', 'JAK1'}, number: 6
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'THBS3', 'LAMA5', 'LAMB2'}, number: 4
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PDGFA', 'AKT1', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 7
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PDGFA', 'AKT1', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 7
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TNC', 'COL4A2', 'LAMA1', 'FGFR1', 'RELN', 'LAMB2', 'THBS3', 'LAMB3', 'DDIT4', 'COL6A2', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'JAK1', 'MTOR', 'TSC1', 'GNB1', 'MET', 'LAMB1', 'LAMA5', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 25
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'JAK1', 'RPS6KB1'}, number: 3
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TSC2', 'MTOR', 'CDKN1A', 'DDIT4'}, number: 4
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'AKT1', 'TSC2', 'RPS6KB1', 'JAK1'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'CDKN1A', 'RPS6KB1', 'ACACA'}, number: 7
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TNC', 'COL4A2', 'LAMA1', 'FGFR1', 'RELN', 'LAMB2', 'ACACA', 'THBS3', 'LAMB3', 'DDIT4', 'COL6A2', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'PELO', 'JAK1', 'MTOR', 'TSC1', 'GNB1', 'MET', 'COL11A1', 'LAMB1', 'LAMA5', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 28
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TNC', 'COL4A2', 'LAMA1', 'FGFR1', 'RELN', 'LAMB2', 'ACACA', 'THBS3', 'LAMB3', 'DDIT4', 'COL6A2', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'PELO', 'JAK1', 'MTOR', 'TSC1', 'GNB1', 'MET', 'COL11A1', 'LAMB1', 'LAMA5', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 28
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FLNC', 'FLNB', 'PDGFA', 'AKT1', 'JUN', 'LAMB2', 'LAMB1', 'FLNA', 'THBS3', 'LAMA5'}, number: 10
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PDGFA', 'AKT1', 'MET', 'COL4A2', 'LAMA1', 'COL4A1', 'JUN', 'ITGA3', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5'}, number: 12
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FLNC', 'FLNB', 'PDGFA', 'AKT1', 'JUN', 'LAMB2', 'LAMB1', 'FLNA', 'THBS3', 'LAMA5'}, number: 10
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FLNC', 'FLNB', 'PDGFA', 'AKT1', 'JUN', 'LAMB2', 'LAMB1', 'FLNA', 'THBS3', 'LAMA5'}, number: 10
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCB', 'JUN', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'THBS3', 'LAMA5', 'LAMB2'}, number: 4
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FLNC', 'FLNB', 'PDGFA', 'AKT1', 'JUN', 'LAMB2', 'LAMB1', 'FLNA', 'THBS3', 'LAMA5'}, number: 10
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FLNC', 'FLNB', 'PDGFA', 'AKT1', 'JUN', 'LAMB2', 'LAMB1', 'FLNA', 'THBS3', 'LAMA5'}, number: 10
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TNC', 'PRKCB', 'PDGFA', 'AKT1', 'MET', 'COL4A2', 'LAMB3', 'LAMA1', 'COL4A1', 'RELN', 'LAMB2', 'ITGA3', 'LAMB1', 'THBS3', 'LAMA5', 'COL6A2'}, number: 16
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MYLK', 'FLNA', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCB', 'JUN'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCB', 'JUN', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TNC', 'PDGFA', 'AKT1', 'MET', 'COL4A2', 'LAMB3', 'LAMA1', 'COL4A1', 'RELN', 'LAMB2', 'ITGA3', 'LAMB1', 'THBS3', 'LAMA5', 'COL6A2'}, number: 15
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TNC', 'PDGFA', 'AKT1', 'MET', 'COL4A2', 'LAMB3', 'LAMA1', 'COL4A1', 'RELN', 'LAMB2', 'ITGA3', 'LAMB1', 'THBS3', 'LAMA5', 'COL6A2'}, number: 15
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FGFR1', 'TGFBR2', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'FGFR1', 'CDKN1A'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FGFR1', 'TGFBR2', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FGFR1', 'TGFBR2', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FGFR1', 'TGFBR2', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FGFR1', 'TGFBR2', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'FGFR1', 'CDKN1A', 'DDIT4'}, number: 7
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'TSC2', 'TGFBR2', 'SESN2', 'CDKN1A', 'DDIT4'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFBR2', 'CDKN1A', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'TGFBR2', 'TSC2', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'TGFBR2', 'CDKN1A'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'FGFR1', 'CDKN1A', 'DDIT4'}, number: 7
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'FGFR1', 'CDKN1A', 'DDIT4'}, number: 7
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'TLR2', 'TGFBR2', 'MAP3K1', 'TIRAP', 'JUN'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL6', 'MAPK14', 'BAX', 'AKT1', 'MAP3K1', 'CDKN1A', 'JUN', 'JAK1'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'JUN', 'JAK1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'TLR2', 'TGFBR2', 'MAP3K1', 'TIRAP', 'JUN'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'TLR2', 'TGFBR2', 'MAP3K1', 'TIRAP', 'JUN'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAPK14', 'PRKCB', 'AKT1', 'MAP3K1', 'JUN', 'JAK1'}, number: 6
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'TYK2', 'IL6', 'JAK1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'TLR2', 'TGFBR2', 'MAP3K1', 'TIRAP', 'JUN'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'AKT1', 'MAP3K1', 'CDKN1A', 'JUN'}, number: 5
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'TLR2', 'TGFBR2', 'MAP3K1', 'TIRAP', 'JUN'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'AKT1', 'MAP3K1', 'CDKN1A', 'JUN'}, number: 5
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'DDB1', 'CDKN1A', 'AKT1'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'PRKCB', 'AKT1', 'TLR2', 'CDKN1A', 'JAK1'}, number: 6
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'AKT1', 'MAP3K1', 'CDKN1A', 'JUN'}, number: 5
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'TYK2', 'MAPK14', 'JAK1', 'AKT1'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAPK14', 'PRKCB', 'BAX', 'TGFBR2', 'JUN', 'CDKN1A', 'DDB1'}, number: 7
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'AKT1', 'TGFBR2', 'MAP3K1', 'CDKN1A', 'JUN'}, number: 6
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP3K1', 'JUN', 'MAPK14', 'AKT1'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK14', 'IL6', 'PRKCB', 'AKT1', 'TGFBR2', 'MAP3K1', 'JUN', 'JAK1'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2', 'CDKN1A', 'AKT1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A', 'IL6', 'JAK1', 'AKT1'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'AKT1', 'TLR2', 'CDKN1A', 'JAK1'}, number: 5
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'TGFBR2', 'MAPK14', 'FLNA'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR3', 'TGFBR2', 'SERPINE1'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'TGFBR2', 'MAPK14', 'FLNA'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'TGFBR2', 'MAPK14', 'FLNA'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'TGFBR2', 'MAPK14', 'FLNA'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'TGFBR2', 'MAPK14', 'FLNA'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'FLNA', 'MAPK14'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFBR2', 'MAPK14', 'SERPINE1'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFBR3', 'TGFBR2', 'MAPK14'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'DDIT3', 'JUN'}, number: 5
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'BAX', 'DDIT3', 'JUN', 'JAK1'}, number: 7
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'JAK1'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'DDIT3', 'JUN'}, number: 5
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'IL6'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'DDIT3', 'JUN'}, number: 5
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'MAPK14', 'JAK1', 'AKT1'}, number: 4
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'TYK2', 'IL6', 'JAK1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'IL6'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'DDIT3', 'JUN'}, number: 5
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'JUN', 'BAX'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'DDIT3', 'JUN'}, number: 5
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'DDIT3', 'JUN', 'BAX'}, number: 4
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'IL6'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'BAX'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'JAK1', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'JUN', 'BAX'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'IL6'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'TYK2', 'MAPK14', 'JAK1', 'AKT1'}, number: 4
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'MAPK14', 'BAX'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'DDIT3', 'JUN', 'BAX'}, number: 4
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'MAPK14', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK14', 'IL6', 'AKT1', 'JUN', 'JAK1'}, number: 5
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'DDIT3', 'IL6', 'JAK1', 'AKT1'}, number: 4
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'JAK1', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'FGFR1', 'DUSP1', 'JUN'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'IL6', 'MAPK14', 'NDRG1', 'RPS6KA1', 'AKT1', 'COL4A1', 'FGFR1', 'RPS6KB1', 'JUN'}, number: 10
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'FGFR1', 'DUSP1', 'JUN'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'FGFR1', 'DUSP1', 'JUN'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'PRKCB', 'MAPK14', 'AKT1', 'RPS6KA1', 'ABL1', 'RPS6KB1', 'JUN'}, number: 8
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'FGFR1', 'DUSP1', 'JUN'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN', 'ABL1', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL6', 'MAPK14', 'AKT1', 'FGFR1', 'DUSP1', 'JUN'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN', 'ABL1', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'ABL1', 'PARP1', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'IL6', 'PRKCB', 'AKT1', 'ABL1', 'COL4A1', 'FGFR1', 'RPS6KB1'}, number: 8
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN', 'ABL1', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1', 'RPS6KA1'}, number: 4
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RPS6KB1', 'MAPK14', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKCB', 'MAPK14', 'PARP1', 'JUN'}, number: 5
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'ABL1', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'AKT1', 'RPS6KA1', 'RPS6KB1', 'JUN'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'IL6', 'PRKCB', 'MAPK14', 'RPS6KA1', 'AKT1', 'RPS6KB1', 'JUN'}, number: 8
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1', 'RPS6KA1'}, number: 4
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'RPS6KB1', 'ACACA', 'AKT1'}, number: 4
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'IL6', 'AKT1', 'COL4A1', 'FGFR1', 'RPS6KB1', 'ACACA'}, number: 7
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'IL6', 'AKT1', 'COL4A1', 'FGFR1', 'RPS6KB1', 'ACACA'}, number: 7
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'IL6'}, number: 1
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FLNC', 'FLNA', 'FLNB'}, number: 3
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FLNC', 'FLNA', 'FLNB'}, number: 3
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FLNC', 'FLNA', 'FLNB'}, number: 3
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FLNC', 'FLNA', 'FLNB'}, number: 3
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FLNC', 'FLNA', 'FLNB'}, number: 3
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'FLNA'}, number: 1
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: NPHP1 Deletion Syndrome WP5399, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'DEPTOR', 'TSC2'}, number: 4
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ATG14', 'TSC1', 'MTOR', 'TSC2', 'DEPTOR'}, number: 5
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'DEPTOR', 'TSC2'}, number: 3
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2'}, number: 3
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'ACACA'}, number: 4
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'ACACA'}, number: 4
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'ACACA'}, number: 4
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'ASCC1', 'JUN', 'MAPK14'}, number: 4
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'ASCC1', 'JUN', 'MAPK14'}, number: 4
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neuroinflammation WP4919, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'BAX', 'TSC2', 'CDKN1A', 'DEPTOR'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'LIF', 'SERPINE1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'IRF9'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'CDKN1A', 'CCNG1', 'GADD45A'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45A', 'CDKN1A', 'PMAIP1', 'BAX'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'XRCC5', 'CDKN1A', 'GADD45A'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC2', 'CDKN1A', 'DEPTOR', 'DDIT4'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45A', 'CDKN1A', 'PMAIP1', 'BAX'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'SLC7A11', 'LIF', 'BAX', 'TSC2', 'CCNG1', 'IRF9', 'PMAIP1', 'GADD45A', 'XRCC5', 'CDKN1A', 'SESN2', 'DEPTOR', 'DDIT4', 'SERPINE1'}, number: 15
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'BAX', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'LIF', 'TSC2'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC2'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'SLC7A11', 'CDKN1A', 'TSC2'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'LIF', 'TSC2', 'CDKN1A', 'SERPINE1', 'DDIT4', 'GADD45A'}, number: 7
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'CDKN1A', 'TSC2', 'DDIT4'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TLR2', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 9
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'COL4A3', 'JAK1', 'MTOR', 'TSC1', 'MET', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 21
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JAK1'}, number: 1
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC', 'AKT1'}, number: 2
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TLR2', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 9
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 6
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TLR2', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 9
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'AKT1', 'JAK1', 'RPS6KB1'}, number: 4
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5', 'JAK1'}, number: 7
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'THBS3', 'LAMA5', 'LAMB2'}, number: 4
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 6
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TLR2', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 9
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PCK2', 'CDKN1A', 'AKT1'}, number: 3
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL6', 'PDGFA', 'AKT1', 'TLR2', 'FGFR1', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 9
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PCK2', 'CDKN1A', 'AKT1'}, number: 3
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 6
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TNC', 'PCK2', 'COL4A2', 'LAMA1', 'PIK3AP1', 'FGFR1', 'RELN', 'LAMB2', 'PKN1', 'THBS3', 'LAMB3', 'DDIT4', 'COL6A2', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'COL4A3', 'JAK1', 'MTOR', 'TSC1', 'GNB1', 'MET', 'TLR2', 'G6PC3', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 32
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PCK2', 'CDKN1A', 'AKT1'}, number: 3
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 6
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'JAK1', 'RPS6KB1'}, number: 3
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'TSC2', 'PCK2', 'CDKN1A', 'DDIT4'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PCK2', 'CDKN1A', 'AKT1'}, number: 3
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'IL6', 'AKT1', 'TSC2', 'RPS6KB1', 'JAK1'}, number: 6
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'CDKN1A', 'RPS6KB1'}, number: 6
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TNC', 'PCK2', 'COL4A2', 'LAMA1', 'FGFR1', 'RELN', 'LAMB2', 'THBS3', 'LAMB3', 'DDIT4', 'COL6A2', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'JAK1', 'MTOR', 'TSC1', 'GNB1', 'MET', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 27
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TNC', 'PCK2', 'COL4A2', 'LAMA1', 'PIK3AP1', 'FGFR1', 'RELN', 'LAMB2', 'PKN1', 'THBS3', 'LAMB3', 'DDIT4', 'COL6A2', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'COL4A3', 'JAK1', 'MTOR', 'TSC1', 'GNB1', 'MET', 'TLR2', 'G6PC3', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 32
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'THBS3', 'LAMA5'}, number: 6
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'MAPK14'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'ABCC3'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NQO1', 'SRXN1', 'HMOX1', 'ABCC3'}, number: 4
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAPK14', 'SRXN1', 'ABCC3', 'HMOX1', 'NQO1', 'JUN'}, number: 6
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SRXN1', 'ABCC3', 'HMOX1', 'NQO1', 'JUN'}, number: 5
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NQO1', 'SRXN1', 'HMOX1', 'ABCC3'}, number: 4
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MKNK2', 'MAPK14', 'IL6', 'PDGFA', 'AKT1', 'MAP3K1', 'FGFR1', 'DDIT3', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'WNT10A', 'COL4A2', 'LAMA1', 'HBEGF', 'FGFR1', 'LAMB2', 'LAMB3', 'DEPTOR', 'MKNK2', 'LIN28B', 'NDRG1', 'PDGFA', 'TSC2', 'COL4A1', 'DDIT3', 'RPS6KB1', 'MAX', 'COL4A3', 'JAK1', 'MTOR', 'TSC1', 'RPS6KA1', 'MET', 'FOSL1', 'PLAU', 'FOXM1', 'CSNK2A1', 'CDH16', 'MAP3K1', 'WWC1', 'CIT', 'EZH2', 'EIF4G1', 'LAMB1', 'JUN', 'LAMA5', 'SLC3A2', 'DVL3', 'SETDB1', 'MAPK14', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1', 'BAP1', 'SLC7A5', 'CHD8', 'ITPR3'}, number: 50
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'JAK1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH16', 'AKT1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MKNK2', 'MAPK14', 'IL6', 'PDGFA', 'AKT1', 'MAP3K1', 'FGFR1', 'DDIT3', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MKNK2', 'MAPK14', 'IL6', 'PDGFA', 'AKT1', 'MAP3K1', 'FGFR1', 'DDIT3', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'RPS6KA1', 'AKT1', 'MAP3K1', 'RPS6KB1', 'JUN', 'JAK1'}, number: 8
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5', 'JAK1'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MKNK2', 'MAPK14', 'IL6', 'PDGFA', 'AKT1', 'MAP3K1', 'FGFR1', 'DDIT3', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'FOSL1', 'PLAU', 'MAP3K1', 'CDKN1A', 'JUN'}, number: 9
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MKNK2', 'MAPK14', 'IL6', 'PDGFA', 'AKT1', 'MAP3K1', 'FGFR1', 'DDIT3', 'LAMB2', 'LAMB1', 'MAX', 'JUN', 'LAMA5'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'FOSL1', 'PLAU', 'MAP3K1', 'DDIT3', 'CDKN1A', 'JUN'}, number: 10
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'CDKN1A', 'BAX'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'DEPTOR', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'JAK1', 'COL4A3', 'MTOR', 'TSC1', 'MET', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 22
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'FOSL1', 'PLAU', 'MAP3K1', 'CDKN1A', 'JUN'}, number: 9
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'RPS6KA1', 'TSC2', 'AKT1', 'RPS6KB1'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'RPS6KB1', 'JAK1', 'ITPR3'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'DVL3', 'MAPK14', 'BAX', 'TSC2', 'WNT10A', 'FOSL1', 'PLAU', 'CSNK2A1', 'HBEGF', 'JUN', 'CDKN1A', 'DEPTOR', 'CHD8'}, number: 14
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'BAX', 'WNT10A', 'AKT1', 'FOSL1', 'PLAU', 'MAP3K1', 'HBEGF', 'DDIT3', 'CDKN1A', 'JUN'}, number: 11
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'MAPK14', 'RPS6KA1', 'TSC2', 'AKT1', 'CSNK2A1', 'MAP3K1', 'RPS6KB1', 'JUN'}, number: 10
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'IL6', 'RPS6KA1', 'TSC2', 'AKT1', 'CSNK2A1', 'MAP3K1', 'RPS6KB1', 'JUN', 'JAK1'}, number: 11
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'RPS6KA1', 'TSC2', 'AKT1', 'RPS6KB1'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'HBEGF', 'CDKN1A', 'RPS6KB1'}, number: 7
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'TSC2', 'COL4A1', 'DDIT3', 'RPS6KB1', 'JAK1', 'MTOR', 'TSC1', 'MET', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 21
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL4A2', 'LAMA1', 'FGFR1', 'LAMB2', 'LAMB3', 'PDGFA', 'TSC2', 'COL4A1', 'RPS6KB1', 'JAK1', 'COL4A3', 'MTOR', 'TSC1', 'MET', 'LAMB1', 'LAMA5', 'IL6', 'AKT1', 'CDKN1A', 'ITGA3', 'EFNA1'}, number: 21
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'IL6', 'PDGFA', 'LAMB2', 'LAMB1', 'LAMA5'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMA5', 'LAMB2', 'AKT1'}, number: 3
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'COL4A3', 'AKT1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMA5'}, number: 6
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMA5', 'LAMB2', 'AKT1'}, number: 3
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMA5', 'LAMB2', 'AKT1'}, number: 3
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'DNM1', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMA5', 'LAMB2', 'AKT1'}, number: 3
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMA5', 'LAMB2', 'AKT1'}, number: 3
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A3', 'AKT1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMA5'}, number: 6
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMA5'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL4A3', 'AKT1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMA5'}, number: 6
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'LAMA5', 'LAMB2'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'AKT1', 'LAMB2', 'LAMB1', 'MAX', 'LAMA5', 'GADD45A'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'AKT1', 'COL4A2', 'LAMA1', 'COL4A1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMB1', 'MAX', 'LAMB3', 'LAMA5', 'COL4A3'}, number: 13
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'AKT1', 'LAMB2', 'LAMB1', 'MAX', 'LAMA5', 'GADD45A'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'AKT1', 'LAMB2', 'LAMB1', 'MAX', 'LAMA5', 'GADD45A'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'AKT1', 'LAMB2', 'LAMB1', 'MAX', 'LAMA5', 'GADD45A'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'GADD45A', 'CDKN1A', 'AKT1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'AKT1', 'LAMB2', 'LAMB1', 'MAX', 'LAMA5', 'GADD45A'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'GADD45A', 'CDKN1A', 'AKT1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'GADD45A', 'CDKN1A', 'AKT1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'AKT1', 'COL4A2', 'LAMA1', 'COL4A1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5', 'COL4A3'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'GADD45A', 'CDKN1A', 'AKT1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GADD45A', 'CDKN1A', 'BAX'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'GADD45A', 'CDKN1A', 'AKT1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1', 'COL4A2', 'LAMA1', 'COL4A1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5', 'GADD45A'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1', 'COL4A2', 'LAMA1', 'COL4A1', 'CDKN1A', 'ITGA3', 'LAMB2', 'LAMB1', 'LAMB3', 'LAMA5', 'COL4A3'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): {'LAMB1', 'LAMA5', 'LAMB2'}, number: 3
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN1A', 'BAX'}, number: 2
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'ABL1'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'ABL1', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 5
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'ABL1', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 5
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'ABL1', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 5
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A', 'ABL1'}, number: 2
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'ABL1', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 5
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GADD45A', 'CDKN1A', 'PMAIP1', 'BAX'}, number: 4
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'ABL1', 'PMAIP1', 'CDKN1A', 'GADD45A'}, number: 5
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A', 'GADD45A'}, number: 2
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: TP53 Network WP1742, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'RPS6KB1', 'AKT1'}, number: 3
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1', 'DDIT4'}, number: 6
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RPS6KB1', 'AKT1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'TSC2', 'DDIT4'}, number: 3
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'RPS6KB1', 'TSC2', 'AKT1'}, number: 4
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1', 'DDIT4'}, number: 6
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'AKT1', 'TSC2', 'RPS6KB1', 'DDIT4'}, number: 6
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FGFR1', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC1', 'MAPK14', 'RPS6KA1', 'TSC2', 'FGFR1', 'RPS6KB1'}, number: 7
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FGFR1', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FGFR1', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'RPS6KB1', 'MAPK14', 'RPS6KA1'}, number: 4
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FGFR1', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FGFR1', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'FGFR1', 'RPS6KB1'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'TSC1', 'RPS6KA1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14', 'RPS6KB1'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'TSC1', 'MAPK14', 'RPS6KA1', 'TSC2', 'RPS6KB1'}, number: 6
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'RPS6KA1', 'TSC2', 'RPS6KB1', 'ADCY3'}, number: 6
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'TSC1', 'RPS6KA1', 'TSC2', 'RPS6KB1'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'RPS6KB1'}, number: 4
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'FGFR1', 'RPS6KB1'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'TSC1', 'TSC2', 'FGFR1', 'RPS6KB1'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'AIMP2', 'HMOX1', 'NQO1', 'CEBPB'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NQO1', 'SLC7A11', 'HMOX1'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'AIMP2', 'HMOX1', 'NQO1', 'CEBPB'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'AIMP2', 'HMOX1', 'NQO1', 'CEBPB'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'JUN', 'FLNB'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'NDRG1', 'AKT1', 'PLAU', 'HBEGF', 'EIF4G1', 'RPS6KB1', 'JUN'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'JUN', 'FLNB'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1494, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'JUN', 'FLNB'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'ARF6', 'CFL1', 'IQGAP1', 'PRKCB', 'AKT1', 'MAPK14', 'ABL1', 'RPS6KB1', 'JUN'}, number: 10
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1549, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TXNIP'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1586, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1587, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'JUN', 'FLNB'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PLAU', 'JUN', 'ABL1', 'AKT1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'JUN', 'FLNB'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'PLAU', 'ABL1', 'TXNIP', 'JUN'}, number: 5
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TXNIP'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1820, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1841, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/188, Title of overlapping gene(s): {'MTOR', 'JUN', 'MAPK14'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'ABL1', 'AKT1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'ARF6', 'PRKCB', 'AKT1', 'ABL1', 'RPS6KB1'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PLAU', 'JUN', 'ABL1', 'AKT1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2009, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'MAPK14', 'RPS6KB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKCB', 'MAPK14', 'PLAU', 'HBEGF', 'JUN'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'PLAU', 'TXNIP', 'ABL1', 'HBEGF', 'JUN'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'CFL1', 'MAPK14', 'AKT1', 'RPS6KB1', 'JUN'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'CFL1', 'PRKCB', 'MAPK14', 'AKT1', 'RPS6KB1', 'JUN'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'AKT1', 'HBEGF', 'RPS6KB1', 'ACACA'}, number: 5
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MTOR', 'ACACA', 'AKT1', 'RPS6KB1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MTOR', 'ACACA', 'AKT1', 'RPS6KB1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/87, Title of overlapping gene(s): set(), number: 0
Section 5.5.4 Tabulation gene overlap
In this section, a table is created that contains the number of overlapping genes and number of total genes in preparation for section 5.5.5.
final_geneoverlaptable_C1=pd.DataFrame.from_dict(overlapping_genes_betweenORA_and_significantKEs,orient='index')
Section 5.5.5 Percent overlap calculation
In this section, the percent overlap for the genesets are calculated.
Step 27. Lastly, we calculate the percent overlap and add the result as a column to the dataframe. This is first done by running a for loop to calculate the total number of genes belonging to the enriched pathways of ORA.
variable_count= {}
for index, row in exploded_df_ORApathwaytable.iterrows():
unique_KE = row['Term']
gene_expression_value = row['Genes']
if unique_KE not in variable_count:
variable_count[unique_KE] = 1
else:
variable_count[unique_KE] += 1
print("The total number of genes: ")
print(variable_count)
The total number of genes:
{'Pleural Mesothelioma WP5087': 50, 'VEGFA VEGFR2 Signaling WP3888': 44, 'Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668': 8, 'P53 Transcriptional Gene Network WP4963': 15, 'Focal Adhesion WP306': 24, 'Primary Focal Segmental Glomerulosclerosis FSGS WP2572': 12, 'Small Cell Lung Cancer WP4658': 14, 'Alpha 6 Beta 4 Signaling WP244': 8, 'Macrophage Stimulating Protein MSP Signaling WP5353': 15, 'PI3K Akt Signaling WP4172': 32, 'ATM Signaling In Development And Disease WP3878': 9, 'Thermogenesis WP4321': 15, 'Transcriptional Activation By NRF2 In Response To Phytochemicals WP3': 5, 'Cancer Pathways WP5434': 42, 'Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612': 6, 'Hepatitis B Infection WP4666': 17, 'Androgen Receptor Network In Prostate Cancer WP2263': 14, 'DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180': 10, 'Head And Neck Squamous Cell Carcinoma WP4674': 11, 'Focal Adhesion PI3K Akt mTOR Signaling WP3932': 28, 'BDNF TrkB Signaling WP3676': 7, 'Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577': 8, 'IL26 Signaling WP5347': 8, 'NPHP1 Deletion Syndrome WP5399': 4, 'Neuroinflammation WP4919': 4, 'Target Of Rapamycin Signaling WP1471': 7, 'TP53 Network WP1742': 5}
Step 28. The result is converted into a dataframe and added to the final dataframe.
variable_count_df=pd.DataFrame.from_dict(variable_count,orient='index')
reset_variable_count_df = variable_count_df.reset_index()
Reset_variable_count_df=reset_variable_count_df.copy()
Reset_variable_count_df.columns = ['Term', 'Total number of genes']
Genesetoverlaptable_C1=final_geneoverlaptable_C1.reset_index(level=[1])
Genesetoverlaptable_C1.reset_index(inplace=True)
Genesetoverlaptable_C1.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C1=pd.merge(Reset_variable_count_df,Genesetoverlaptable_C1, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_C1.loc[:,'Percent geneset overlap']= tabulation_C1.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_C1
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Pleural Mesothelioma WP5087 | 50 | https://identifiers.org/aop.events/1087 | {MKNK2, MAPK14, IL6, PDGFA, AKT1, MAP3K1, FGFR... | 13 | 26.0 |
1 | Pleural Mesothelioma WP5087 | 50 | https://identifiers.org/aop.events/1090 | {BAX, WNT10A, COL4A2, LAMA1, HBEGF, FGFR1, LAM... | 50 | 100.0 |
2 | Pleural Mesothelioma WP5087 | 50 | https://identifiers.org/aop.events/1271 | {JUN, JAK1} | 2 | 4.0 |
3 | Pleural Mesothelioma WP5087 | 50 | https://identifiers.org/aop.events/1392 | {MAPK14} | 1 | 2.0 |
4 | Pleural Mesothelioma WP5087 | 50 | https://identifiers.org/aop.events/1457 | {CDH16, AKT1} | 2 | 4.0 |
... | ... | ... | ... | ... | ... | ... |
994 | TP53 Network WP1742 | 5 | https://identifiers.org/aop.events/389 | {} | 0 | 0.0 |
995 | TP53 Network WP1742 | 5 | https://identifiers.org/aop.events/41 | {CDKN1A} | 1 | 20.0 |
996 | TP53 Network WP1742 | 5 | https://identifiers.org/aop.events/457 | {CDKN1A, GADD45A} | 2 | 40.0 |
997 | TP53 Network WP1742 | 5 | https://identifiers.org/aop.events/484 | {CDKN1A} | 1 | 20.0 |
998 | TP53 Network WP1742 | 5 | https://identifiers.org/aop.events/87 | {} | 0 | 0.0 |
999 rows × 6 columns
Section 6. Comparison 2: diquat dibromide timepoint 2
In this section, Steps 14 to step 28 are repeated for comparison 2.
Section 6.1 Calculation of n variable
Step 29. The table containing the differential expressed genes for comparison 2 is loaded with the filter for significance.
Comparison2_DEG= pd.read_csv('topTable_X48_Diquat_30 - X48_vehicle...control_.0.TSV.tsv',sep='\t')
Comparison_2_DEG= Comparison2_DEG[Comparison2_DEG['adj. p-value'] < 0.05]
Comparison_2_DEG = Comparison_2_DEG.copy()
Comparison_2_DEG.rename(columns={Comparison_2_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison_2_DEG['Entrez.Gene'] = Comparison_2_DEG['Entrez.Gene'].astype(str)
Comparison_2_DEG
Entrez.Gene | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|
0 | 3162 | 10.077089 | 5.104026 | 0.088921 | 3.820970e-24 | 7.798982e-20 |
1 | 90637 | 9.408076 | 5.551762 | 0.115706 | 1.329066e-22 | 1.356378e-18 |
2 | 27063 | 4.810138 | 5.208681 | 0.118688 | 7.756080e-22 | 5.276979e-18 |
3 | 1649 | 10.590937 | 2.895794 | 0.069728 | 2.305203e-21 | 1.170734e-17 |
4 | 7296 | 11.342399 | 2.441458 | 0.059977 | 3.421953e-21 | 1.170734e-17 |
... | ... | ... | ... | ... | ... | ... |
5645 | 100874241 | 3.137971 | 0.397600 | 0.156554 | 1.370011e-02 | 4.952763e-02 |
5646 | 54914 | 7.751738 | -0.207327 | 0.081641 | 1.370609e-02 | 4.954045e-02 |
5647 | 55253 | 8.001319 | 0.268193 | 0.105664 | 1.374844e-02 | 4.967858e-02 |
5648 | 4298 | 6.794105 | -0.275971 | 0.108729 | 1.374917e-02 | 4.967858e-02 |
5649 | 221180 | 3.241168 | 0.340051 | 0.134055 | 1.379744e-02 | 4.984415e-02 |
5650 rows × 6 columns
Step 30. The results of the DEG table are next integrated into the mergeddataframe dataframe. This is followed by adjustment of the dataframe columns to remove non-relevant columns.
merged_dataframe_DEG_48h= pd.merge(mergeddataframe,Comparison_2_DEG, on='Entrez.Gene')
merged_dataframe_DEG_48h
KEID | WPtitle | WPID | Gene.Symbol | Entrez.Gene | N | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CX3CL1 | 6376 | 129 | 7.722092 | -0.368561 | 0.079671 | 8.260884e-05 | 6.527793e-04 |
1 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | MMP1 | 4312 | 129 | 5.852988 | 1.976149 | 0.144431 | 4.385852e-12 | 5.812962e-10 |
2 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | NFKB1 | 4790 | 129 | 7.959930 | -0.313795 | 0.085200 | 8.517660e-04 | 4.723009e-03 |
3 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | IL11 | 3589 | 129 | 5.078408 | 0.949101 | 0.086467 | 2.274791e-10 | 1.612179e-08 |
4 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | IL1A | 3552 | 129 | 4.538787 | 1.144965 | 0.112540 | 8.483914e-10 | 4.692823e-08 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
5970 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | RPS6KA1 | 6195 | 398 | 6.892861 | -0.667476 | 0.092076 | 2.075458e-07 | 4.385318e-06 |
5971 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | TSC2 | 7249 | 398 | 6.606801 | -0.842386 | 0.170700 | 3.895555e-05 | 3.458554e-04 |
5972 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MTOR | 2475 | 398 | 6.234285 | -0.404451 | 0.075657 | 1.456341e-05 | 1.523014e-04 |
5973 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EEF2K | 29904 | 398 | 7.202279 | -0.547593 | 0.093362 | 4.330575e-06 | 5.566807e-05 |
5974 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EIF4EBP1 | 1978 | 398 | 9.439758 | 0.287191 | 0.073124 | 4.640729e-04 | 2.814079e-03 |
5975 rows × 11 columns
Step 31. The following for loop for the key events is run to retrieve the n variable. It is comparable to the for loop of N, but adds a condition to check for significance of genes by p adjusted value being smaller than 0.05.
variable_n_dictionary_count2= {}
for index, row in merged_dataframe_DEG_48h.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['adj. p-value']
if gene_expression_value < 0.05:
if unique_KE not in variable_n_dictionary_count2:
variable_n_dictionary_count2[unique_KE] = 1
else:
variable_n_dictionary_count2[unique_KE] += 1
print("The total number of significant genes: ")
print(variable_n_dictionary_count2)
The total number of significant genes:
{'https://identifiers.org/aop.events/486': 23, 'https://identifiers.org/aop.events/875': 50, 'https://identifiers.org/aop.events/2007': 53, 'https://identifiers.org/aop.events/1495': 59, 'https://identifiers.org/aop.events/105': 54, 'https://identifiers.org/aop.events/1816': 54, 'https://identifiers.org/aop.events/1668 ': 32, 'https://identifiers.org/aop.events/244 ': 164, 'https://identifiers.org/aop.events/1814 ': 99, 'https://identifiers.org/aop.events/888': 11, 'https://identifiers.org/aop.events/1574': 2, 'https://identifiers.org/aop.events/41': 101, 'https://identifiers.org/aop.events/1270': 13, 'https://identifiers.org/aop.events/1086': 30, 'https://identifiers.org/aop.events/1487 ': 7, 'https://identifiers.org/aop.events/1539': 73, 'https://identifiers.org/aop.events/201': 13, 'https://identifiers.org/aop.events/457': 180, 'https://identifiers.org/aop.events/55': 60, 'https://identifiers.org/aop.events/188': 4, 'https://identifiers.org/aop.events/618': 61, 'https://identifiers.org/aop.events/389': 13, 'https://identifiers.org/aop.events/177': 162, 'https://identifiers.org/aop.events/2013': 31, 'https://identifiers.org/aop.events/2006': 81, 'https://identifiers.org/aop.events/1497': 149, 'https://identifiers.org/aop.events/870': 7, 'https://identifiers.org/aop.events/1669': 134, 'https://identifiers.org/aop.events/1115': 14, 'https://identifiers.org/aop.events/202': 66, 'https://identifiers.org/aop.events/1917': 65, 'https://identifiers.org/aop.events/1633': 298, 'https://identifiers.org/aop.events/1392': 42, 'https://identifiers.org/aop.events/1815': 32, 'https://identifiers.org/aop.events/386': 109, 'https://identifiers.org/aop.events/1944': 6, 'https://identifiers.org/aop.events/1582': 20, 'https://identifiers.org/aop.events/1896': 117, 'https://identifiers.org/aop.events/1172': 8, 'https://identifiers.org/aop.events/1496': 93, 'https://identifiers.org/aop.events/68': 24, 'https://identifiers.org/aop.events/1493': 186, 'https://identifiers.org/aop.events/265': 69, 'https://identifiers.org/aop.events/1817': 65, 'https://identifiers.org/aop.events/1819': 16, 'https://identifiers.org/aop.events/1750': 149, 'https://identifiers.org/aop.events/1901': 7, 'https://identifiers.org/aop.events/1848': 38, 'https://identifiers.org/aop.events/1847': 1, 'https://identifiers.org/aop.events/1365': 65, 'https://identifiers.org/aop.events/890': 14, 'https://identifiers.org/aop.events/1587': 14, 'https://identifiers.org/aop.events/1457': 8, 'https://identifiers.org/aop.events/1586': 5, 'https://identifiers.org/aop.events/149': 298, 'https://identifiers.org/aop.events/1575': 65, 'https://identifiers.org/aop.events/1579': 84, 'https://identifiers.org/aop.events/87': 28, 'https://identifiers.org/aop.events/249': 14, 'https://identifiers.org/aop.events/288': 14, 'https://identifiers.org/aop.events/209': 252, 'https://identifiers.org/aop.events/1498': 49, 'https://identifiers.org/aop.events/1499': 9, 'https://identifiers.org/aop.events/1500': 64, 'https://identifiers.org/aop.events/1488': 54, 'https://identifiers.org/aop.events/1494': 20, 'https://identifiers.org/aop.events/52': 68, 'https://identifiers.org/aop.events/381': 66, 'https://identifiers.org/aop.events/484': 211, 'https://identifiers.org/aop.events/388': 50, 'https://identifiers.org/aop.events/1262': 65, 'https://identifiers.org/aop.events/1945': 350, 'https://identifiers.org/aop.events/2009': 20, 'https://identifiers.org/aop.events/2012': 64, 'https://identifiers.org/aop.events/1770': 22, 'https://identifiers.org/aop.events/1818': 61, 'https://identifiers.org/aop.events/1752': 21, 'https://identifiers.org/aop.events/887': 33, 'https://identifiers.org/aop.events/1585': 18, 'https://identifiers.org/aop.events/214': 15, 'https://identifiers.org/aop.events/1271': 17, 'https://identifiers.org/aop.events/1087': 149, 'https://identifiers.org/aop.events/1538': 14, 'https://identifiers.org/aop.events/898': 65, 'https://identifiers.org/aop.events/195': 54, 'https://identifiers.org/aop.events/459': 38, 'https://identifiers.org/aop.events/1670': 32, 'https://identifiers.org/aop.events/759': 16, 'https://identifiers.org/aop.events/1090': 159, 'https://identifiers.org/aop.events/344': 8, 'https://identifiers.org/aop.events/1841': 4, 'https://identifiers.org/aop.events/1820': 14, 'https://identifiers.org/aop.events/896': 15, 'https://identifiers.org/aop.events/1549': 27, 'https://identifiers.org/aop.events/357': 5, 'https://identifiers.org/aop.events/352': 92}
Step 32. The output of the n variable dictionary is saved as a dataframe and integrated as a separate column into a dataframe.
n_variable_dataframe2=pd.DataFrame.from_dict(variable_n_dictionary_count2,orient='index')
n_variable_dataframe2
0 | |
---|---|
https://identifiers.org/aop.events/486 | 23 |
https://identifiers.org/aop.events/875 | 50 |
https://identifiers.org/aop.events/2007 | 53 |
https://identifiers.org/aop.events/1495 | 59 |
https://identifiers.org/aop.events/105 | 54 |
... | ... |
https://identifiers.org/aop.events/1820 | 14 |
https://identifiers.org/aop.events/896 | 15 |
https://identifiers.org/aop.events/1549 | 27 |
https://identifiers.org/aop.events/357 | 5 |
https://identifiers.org/aop.events/352 | 92 |
96 rows × 1 columns
n_variable_dataframe_reset2 = n_variable_dataframe2.reset_index()
n_variable_dataframe_reset2.columns = ['KEID', 'n']
n_variable_dataframe_reset2
KEID | n | |
---|---|---|
0 | https://identifiers.org/aop.events/486 | 23 |
1 | https://identifiers.org/aop.events/875 | 50 |
2 | https://identifiers.org/aop.events/2007 | 53 |
3 | https://identifiers.org/aop.events/1495 | 59 |
4 | https://identifiers.org/aop.events/105 | 54 |
... | ... | ... |
91 | https://identifiers.org/aop.events/1820 | 14 |
92 | https://identifiers.org/aop.events/896 | 15 |
93 | https://identifiers.org/aop.events/1549 | 27 |
94 | https://identifiers.org/aop.events/357 | 5 |
95 | https://identifiers.org/aop.events/352 | 92 |
96 rows × 2 columns
merged_dataframe3= pd.merge(mergeddataframeDEG, n_variable_dataframe_reset2, on='KEID')
Section 6.2. Calculation of variable B and variable b.
In this section, variable B and variable b are calculated.
Step 33. Variable B is calculated by taking the length of the dataframe which includes all genes in 1 DEG table.
B=len(Comparison2_DEG.index)
B
20411
Step 34. Variable b is calculated by taking the length of the dataframe which includes all genes in 1 DEG table with the condition for significance.
Comparison2_DEG_filtered=Comparison2_DEG[Comparison2_DEG['adj. p-value'] < 0.05]
b=len(Comparison2_DEG_filtered)
b
5650
Section 6.3. Calculation of enrichment score and hypergeometric p-value
In this section, the enrichment score and hypergeometric p-value will be calculated.
Step 35. The final dataframe will be created that contains the KEID and the four variables: variable N, variable n, variable B and variable b.
Final_dataframe_ES= merged_dataframe3.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([20411 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([5650 for x in range(len(Final_dataframe_ES.index))])
Final_Dataframe_ES=Final_dataframe_ES.drop_duplicates(subset=['KEID'],keep='first')
Final_Dataframe_ES.reset_index(drop=True,inplace=True)
Copy_Final_DataFrame_ES=Final_Dataframe_ES.copy()
Step 36. The follow for loop will be used to calculate the enrichment score for individual key events and the results will be saved as a separate column into the dataframe.
def calculate_Enrichment_Score(row):
return f"{(row['n']/row['N'])/(row['b']/row['B'])}"
Copy_Final_DataFrame_ES.loc[:,'Enrichmentscore']= Copy_Final_DataFrame_ES.apply(calculate_Enrichment_Score,axis=1)
Copy_Final_DataFrame_ES
KEID | N | n | B | b | Enrichmentscore | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | 129 | 23 | 20411 | 5650 | 0.6441009809974617 |
1 | https://identifiers.org/aop.events/875 | 169 | 50 | 20411 | 5650 | 1.0688066188406555 |
2 | https://identifiers.org/aop.events/2007 | 184 | 53 | 20411 | 5650 | 1.0405761831473643 |
3 | https://identifiers.org/aop.events/1495 | 253 | 59 | 20411 | 5650 | 0.8424561894434922 |
4 | https://identifiers.org/aop.events/105 | 165 | 54 | 20411 | 5650 | 1.1822944489139178 |
... | ... | ... | ... | ... | ... | ... |
88 | https://identifiers.org/aop.events/1820 | 57 | 14 | 20411 | 5650 | 0.887297003570874 |
89 | https://identifiers.org/aop.events/896 | 82 | 15 | 20411 | 5650 | 0.6608353118929419 |
90 | https://identifiers.org/aop.events/1549 | 101 | 27 | 20411 | 5650 | 0.9657355647069131 |
91 | https://identifiers.org/aop.events/357 | 21 | 5 | 20411 | 5650 | 0.860134850400337 |
92 | https://identifiers.org/aop.events/352 | 398 | 92 | 20411 | 5650 | 0.8350655934539956 |
93 rows × 6 columns
Step 37. The following for loop will be used to calculate the hypergeometric p-value for individual Key Events and save the result as a separate column into the dataframe. This requires some in between steps for manipulation of the dataframe.
p_value_dataframe2=[]
for index, row in Copy_Final_DataFrame_ES.iterrows():
M = row['B']
n = row['b']
N = row['N']
k = row['n']
hpd = ss.hypergeom(M, n, N)
p = hpd.pmf(k)
p_value_dataframe2.append(p)
Hypergeometricpvalue_dataframe2=pd.DataFrame(p_value_dataframe2)
Hypergeometricpvalue_dataframe2.columns= ['Hypergeometric p-value']
Hypergeometricpvalue_dataframe2
Hypergeometric p-value | |
---|---|
0 | 0.002940 |
1 | 0.057877 |
2 | 0.061460 |
3 | 0.016894 |
4 | 0.023871 |
... | ... |
88 | 0.105920 |
89 | 0.015802 |
90 | 0.087575 |
91 | 0.185207 |
92 | 0.005343 |
93 rows × 1 columns
merged_finaltable=pd.concat([Copy_Final_DataFrame_ES,Hypergeometricpvalue_dataframe2],axis=1)
Section 6.4. Filtering the results for significant KEs
In this section, the results will be filtered to only include significant KEs. Significant KEs have an enrichment score above 1 and a hypergeometric p-value below 0.05.
Step 38. Lastly, we filter the results to showcase the significant KEs for comparison 2.
filteredversion_C2= merged_finaltable[(merged_finaltable['Enrichmentscore']>str(1))& (merged_finaltable['Hypergeometric p-value'] < 0.05)]
# Ensure numeric types
filteredversion_C2['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C2['Hypergeometric p-value'], errors='coerce')
filteredversion_C2['Enrichmentscore'] = pd.to_numeric(filteredversion_C2['Enrichmentscore'], errors='coerce')
filteredversion_C2['combined_score'] = -np.log(filteredversion_C2['Hypergeometric p-value']) * filteredversion_C2['Enrichmentscore']
# Sort by combined score (highest first)
C2_sorted = filteredversion_C2.sort_values(by='combined_score', ascending=False)
C2_sorted
# Show top rows
C2_sorted.to_excel('ConsistentKE-Diquat-T2.xlsx')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\2247094924.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C2['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C2['Hypergeometric p-value'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\2247094924.py:3: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C2['Enrichmentscore'] = pd.to_numeric(filteredversion_C2['Enrichmentscore'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\2247094924.py:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C2['combined_score'] = -np.log(filteredversion_C2['Hypergeometric p-value']) * filteredversion_C2['Enrichmentscore']
Section 6.5. Calculation of percent gene overlap to ORA
Section 6.5.1 Creation of the significant KEs table
In this section, you merge the dataframes to retrieve the genes connected to only the significant KEs.
Step 39. The significant KE table is created using the significan KEs from the previous merggeddataframe_final.
mergeddataframe_final2=mergeddataframe_final.copy()
mergeddataframe_final2['KEID'] = mergeddataframe_final2['KEID'].str.strip()
significantKEID_genetable2=mergeddataframe_final2[(mergeddataframe_final2['KEID'] == 'https://identifiers.org/aop.events/105')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1816') |(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/244')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1814')|(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/41') |(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1539')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/457')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/177')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2006')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1497')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1669')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1115')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/202')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1917')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1633')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1392')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1815')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/386')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1582')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1896')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/68')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1750')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/890')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/149')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/249')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/209')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/52')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/381')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/484')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1945')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1770')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1585')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1087')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1538')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1670')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1090')]
significantKEIDgenetable2=significantKEID_genetable2.drop(columns={'WPtitle','ID'})
significantKEIDgenetable2
KEID | gene | Entrez.Gene | |
---|---|---|---|
735 | https://identifiers.org/aop.events/105 | SDHB | 6390 |
736 | https://identifiers.org/aop.events/105 | ATP5PD | 10476 |
737 | https://identifiers.org/aop.events/105 | ATP5MG | 10632 |
738 | https://identifiers.org/aop.events/105 | COX15 | 1355 |
739 | https://identifiers.org/aop.events/105 | ATP5PO | 539 |
... | ... | ... | ... |
20172 | https://identifiers.org/aop.events/1090 | SETD5 | 55209 |
20173 | https://identifiers.org/aop.events/1090 | CTNNA3 | 29119 |
20174 | https://identifiers.org/aop.events/1090 | MAD1L1 | 8379 |
20175 | https://identifiers.org/aop.events/1090 | CD44 | 960 |
20176 | https://identifiers.org/aop.events/1090 | CDH10 | 1008 |
11775 rows × 3 columns
Section 6.5.2 Significant ORA pathway table plus splitting
In this section, the significant ORA pathway table is created.
Step 40. The significant ORA pathway table is created using the significant enriched patwhays identified from the ORA analysis. This requires data manipulation to restructure the table in a way that the individual genes for the enriched pathways are placed on individual rows.
datafile_ORA2 = pd.read_csv("C:/Users/shaki/Downloads/EMEXP-2599_ORApathwaytable/Comparison 2-Diquat-timepoint2.txt", sep='\t')
datafileORA2=pd.DataFrame(datafile_ORA2)
filtereddatafileORA_2=datafileORA2[datafileORA2['Adjusted P-value'] < 0.05]
filtereddatafileORA_2
Gene_set | Term | P-value | Adjusted P-value | Old P-value | Old adjusted P-value | Odds Ratio | Combined Score | Genes | |
---|---|---|---|---|---|---|---|---|---|
0 | WikiPathways_2024_Human | Retinoblastoma Gene In Cancer WP2446 | 3.920321e-23 | 3.198982e-20 | 0 | 0 | 10.221700 | 527.371300 | TOP2A;CDKN1A;CDKN1B;MCM7;HMGB2;SMC2;CCND1;SIN3... |
1 | WikiPathways_2024_Human | VEGFA VEGFR2 Signaling WP3888 | 5.853628e-19 | 2.388280e-16 | 0 | 0 | 2.472575 | 103.803800 | TRAF3IP2;ARPC5L;ICAM1;GJA1;PNP;RPS6KA5;BSG;LUC... |
2 | WikiPathways_2024_Human | G1 To S Cell Cycle Control WP45 | 8.953469e-10 | 2.435344e-07 | 0 | 0 | 4.781278 | 99.612230 | CDKN1C;CDKN1A;CDKN1B;PCNA;MCM7;CCNH;PRIM1;ORC4... |
3 | WikiPathways_2024_Human | Nuclear Receptors Meta Pathway WP2882 | 1.227298e-09 | 2.503688e-07 | 0 | 0 | 2.060356 | 42.275310 | KEAP1;IRS2;GCC1;NR3C1;SCP2;CCND1;SLC39A9;FTH1;... |
4 | WikiPathways_2024_Human | Cell Cycle WP179 | 1.873745e-09 | 3.057952e-07 | 0 | 0 | 3.088347 | 62.061350 | CDKN1C;CDKN1A;CDKN1B;MCM7;CCNH;CDC20;CCND1;PTT... |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
131 | WikiPathways_2024_Human | Leucine Isoleucine And Valine Metabolism WP4686 | 7.591935e-03 | 4.657909e-02 | 0 | 0 | 2.946033 | 14.378610 | ACAD8;BCKDHA;MCCC2;ECHS1;BCKDHB;ACADSB;ACAT1;A... |
132 | WikiPathways_2024_Human | IL1 And Megakaryocytes In Obesity WP2865 | 7.591935e-03 | 4.657909e-02 | 0 | 0 | 2.946033 | 14.378610 | IL1R1;F2R;NFKB1;ICAM1;SELENBP1;PIK3CA;IL1B;TIM... |
133 | WikiPathways_2024_Human | Thyroid Stimulating Hormone TSH Signaling WP2032 | 7.782661e-03 | 4.739292e-02 | 0 | 0 | 2.011839 | 9.769204 | CDKN1B;GNAI3;PIK3R2;PIK3R1;GNAI1;GNA13;RAP1A;G... |
134 | WikiPathways_2024_Human | ATR Signaling WP3875 | 8.049704e-03 | 4.841010e-02 | 0 | 0 | 5.813454 | 28.033170 | RPA3;CHEK1;RPA1;RPA2;HUS1;RAD9B;ATR |
135 | WikiPathways_2024_Human | Thermogenesis WP4321 | 8.068351e-03 | 4.841010e-02 | 0 | 0 | 1.664443 | 8.022294 | PRKAA1;SMARCD2;KDM3A;PRKAA2;SMARCD3;KDM3B;NPR1... |
136 rows × 9 columns
dropped_datafileORA_df2=filtereddatafileORA_2.drop(['Adjusted P-value','Odds Ratio','Old P-value','Gene_set','P-value','Old adjusted P-value','Combined Score'],axis=1)
droppeddatafileORAdf2=dropped_datafileORA_df2.copy()
droppeddatafileORAdf2['Genes']= droppeddatafileORAdf2['Genes'].replace({';':','},regex=True)
df2_ORApathwaytable=droppeddatafileORAdf2.copy()
df2_ORApathwaytable['Genes'] = df2_ORApathwaytable['Genes'].astype(str)
df2_ORApathwaytable['Genes'] = df2_ORApathwaytable['Genes'].str.split(',')
exploded_df2_ORApathwaytable = df2_ORApathwaytable.explode('Genes', ignore_index=True)
Section 6.5.3 For loop to get overlapping genes
In this section, the number of overlapping genes between the significant enrichment score-based Key Events and enriched pathways from ORA are calculated.
Step 41. Next, two sets are created by converting the significant KE table and ORA pathway table into dictionaries where the values of the genes are grouped together per key. This is followed by running a for loop to calculate the number of overlapping genes along with the symbols.
ORA_gene_sets2 = exploded_df2_ORApathwaytable.groupby('Term')['Genes'].apply(set).to_dict()
SignificantKE_gene_sets2 = significantKEIDgenetable2.groupby('KEID')['gene'].apply(set).to_dict()
overlapping_genes_betweenORA_and_significantKEs2 = {}
for term, ORA_genes in ORA_gene_sets2.items():
for KEID, KEID_genes in SignificantKE_gene_sets2.items():
overlap = ORA_genes.intersection(KEID_genes)
print(f"{term} x {KEID}: {len(overlap)} overlaps")
overlapping_genes_betweenORA_and_significantKEs2[(term, KEID)] = {
'overlapping genes': overlap,
'number of genes that overlap': len(overlap)
}
if overlapping_genes_betweenORA_and_significantKEs2:
print("\ntitle of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:")
for (term, KEID), result in overlapping_genes_betweenORA_and_significantKEs2.items():
print(f"Term: {term}, KEID: {KEID}, Title of overlapping gene(s): {result['overlapping genes']}, number: {result['number of genes that overlap']}")
else:
print("No overlapping genes")
ATR Signaling WP3875 x https://identifiers.org/aop.events/105: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1087: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1090: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1115: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1392: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/149: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1497: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1538: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1539: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1582: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1585: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1633: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1669: 3 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1670: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1750: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/177: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1770: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1814: 3 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1815: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1816: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1896: 5 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1917: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1945: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/2006: 3 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/202: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/209: 5 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/244: 3 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/249: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/381: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/386: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/41: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/457: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/484: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/52: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/68: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/890: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/105: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1087: 12 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1090: 11 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1115: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1392: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/149: 12 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1497: 12 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1538: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1539: 9 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1582: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1585: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1633: 12 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1669: 7 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1670: 5 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1750: 12 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/177: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1770: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1814: 7 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1815: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1816: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1896: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1917: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1945: 17 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2006: 7 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/202: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/209: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/244: 8 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/249: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/381: 10 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/386: 10 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/41: 4 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/457: 14 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/484: 16 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/52: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/68: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/890: 0 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/105: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1087: 20 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1090: 27 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1115: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1392: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/149: 20 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1497: 20 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1538: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1539: 5 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1582: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1585: 5 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1633: 20 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1669: 17 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1670: 11 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1750: 20 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/177: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1770: 0 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1814: 21 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1815: 5 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1816: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1896: 4 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1917: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/1945: 19 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/2006: 17 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/202: 7 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/209: 15 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/244: 21 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/249: 2 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/381: 14 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/386: 20 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/41: 6 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/457: 17 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/484: 16 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/52: 10 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/68: 0 overlaps
Alzheimer 39 S Disease And miRNA Effects WP2059 x https://identifiers.org/aop.events/890: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/105: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1087: 20 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1090: 27 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1115: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1392: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/149: 20 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1497: 20 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1538: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1539: 5 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1582: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1585: 5 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1633: 20 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1669: 17 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1670: 11 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1750: 20 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/177: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1770: 0 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1814: 21 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1815: 5 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1816: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1896: 4 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1917: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/1945: 19 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/2006: 17 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/202: 7 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/209: 15 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/244: 21 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/249: 2 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/381: 14 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/386: 20 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/41: 6 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/457: 17 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/484: 16 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/52: 10 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/68: 0 overlaps
Alzheimer 39 S Disease WP5124 x https://identifiers.org/aop.events/890: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/105: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1087: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1090: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1115: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1392: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/149: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1497: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1538: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1539: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1582: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1585: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1633: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1669: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1670: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1750: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/177: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1770: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1814: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1815: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1816: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1896: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1917: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1945: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2006: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/202: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/209: 8 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/244: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/249: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/381: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/386: 3 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/41: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/457: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/484: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/52: 3 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/68: 5 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/890: 2 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/105: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1087: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1090: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1115: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1392: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/149: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1497: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1538: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1539: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1582: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1585: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1633: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1669: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1670: 9 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1750: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/177: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1770: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1814: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1815: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1816: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1896: 15 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1917: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1945: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2006: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/202: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/209: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/244: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/249: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/381: 9 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/386: 10 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/41: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/457: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/484: 13 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/52: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/68: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/890: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/105: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1087: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1090: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1115: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1392: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/149: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1497: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1538: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1539: 8 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1582: 2 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1585: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1633: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1669: 9 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1670: 5 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1750: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/177: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1770: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1814: 9 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1815: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1816: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1896: 4 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1917: 1 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1945: 9 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/2006: 9 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/202: 4 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/209: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/244: 10 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/249: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/381: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/386: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/41: 3 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/457: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/484: 9 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/52: 2 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/68: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/890: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/105: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1087: 8 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1090: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1115: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1392: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/149: 8 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1497: 8 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1538: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1539: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1582: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1585: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1633: 8 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1669: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1670: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1750: 8 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/177: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1770: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1814: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1815: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1816: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1896: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1917: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1945: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2006: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/202: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/209: 9 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/244: 9 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/249: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/381: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/386: 6 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/41: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/457: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/484: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/52: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/68: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/890: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/105: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1087: 13 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1090: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1115: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1392: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/149: 13 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1497: 13 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1538: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1539: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1582: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1585: 5 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1633: 13 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1669: 9 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1670: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1750: 13 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/177: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1770: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1814: 10 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1815: 5 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1816: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1896: 5 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1917: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1945: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/2006: 9 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/202: 7 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/209: 6 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/244: 11 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/249: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/381: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/386: 7 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/41: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/457: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/484: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/52: 4 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/68: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/890: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/105: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1087: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1090: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1115: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1392: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/149: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1497: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1538: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1539: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1582: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1585: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1633: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1669: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1670: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1750: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/177: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1770: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1814: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1815: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1816: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1896: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1917: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1945: 7 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2006: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/202: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/209: 7 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/244: 9 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/249: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/381: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/386: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/41: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/457: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/484: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/52: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/68: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/890: 3 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/105: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1087: 11 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1090: 7 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1115: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1392: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/149: 11 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1497: 11 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1538: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1539: 3 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1582: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1585: 5 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1633: 11 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1669: 13 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1670: 5 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1750: 11 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/177: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1770: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1814: 14 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1815: 5 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1816: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1896: 6 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1917: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1945: 8 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/2006: 13 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/202: 8 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/209: 5 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/244: 14 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/249: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/381: 8 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/386: 9 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/41: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/457: 3 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/484: 7 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/52: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/68: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/890: 2 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/105: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1087: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1090: 14 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1115: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1392: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/149: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1497: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1538: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1539: 9 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1582: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1585: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1633: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1669: 9 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1670: 12 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1750: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/177: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1770: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1814: 9 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1815: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1816: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1896: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1917: 1 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1945: 12 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/2006: 9 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/202: 3 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/209: 3 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/244: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/249: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/381: 6 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/386: 5 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/41: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/457: 10 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/484: 12 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/52: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/68: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/890: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/105: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1087: 47 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 61 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1115: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1392: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/149: 47 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1497: 47 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1538: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1539: 25 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1582: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1585: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1633: 47 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1669: 35 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1670: 31 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1750: 47 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/177: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1770: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1814: 35 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1815: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1816: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1896: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1917: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1945: 79 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2006: 35 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/202: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 43 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 53 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/249: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/381: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/386: 33 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/41: 25 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/457: 69 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/484: 72 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/52: 21 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/68: 4 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/890: 6 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/105: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1087: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1090: 8 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1115: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1392: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/149: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1497: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1538: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1539: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1582: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1585: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1633: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1669: 23 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1670: 7 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1750: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/177: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1770: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1814: 22 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1815: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1816: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1896: 23 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1917: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1945: 10 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2006: 22 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/202: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/209: 15 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/244: 24 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/249: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/381: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/386: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/41: 5 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/457: 5 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/484: 9 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/52: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/68: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/890: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/105: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1087: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1090: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1115: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1392: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/149: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1497: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1538: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1539: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1582: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1633: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1669: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1670: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1750: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/177: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1770: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1814: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1816: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1896: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1917: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1945: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/2006: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/202: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/209: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/244: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/249: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/381: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/386: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/41: 1 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/457: 8 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/484: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/52: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/890: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/105: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1087: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1090: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1115: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1392: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/149: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1497: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1538: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1539: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1582: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1633: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1669: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1670: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1750: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/177: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1770: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1814: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1816: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1896: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1917: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1945: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/2006: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/202: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/209: 2 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/244: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/249: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/381: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/386: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/41: 2 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/457: 19 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/484: 1 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/52: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/890: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/105: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1087: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1090: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1115: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1392: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/149: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1497: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1538: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1539: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1582: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1633: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1669: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1670: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1750: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/177: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1770: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1814: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1816: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1896: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1917: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1945: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/2006: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/202: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/209: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/244: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/249: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/381: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/386: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/41: 1 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/457: 9 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/484: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/52: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/890: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/105: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1087: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1090: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1115: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1392: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/149: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1497: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1538: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1539: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1582: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1585: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1633: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1669: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1670: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1750: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/177: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1770: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1814: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1815: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1816: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1896: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1917: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1945: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2006: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/202: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/209: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/244: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/249: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/381: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/386: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/41: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/457: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/484: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/52: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/68: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/890: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/105: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1087: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1090: 7 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1115: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1392: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/149: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1497: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1538: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1539: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1582: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1585: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1633: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1669: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1670: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1750: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/177: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1770: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1814: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1815: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1816: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1896: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1917: 5 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1945: 6 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2006: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/202: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/209: 7 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/244: 5 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/249: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/381: 5 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/386: 8 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/41: 7 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/457: 7 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/484: 6 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/52: 5 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/68: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/890: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/105: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1087: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1090: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1115: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1392: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/149: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1497: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1538: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1539: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1582: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1585: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1633: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1669: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1670: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1750: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/177: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1770: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1814: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1815: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1816: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1896: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1917: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1945: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/2006: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/202: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/209: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/244: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/249: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/381: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/386: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/41: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/457: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/484: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/52: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/68: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/890: 2 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/105: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1087: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1090: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1115: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1392: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/149: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1497: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1538: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1539: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1582: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1585: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1633: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1669: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1670: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1750: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/177: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1770: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1814: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1815: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1816: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1896: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1917: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/1945: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/2006: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/202: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/209: 2 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/244: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/249: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/381: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/386: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/41: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/457: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/484: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/52: 1 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/68: 0 overlaps
Cysteine And Methionine Catabolism WP4504 x https://identifiers.org/aop.events/890: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1087: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1090: 7 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/149: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1497: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1582: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1585: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1633: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1669: 32 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1670: 8 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1750: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1770: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1814: 32 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1815: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1896: 32 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1945: 12 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2006: 32 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/209: 17 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/244: 32 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/381: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/386: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/41: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/457: 5 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/484: 11 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/52: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/890: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/105: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1090: 5 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/149: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1582: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1669: 13 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/177: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1770: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1814: 13 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1896: 25 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1945: 3 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2006: 13 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/202: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/209: 22 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/244: 13 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/249: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/381: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/386: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/41: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/457: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/484: 3 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/52: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/68: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1090: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/149: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1669: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1770: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1814: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1896: 15 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1945: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2006: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/209: 15 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/244: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/41: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/457: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/484: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/52: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1087: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1090: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/149: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1497: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1539: 2 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1633: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1669: 7 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1750: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1770: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1814: 7 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1896: 58 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1917: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1945: 2 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2006: 7 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/209: 58 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/244: 8 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/381: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/386: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/41: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/457: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/484: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/52: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1090: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/149: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1669: 3 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1770: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1814: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1896: 11 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1945: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2006: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/209: 11 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/244: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/41: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/457: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/484: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/52: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/890: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/105: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1087: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1090: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1115: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1392: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/149: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1497: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1538: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1539: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1582: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1585: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1633: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1669: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1670: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1750: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/177: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1770: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1814: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1815: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1816: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1896: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1917: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/1945: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/2006: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/202: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/209: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/244: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/249: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/381: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/386: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/41: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/457: 2 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/484: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/52: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/68: 0 overlaps
Disorders In Ketolysis WP5195 x https://identifiers.org/aop.events/890: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/105: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1087: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1090: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1115: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1392: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/149: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1497: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1538: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1539: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1582: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1585: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1633: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1669: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1670: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1750: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/177: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1770: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1814: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1815: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1816: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1896: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1917: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/1945: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/2006: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/202: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/209: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/244: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/249: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/381: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/386: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/41: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/457: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/484: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/52: 0 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/68: 1 overlaps
Disorders Of Galactose Metabolism WP5173 x https://identifiers.org/aop.events/890: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/105: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1087: 24 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1090: 13 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1115: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1392: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/149: 24 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1497: 24 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1538: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1539: 67 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1582: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1585: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1633: 24 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1669: 12 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1670: 14 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1750: 24 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/177: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1770: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1814: 12 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1815: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1816: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1896: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1917: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1945: 24 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/2006: 12 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/202: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/209: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/244: 13 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/249: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/381: 22 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/386: 22 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/41: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/457: 13 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/484: 13 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/52: 7 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/68: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/890: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/105: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1087: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1090: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1115: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1392: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/149: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1497: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1538: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1539: 16 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1582: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1585: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1633: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1669: 12 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1670: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1750: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/177: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1770: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1814: 12 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1815: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1816: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1896: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1917: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1945: 35 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/2006: 12 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/202: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/209: 6 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/244: 16 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/249: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/381: 10 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/386: 15 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/41: 8 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/457: 24 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/484: 29 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/52: 10 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/68: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/890: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/105: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1087: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1090: 11 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1115: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1392: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/149: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1497: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1538: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1539: 10 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1582: 3 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1585: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1633: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1669: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1670: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1750: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/177: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1770: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1814: 7 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1815: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1816: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1896: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1917: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1945: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/2006: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/202: 4 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/209: 2 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/244: 7 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/249: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/381: 8 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/386: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/41: 4 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/457: 10 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/484: 12 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/52: 4 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/68: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/890: 1 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/105: 43 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1087: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1090: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1115: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1392: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/149: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1497: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1538: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1539: 1 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1582: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1585: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1633: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1669: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1670: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1750: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/177: 43 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1770: 26 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1814: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1815: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1816: 43 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1896: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1917: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/1945: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/2006: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/202: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/209: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/244: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/249: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/381: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/386: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/41: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/457: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/484: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/52: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/68: 0 overlaps
Electron Transport Chain OXPHOS System In Mitochondria WP111 x https://identifiers.org/aop.events/890: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/105: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1087: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1090: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1115: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1392: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/149: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1497: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1538: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1539: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1582: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1585: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1633: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1669: 1 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1670: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1750: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/177: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1770: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1814: 1 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1815: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1816: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1896: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1917: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1945: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/2006: 1 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/202: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/209: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/244: 1 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/249: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/381: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/386: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/41: 2 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/457: 13 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/484: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/52: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/68: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/890: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/105: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1087: 19 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1090: 28 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1115: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1392: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/149: 19 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1497: 19 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1538: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1539: 9 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1582: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1585: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1633: 19 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1669: 11 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1670: 9 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1750: 19 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/177: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1770: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1814: 11 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1815: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1816: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1896: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1917: 3 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1945: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/2006: 11 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/202: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/209: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/244: 13 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/249: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/381: 7 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/386: 11 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/41: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/457: 16 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/484: 15 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/52: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/68: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/890: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/105: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1087: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1090: 22 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1115: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1392: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/149: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1497: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1538: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1539: 19 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1582: 4 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1585: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1633: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1669: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1670: 20 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1750: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/177: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1770: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1814: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1815: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1816: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1896: 5 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1917: 5 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1945: 27 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/2006: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/202: 5 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/209: 9 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/244: 22 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/249: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/381: 12 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/386: 13 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/41: 9 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/457: 14 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/484: 18 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/52: 5 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/68: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/890: 1 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/105: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1087: 9 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1090: 6 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1115: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1392: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/149: 9 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1497: 9 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1538: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1539: 3 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1582: 1 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1585: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1633: 9 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1669: 6 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1670: 2 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1750: 9 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/177: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1770: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1814: 6 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1815: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1816: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1896: 4 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1917: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/1945: 3 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/2006: 6 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/202: 5 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/209: 4 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/244: 6 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/249: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/381: 2 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/386: 3 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/41: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/457: 2 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/484: 1 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/52: 1 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/68: 0 overlaps
Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314 x https://identifiers.org/aop.events/890: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/105: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1087: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1090: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1115: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1392: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/149: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1497: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1538: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1539: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1582: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1585: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1633: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1669: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1670: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1750: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/177: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1770: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1814: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1815: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1816: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1896: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1917: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1945: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/2006: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/202: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/209: 1 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/244: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/249: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/381: 1 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/386: 1 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/41: 1 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/457: 1 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/484: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/52: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/68: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/890: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/105: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1087: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1090: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1115: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1392: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/149: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1497: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1538: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1539: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1582: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1585: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1633: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1669: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1670: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1750: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/177: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1770: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1814: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1815: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1816: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1896: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1917: 9 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1945: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2006: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/202: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/209: 12 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/244: 9 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/249: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/381: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/386: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/41: 10 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/457: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/484: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/52: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/68: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/890: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/105: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1087: 29 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1090: 37 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1115: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1392: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/149: 29 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1497: 29 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1538: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1539: 18 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1582: 4 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1585: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1633: 29 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1669: 14 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1670: 14 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1750: 29 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/177: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1770: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1814: 14 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1815: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1816: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1896: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1917: 4 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1945: 48 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2006: 14 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/202: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/209: 8 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/244: 17 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/249: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/381: 12 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/386: 15 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/41: 7 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/457: 37 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/484: 40 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/52: 6 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/68: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/890: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/105: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1087: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1090: 7 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1115: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1392: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/149: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1497: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1538: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1539: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1582: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1585: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1633: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1669: 17 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1670: 7 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1750: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/177: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1770: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1814: 16 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1815: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1816: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1896: 21 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1917: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1945: 11 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2006: 16 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/202: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/209: 14 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/244: 16 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/249: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/381: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/386: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/41: 2 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/457: 6 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/484: 11 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/52: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/68: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/890: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/105: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1087: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1090: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1115: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1392: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/149: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1497: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1538: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1539: 2 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1582: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1633: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1669: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1670: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1750: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/177: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1770: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1814: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1816: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1896: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1917: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1945: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2006: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/202: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/209: 2 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/244: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/249: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/381: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/386: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/41: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/457: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/484: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/52: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/890: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/105: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1087: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1090: 14 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1115: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1392: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/149: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1497: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1538: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1539: 15 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1582: 6 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1633: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1669: 14 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1670: 11 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1750: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/177: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1770: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1814: 14 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1816: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1896: 3 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1917: 4 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1945: 20 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/2006: 14 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/202: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/209: 9 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/244: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/249: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/381: 18 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/386: 19 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/41: 8 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/457: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/484: 18 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/52: 5 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/68: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/890: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/105: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1087: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1090: 21 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1115: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1392: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/149: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1497: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1538: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1539: 14 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1582: 2 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1585: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1633: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1669: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1670: 18 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1750: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/177: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1770: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1814: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1815: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1816: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1896: 10 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1917: 2 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1945: 26 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/2006: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/202: 6 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/209: 8 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/244: 20 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/249: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/381: 8 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/386: 9 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/41: 7 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/457: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/484: 24 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/52: 7 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/68: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/890: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/105: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1087: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1090: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1115: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1392: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/149: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1497: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1538: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1539: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1582: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1585: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1633: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1669: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1670: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1750: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/177: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1770: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1814: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1815: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1816: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1896: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1917: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1945: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2006: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/202: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/209: 5 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/244: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/249: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/381: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/386: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/41: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/457: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/484: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/52: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/68: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/890: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/105: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1087: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1090: 2 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1115: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1392: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/149: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1497: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1538: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1539: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1582: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1585: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1633: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1669: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1670: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1750: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/177: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1770: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1814: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1815: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1816: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1896: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1917: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1945: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/2006: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/202: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/209: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/244: 2 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/249: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/381: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/386: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/41: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/457: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/484: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/52: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/68: 2 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/890: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/105: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1087: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1090: 3 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1115: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1392: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/149: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1497: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1538: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1539: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1582: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1585: 1 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1633: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1669: 3 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1670: 2 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1750: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/177: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1770: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1814: 3 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1815: 1 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1816: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1896: 3 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1917: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/1945: 2 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/2006: 3 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/202: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/209: 2 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/244: 3 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/249: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/381: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/386: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/41: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/457: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/484: 2 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/52: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/68: 0 overlaps
H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969 x https://identifiers.org/aop.events/890: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/105: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1087: 7 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1090: 3 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1115: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1392: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/149: 7 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1497: 7 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1538: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1539: 4 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1582: 3 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1585: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1633: 7 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1669: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1670: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1750: 7 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/177: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1770: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1814: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1815: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1816: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1896: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1917: 3 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1945: 5 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/2006: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/202: 2 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/209: 7 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/244: 4 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/249: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/381: 3 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/386: 5 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/41: 3 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/457: 5 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/484: 5 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/52: 3 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/68: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/890: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/105: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1087: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 16 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1115: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1392: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/149: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1497: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1538: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1539: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1582: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1585: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1633: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1669: 13 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1670: 13 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1750: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/177: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1770: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1814: 13 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1815: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1816: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1896: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1917: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1945: 20 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2006: 13 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/202: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/209: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 15 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/249: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/381: 8 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/386: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/41: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/457: 15 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/484: 20 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/52: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/68: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/890: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/105: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1087: 38 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1090: 17 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1115: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1392: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/149: 38 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1497: 38 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1538: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1539: 17 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1582: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1585: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1633: 38 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1669: 18 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1670: 18 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1750: 38 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/177: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1770: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1814: 18 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1815: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1816: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1896: 6 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1917: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1945: 24 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/2006: 18 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/202: 13 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/209: 11 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/244: 21 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/249: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/381: 15 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/386: 23 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/41: 8 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/457: 22 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/484: 22 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/52: 14 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/68: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/890: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/105: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1087: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1090: 12 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1115: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1392: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/149: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1497: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1538: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1539: 6 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1582: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1585: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1633: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1669: 9 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1670: 5 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1750: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/177: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1770: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1814: 9 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1815: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1816: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1896: 4 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1917: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1945: 14 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/2006: 9 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/202: 3 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/209: 6 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/244: 9 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/249: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/381: 6 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/386: 10 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/41: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/457: 10 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/484: 13 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/52: 7 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/68: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/890: 1 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/105: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1087: 9 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1090: 34 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1115: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1392: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/149: 9 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1497: 9 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1538: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1539: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1582: 1 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1585: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1633: 9 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1669: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1670: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1750: 9 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/177: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1770: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1814: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1815: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1816: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1896: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1917: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1945: 21 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/2006: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/202: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/209: 5 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/244: 5 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/249: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/381: 2 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/386: 6 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/41: 4 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/457: 18 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/484: 18 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/52: 4 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/68: 2 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/890: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/105: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1087: 9 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1090: 26 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1115: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1392: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/149: 9 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1497: 9 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1538: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1539: 5 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1582: 3 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1585: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1633: 9 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1669: 3 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1670: 3 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1750: 9 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/177: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1770: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1814: 3 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1815: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1816: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1896: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1917: 3 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/1945: 18 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/2006: 3 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/202: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/209: 11 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/244: 5 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/249: 0 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/381: 5 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/386: 10 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/41: 10 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/457: 11 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/484: 12 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/52: 5 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/68: 2 overlaps
Hippo Signaling Regulation WP4540 x https://identifiers.org/aop.events/890: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/105: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1087: 10 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1090: 4 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1115: 1 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1392: 1 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/149: 10 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1497: 10 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1538: 1 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1539: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1582: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1585: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1633: 10 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1669: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1670: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1750: 10 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/177: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1770: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1814: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1815: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1816: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1896: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1917: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/1945: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/2006: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/202: 5 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/209: 4 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/244: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/249: 1 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/381: 4 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/386: 5 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/41: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/457: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/484: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/52: 3 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/68: 0 overlaps
Host Pathogen Interaction Of Human CoV Interferon Induction WP4880 x https://identifiers.org/aop.events/890: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/105: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1087: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1090: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1115: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1392: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/149: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1497: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1538: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1539: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1582: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1585: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1633: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1669: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1670: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1750: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/177: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1770: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1814: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1815: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1816: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1896: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1917: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1945: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/2006: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/202: 2 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/209: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/244: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/249: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/381: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/386: 2 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/41: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/457: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/484: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/52: 2 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/68: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/890: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/105: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1087: 7 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1090: 5 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1115: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1392: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/149: 7 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1497: 7 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1538: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1539: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1582: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1585: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1633: 7 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1669: 2 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1670: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1750: 7 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/177: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1770: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1814: 3 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1815: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1816: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1896: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1917: 2 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1945: 4 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/2006: 2 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/202: 5 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/209: 4 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/244: 4 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/249: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/381: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/386: 4 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/41: 2 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/457: 2 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/484: 4 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/52: 4 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/68: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/890: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/105: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1087: 27 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1090: 8 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1115: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1392: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/149: 27 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1497: 27 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1538: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1539: 6 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1582: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1585: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1633: 27 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1669: 6 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1670: 3 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1750: 27 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/177: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1770: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1814: 7 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1815: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1816: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1896: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1917: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/1945: 6 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/2006: 6 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/202: 27 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/209: 4 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/244: 8 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/249: 1 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/381: 10 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/386: 13 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/41: 3 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/457: 3 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/484: 5 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/52: 4 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/68: 0 overlaps
IL1 Signaling WP195 x https://identifiers.org/aop.events/890: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/105: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1087: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1090: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1115: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1392: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/149: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1497: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1538: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1539: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1582: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1585: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1633: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1669: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1670: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1750: 3 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/177: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1770: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1814: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1815: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1816: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1896: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1917: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/1945: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/2006: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/202: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/209: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/244: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/249: 1 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/381: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/386: 5 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/41: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/457: 4 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/484: 2 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/52: 5 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/68: 0 overlaps
IL10 Anti Inflammatory Signaling WP4495 x https://identifiers.org/aop.events/890: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/105: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1087: 11 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1090: 7 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1115: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1392: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/149: 11 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1497: 11 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1538: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1539: 12 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1582: 2 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1585: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1633: 11 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1669: 8 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1670: 7 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1750: 11 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/177: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1770: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1814: 8 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1815: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1816: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1896: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1917: 2 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1945: 13 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/2006: 8 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/202: 6 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/209: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/244: 9 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/249: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/381: 15 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/386: 16 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/41: 6 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/457: 14 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/484: 11 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/52: 8 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/68: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/890: 1 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/105: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1087: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1090: 7 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1115: 1 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1392: 1 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/149: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1497: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1538: 1 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1539: 12 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1582: 2 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1585: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1633: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1669: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1670: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1750: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/177: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1770: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1814: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1815: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1816: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1896: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1917: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1945: 12 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/2006: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/202: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/209: 3 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/244: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/249: 1 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/381: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/386: 14 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/41: 2 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/457: 12 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/484: 10 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/52: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/68: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/890: 1 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/105: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1087: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1090: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1115: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1392: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/149: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1497: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1538: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1539: 3 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1582: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1585: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1633: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1669: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1670: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1750: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/177: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1770: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1814: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1815: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1816: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1896: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1917: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/1945: 3 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/2006: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/202: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/209: 1 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/244: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/249: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/381: 2 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/386: 4 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/41: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/457: 4 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/484: 3 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/52: 3 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/68: 0 overlaps
Immune Response To Tuberculosis WP4197 x https://identifiers.org/aop.events/890: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/105: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1087: 29 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1090: 21 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1115: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1392: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/149: 29 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1497: 29 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1538: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1539: 19 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1582: 3 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1585: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1633: 29 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1669: 16 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1670: 10 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1750: 29 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/177: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1770: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1814: 17 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1815: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1816: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1896: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1917: 5 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1945: 22 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2006: 16 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/202: 11 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/209: 10 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/244: 20 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/249: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/381: 21 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/386: 24 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/41: 12 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/457: 15 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/484: 19 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/52: 8 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/68: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/890: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/105: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1087: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1090: 9 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1115: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1392: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/149: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1497: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1538: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1539: 2 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1582: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1585: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1633: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1669: 13 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1670: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1750: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/177: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1770: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1814: 13 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1815: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1816: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1896: 14 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1917: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1945: 8 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2006: 13 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/202: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/209: 8 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/244: 13 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/249: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/381: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/386: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/41: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/457: 7 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/484: 8 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/52: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/68: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/890: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/105: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1087: 12 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1090: 7 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1115: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1392: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/149: 12 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1497: 12 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1538: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1539: 13 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1582: 2 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1585: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1633: 12 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1669: 6 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1670: 5 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1750: 12 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/177: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1770: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1814: 6 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1815: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1816: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1896: 1 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1917: 1 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/1945: 10 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/2006: 6 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/202: 6 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/209: 3 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/244: 7 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/249: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/381: 14 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/386: 14 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/41: 5 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/457: 10 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/484: 8 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/52: 5 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/68: 0 overlaps
Interferon Type I Signaling WP585 x https://identifiers.org/aop.events/890: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/105: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1087: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1090: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1115: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1392: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/149: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1497: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1538: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1539: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1582: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1585: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1633: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1669: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1670: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1750: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/177: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1770: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1814: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1815: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1816: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1896: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1917: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/1945: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/2006: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/202: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/209: 2 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/244: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/249: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/381: 0 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/386: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/41: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/457: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/484: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/52: 1 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/68: 2 overlaps
Ketogenesis And Ketolysis WP4742 x https://identifiers.org/aop.events/890: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/105: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1087: 9 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1090: 7 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1115: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1392: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/149: 9 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1497: 9 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1538: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1539: 17 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1582: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1585: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1633: 9 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1669: 5 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1670: 9 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1750: 9 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/177: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1770: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1814: 5 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1815: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1816: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1896: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1917: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1945: 12 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/2006: 5 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/202: 4 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/209: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/244: 7 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/249: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/381: 14 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/386: 14 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/41: 4 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/457: 10 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/484: 8 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/52: 4 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/68: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/890: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/105: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1087: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1090: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1115: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1392: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/149: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1497: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1538: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1539: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1582: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1585: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1633: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1669: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1670: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1750: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/177: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1770: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1814: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1815: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1816: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1896: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1917: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/1945: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/2006: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/202: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/209: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/244: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/249: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/381: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/386: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/41: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/457: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/484: 1 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/52: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/68: 0 overlaps
Krebs Cycle Disorders WP4236 x https://identifiers.org/aop.events/890: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/105: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1087: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1090: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1115: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1392: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/149: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1497: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1538: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1539: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1582: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1585: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1633: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1669: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1670: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1750: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/177: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1770: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1814: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1815: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1816: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1896: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1917: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1945: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/2006: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/202: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/209: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/244: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/249: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/381: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/386: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/41: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/457: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/484: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/52: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/68: 2 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/890: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/105: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1087: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1090: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1115: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1392: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/149: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1497: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1538: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1539: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1582: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1585: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1633: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1669: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1670: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1750: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/177: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1770: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1814: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1815: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1816: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1896: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1917: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/1945: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/2006: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/202: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/209: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/244: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/249: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/381: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/386: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/41: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/457: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/484: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/52: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/68: 0 overlaps
Leucine Isoleucine And Valine Metabolism WP4686 x https://identifiers.org/aop.events/890: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/105: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1087: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1090: 7 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1115: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1392: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/149: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1497: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1538: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1539: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1582: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1585: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1633: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1669: 1 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1670: 1 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1750: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/177: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1770: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1814: 1 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1815: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1816: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1896: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1917: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/1945: 8 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/2006: 1 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/202: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/209: 6 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/244: 1 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/249: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/381: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/386: 2 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/41: 7 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/457: 3 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/484: 3 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/52: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/68: 0 overlaps
Lipid Metabolism Pathway WP3965 x https://identifiers.org/aop.events/890: 0 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/105: 0 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1087: 87 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1090: 30 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1115: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1392: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/149: 87 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1497: 87 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1538: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1539: 20 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1582: 4 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1585: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1633: 87 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1669: 12 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1670: 10 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1750: 87 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/177: 0 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1770: 0 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1814: 14 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1815: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1816: 0 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1896: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1917: 5 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/1945: 30 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/2006: 12 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/202: 15 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/209: 13 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/244: 19 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/249: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/381: 17 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/386: 24 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/41: 6 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/457: 16 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/484: 20 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/52: 13 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/68: 2 overlaps
MAPK Signaling WP382 x https://identifiers.org/aop.events/890: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/105: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1087: 16 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1090: 12 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1115: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1392: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/149: 16 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1497: 16 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1538: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1539: 14 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1582: 4 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1585: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1633: 16 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1669: 11 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1670: 12 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1750: 16 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/177: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1770: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1814: 11 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1815: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1816: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1896: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1917: 1 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1945: 18 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/2006: 11 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/202: 5 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/209: 4 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/244: 11 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/249: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/381: 11 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/386: 10 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/41: 5 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/457: 11 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/484: 12 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/52: 3 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/68: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/890: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/105: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1087: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1090: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1115: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1392: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/149: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1497: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1538: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1539: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1582: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1585: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1633: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1669: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1670: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1750: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/177: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1770: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1814: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1815: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1816: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1896: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1917: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/1945: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/2006: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/202: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/209: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/244: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/249: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/381: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/386: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/41: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/457: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/484: 1 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/52: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/68: 0 overlaps
MTHFR Deficiency WP4288 x https://identifiers.org/aop.events/890: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/105: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1087: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1090: 5 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1115: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1392: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/149: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1497: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1538: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1539: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1582: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1585: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1633: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1669: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1670: 4 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1750: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/177: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1770: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1814: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1815: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1816: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1896: 1 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1917: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1945: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/2006: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/202: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/209: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/244: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/249: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/381: 1 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/386: 1 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/41: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/457: 4 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/484: 3 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/52: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/68: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/890: 0 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/105: 0 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1087: 28 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1090: 14 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1115: 2 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1392: 2 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/149: 28 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1497: 28 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1538: 2 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1539: 7 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1582: 2 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1585: 3 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1633: 28 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1669: 18 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1670: 12 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1750: 28 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/177: 0 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1770: 0 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1814: 20 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1815: 3 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1816: 0 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1896: 10 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1917: 2 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/1945: 20 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/2006: 18 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/202: 11 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/209: 10 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/244: 21 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/249: 2 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/381: 12 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/386: 18 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/41: 5 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/457: 12 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/484: 19 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/52: 10 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/68: 0 overlaps
Measles Virus Infection WP4630 x https://identifiers.org/aop.events/890: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/105: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1087: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1090: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1115: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1392: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/149: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1497: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1538: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1582: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1633: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1750: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/177: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1770: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1816: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1917: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/209: 5 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/244: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/249: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/386: 6 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/41: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/457: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/484: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/52: 6 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/68: 4 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/890: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/105: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1087: 2 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1090: 3 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1115: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1392: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/149: 2 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1497: 2 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1538: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1582: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1633: 2 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1750: 2 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/177: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1770: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1816: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1917: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1945: 3 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/209: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/244: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/249: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/386: 3 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/41: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/457: 4 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/484: 4 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/52: 3 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/68: 18 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/890: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/105: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1087: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1090: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1115: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1392: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/149: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1497: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1538: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1582: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1633: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1750: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/177: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1770: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1816: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1917: 3 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/209: 4 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/244: 3 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/249: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/386: 3 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/41: 3 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/457: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/484: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/52: 3 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/68: 6 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/890: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/105: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1087: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1090: 2 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1115: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1392: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/149: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1497: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1538: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1582: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1633: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1669: 1 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1750: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/177: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1770: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1814: 1 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1816: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1917: 2 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/2006: 1 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/209: 3 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/244: 3 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/249: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/386: 3 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/41: 4 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/457: 2 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/484: 1 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/52: 3 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/68: 4 overlaps
Metabolic Reprogramming In Pancreatic Cancer WP5220 x https://identifiers.org/aop.events/890: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/105: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1087: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1090: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1115: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1392: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/149: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1497: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1538: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1539: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1582: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1585: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1633: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1669: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1670: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1750: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/177: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1770: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1814: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1815: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1816: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1896: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1917: 1 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/1945: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/2006: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/202: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/209: 1 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/244: 1 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/249: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/381: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/386: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/41: 1 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/457: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/484: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/52: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/68: 0 overlaps
Methionine De Novo And Salvage Pathway WP3580 x https://identifiers.org/aop.events/890: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/105: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1087: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1090: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1115: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1392: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/149: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1497: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1538: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1539: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1582: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1585: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1633: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1669: 1 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1670: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1750: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/177: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1770: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1814: 1 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1815: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1816: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1896: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1917: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/1945: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/2006: 1 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/202: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/209: 5 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/244: 1 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/249: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/381: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/386: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/41: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/457: 1 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/484: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/52: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/68: 0 overlaps
Mitochondrial Fatty Acid Oxidation Disorders WP5123 x https://identifiers.org/aop.events/890: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/105: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1087: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1090: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1115: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1392: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/149: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1497: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1538: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1539: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1582: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1585: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1633: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1669: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1670: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1750: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/177: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1770: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1814: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1815: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1816: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1896: 9 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1917: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1945: 8 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2006: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/202: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/209: 8 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/244: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/249: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/381: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/386: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/41: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/457: 4 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/484: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/52: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/68: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/890: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/105: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1087: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1090: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1115: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1392: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/149: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1497: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1538: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1539: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1582: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1585: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1633: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1669: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1670: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1750: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/177: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1770: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1814: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1815: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1816: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1896: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1917: 15 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1945: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/2006: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/202: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/209: 8 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/244: 15 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/249: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/381: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/386: 4 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/41: 15 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/457: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/484: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/52: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/68: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/890: 3 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/105: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1087: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1090: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1115: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1392: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/149: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1497: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1538: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1539: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1582: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1585: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1633: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1669: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1670: 2 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1750: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/177: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1770: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1814: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1815: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1816: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1896: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1917: 63 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1945: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/2006: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/202: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/209: 63 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/244: 63 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/249: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/381: 2 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/386: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/41: 63 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/457: 7 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/484: 7 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/52: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/68: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/890: 6 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/105: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1087: 20 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1090: 14 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1115: 1 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1392: 1 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/149: 20 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1497: 20 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1538: 1 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1539: 6 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1582: 3 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1585: 2 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1633: 20 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1669: 8 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1670: 3 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1750: 20 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/177: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1770: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1814: 9 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1815: 2 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1816: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1896: 7 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1917: 4 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1945: 15 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/2006: 8 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/202: 5 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/209: 14 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/244: 13 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/249: 1 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/381: 7 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/386: 15 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/41: 5 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/457: 14 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/484: 12 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/52: 10 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/68: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/890: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/105: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1087: 15 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1090: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1115: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1392: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/149: 15 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1497: 15 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1538: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1539: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1582: 3 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1585: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1633: 15 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1669: 19 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1670: 34 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1750: 15 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/177: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1770: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1814: 19 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1815: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1816: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1896: 8 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1917: 4 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1945: 20 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/2006: 19 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/202: 3 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/209: 7 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/244: 22 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/249: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/381: 8 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/386: 9 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/41: 8 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/457: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/484: 18 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/52: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/68: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/890: 0 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/105: 26 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1087: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1090: 17 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1115: 1 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1392: 1 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/149: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1497: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1538: 1 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1539: 6 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1582: 2 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1585: 6 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1633: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1669: 13 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1670: 8 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1750: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/177: 26 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1770: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1814: 17 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1815: 6 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1816: 26 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1896: 2 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1917: 3 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/1945: 19 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/2006: 13 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/202: 8 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/209: 13 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/244: 18 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/249: 1 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/381: 12 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/386: 20 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/41: 15 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/457: 17 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/484: 17 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/52: 11 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/68: 0 overlaps
Nonalcoholic Fatty Liver Disease WP4396 x https://identifiers.org/aop.events/890: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/105: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1087: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1090: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1115: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1392: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/149: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1497: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1538: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1539: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1582: 2 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1585: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1633: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1669: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1670: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1750: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/177: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1770: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1814: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1815: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1816: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1896: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1917: 63 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1945: 10 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2006: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/202: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/209: 78 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/244: 70 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/249: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/381: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/386: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/41: 69 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/457: 17 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/484: 14 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/52: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/68: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/890: 8 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/105: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1087: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1090: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1115: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1392: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/149: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1497: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1538: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1539: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1582: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1633: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1669: 2 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1670: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1750: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/177: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1770: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1814: 2 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1816: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1896: 26 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1917: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1945: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/2006: 2 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/202: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/209: 26 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/244: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/249: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/381: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/386: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/41: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/457: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/484: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/52: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/890: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/105: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1087: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1090: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1115: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1392: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/149: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1497: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1538: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1539: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1582: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1633: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1669: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1670: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1750: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/177: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1770: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1814: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1816: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1896: 23 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1917: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1945: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2006: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/202: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/209: 23 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/244: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/249: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/381: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/386: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/41: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/457: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/484: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/52: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/890: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/105: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1087: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1090: 9 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1115: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1392: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/149: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1497: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1538: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1539: 14 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1582: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1585: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1633: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1669: 8 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1670: 7 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1750: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/177: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1770: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1814: 8 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1815: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1816: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1896: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1917: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1945: 17 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2006: 8 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/202: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/209: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/244: 11 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/249: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/381: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/386: 18 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/41: 4 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/457: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/484: 14 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/52: 8 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/68: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/890: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/105: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1087: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1090: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1115: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1392: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/149: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1497: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1538: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1539: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1582: 3 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1585: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1633: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1669: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1670: 4 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1750: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/177: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1770: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1814: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1815: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1816: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1896: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1917: 3 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1945: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/2006: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/202: 3 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/209: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/244: 7 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/249: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/381: 6 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/386: 8 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/41: 3 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/457: 12 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/484: 13 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/52: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/68: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/890: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/105: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1087: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1090: 6 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1115: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1392: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/149: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1497: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1538: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1539: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1582: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1585: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1633: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1669: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1670: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1750: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/177: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1770: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1814: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1815: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1816: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1896: 5 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1917: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1945: 5 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/2006: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/202: 4 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/209: 5 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/244: 7 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/249: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/381: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/386: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/41: 1 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/457: 4 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/484: 4 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/52: 1 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/68: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/890: 2 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/105: 26 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1087: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1090: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1115: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1392: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/149: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1497: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1538: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1539: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1582: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1585: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1633: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1669: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1670: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1750: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/177: 26 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1770: 26 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1814: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1815: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1816: 26 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1896: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1917: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/1945: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/2006: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/202: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/209: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/244: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/249: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/381: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/386: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/41: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/457: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/484: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/52: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/68: 0 overlaps
Oxidative Phosphorylation WP623 x https://identifiers.org/aop.events/890: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/105: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1087: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1090: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1115: 16 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1392: 16 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/149: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1497: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1538: 16 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1539: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1582: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1585: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1633: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1669: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1670: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1750: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/177: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1770: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1814: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1815: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1816: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1896: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1917: 6 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1945: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/2006: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/202: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/209: 16 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/244: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/249: 16 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/381: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/386: 2 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/41: 6 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/457: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/484: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/52: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/68: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/890: 16 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/105: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1087: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1090: 14 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1115: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1392: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/149: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1497: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1538: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1539: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1582: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1585: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1633: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1669: 10 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1670: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1750: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/177: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1770: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1814: 9 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1815: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1816: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1896: 14 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1917: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1945: 13 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2006: 9 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/202: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/209: 48 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/244: 11 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/249: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/381: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/386: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/41: 9 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/457: 10 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/484: 9 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/52: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/68: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/890: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/105: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1087: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1090: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1115: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1392: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/149: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1497: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1538: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1539: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1582: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1585: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1633: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1669: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1670: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1750: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/177: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1770: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1814: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1815: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1816: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1896: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1917: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1945: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/2006: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/202: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/209: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/244: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/249: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/381: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/386: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/41: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/457: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/484: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/52: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/68: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/890: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/105: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1087: 16 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1090: 12 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1115: 1 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1392: 1 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/149: 16 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1497: 16 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1538: 1 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1539: 13 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1582: 3 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1585: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1633: 16 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1669: 8 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1670: 4 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1750: 16 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/177: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1770: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1814: 8 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1815: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1816: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1896: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1917: 1 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/1945: 12 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/2006: 8 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/202: 7 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/209: 4 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/244: 9 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/249: 1 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/381: 12 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/386: 12 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/41: 2 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/457: 8 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/484: 8 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/52: 4 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/68: 0 overlaps
PDGF Pathway WP2526 x https://identifiers.org/aop.events/890: 1 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/105: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1087: 11 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1090: 9 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1115: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1392: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/149: 11 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1497: 11 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1538: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1539: 14 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1582: 3 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1585: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1633: 11 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1669: 7 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1670: 8 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1750: 11 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/177: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1770: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1814: 7 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1815: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1816: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1896: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1917: 2 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/1945: 10 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/2006: 7 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/202: 4 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/209: 3 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/244: 8 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/249: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/381: 10 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/386: 14 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/41: 3 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/457: 10 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/484: 7 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/52: 7 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/68: 0 overlaps
PDGFR Beta Pathway WP3972 x https://identifiers.org/aop.events/890: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/105: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1087: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1090: 3 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1115: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1392: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/149: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1497: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1538: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1539: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1582: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1585: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1633: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1669: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1670: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1750: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/177: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1770: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1814: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1815: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1816: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1896: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1917: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/1945: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/2006: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/202: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/209: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/244: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/249: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/381: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/386: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/41: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/457: 2 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/484: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/52: 1 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/68: 0 overlaps
PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433 x https://identifiers.org/aop.events/890: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/105: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1087: 23 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1090: 19 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1115: 2 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1392: 2 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/149: 23 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1497: 23 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1538: 2 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1539: 16 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1582: 4 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1585: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1633: 23 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1669: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1670: 20 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1750: 23 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/177: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1770: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1814: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1815: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1816: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1896: 6 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1917: 4 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1945: 27 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/2006: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/202: 5 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/209: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/244: 21 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/249: 2 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/381: 11 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/386: 16 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/41: 8 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/457: 16 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/484: 20 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/52: 10 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/68: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/890: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/105: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1087: 7 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1090: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1115: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1392: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/149: 7 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1497: 7 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1538: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1539: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1582: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1585: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1633: 7 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1669: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1670: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1750: 7 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/177: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1770: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1814: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1815: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1816: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1896: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1917: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1945: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/2006: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/202: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/209: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/244: 3 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/249: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/381: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/386: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/41: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/457: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/484: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/52: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/68: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/890: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1087: 10 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1090: 12 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1115: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1392: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/149: 10 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1497: 10 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1538: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1539: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1585: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1633: 10 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1669: 7 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1670: 5 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1750: 10 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1770: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1814: 7 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1815: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1896: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1917: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1945: 8 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/2006: 7 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/202: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/209: 7 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/244: 9 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/249: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/381: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/386: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/41: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/457: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/484: 8 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/52: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/890: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1087: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1090: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1115: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1392: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/149: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1497: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1538: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1539: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1585: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1633: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1669: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1670: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1750: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1770: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1814: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1815: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1917: 8 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1945: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2006: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/202: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/209: 9 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/244: 9 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/249: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/381: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/386: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/41: 9 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/457: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/484: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/52: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/890: 3 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1087: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1090: 2 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1115: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1392: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/149: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1497: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1538: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1539: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1585: 4 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1633: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1669: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1670: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1750: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1770: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1814: 4 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1815: 4 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1917: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1945: 2 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/2006: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/202: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/209: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/244: 4 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/249: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/381: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/386: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/41: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/457: 3 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/484: 2 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/52: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/890: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/105: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1087: 41 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1090: 154 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1115: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1392: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/149: 41 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1497: 41 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1538: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1539: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1582: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1585: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1633: 41 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1669: 25 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1670: 14 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1750: 41 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/177: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1770: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1814: 27 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1815: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1816: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1896: 7 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1917: 7 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1945: 72 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2006: 25 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/202: 9 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/209: 40 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/244: 32 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/249: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/381: 19 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/386: 24 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/41: 16 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/457: 57 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/484: 62 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/52: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/68: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/890: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/105: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1087: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1090: 10 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1115: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1392: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/149: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1497: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1538: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1539: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1582: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1585: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1633: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1669: 11 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1670: 9 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1750: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/177: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1770: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1814: 11 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1815: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1816: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1896: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1917: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1945: 16 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2006: 11 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/202: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/209: 3 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/244: 12 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/249: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/381: 21 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/386: 21 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/41: 5 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/457: 13 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/484: 13 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/52: 6 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/68: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/890: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/105: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1087: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1090: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1115: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1392: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/149: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1497: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1538: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1539: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1582: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1585: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1633: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1669: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1670: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1750: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/177: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1770: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1814: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1815: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1816: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1896: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1917: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1945: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/2006: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/202: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/209: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/244: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/249: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/381: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/386: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/41: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/457: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/484: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/52: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/68: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/890: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/105: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1087: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1090: 1 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1115: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1392: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/149: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1497: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1538: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1539: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1582: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1585: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1633: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1669: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1670: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1750: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/177: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1770: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1814: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1815: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1816: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1896: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1917: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1945: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/2006: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/202: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/209: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/244: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/249: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/381: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/386: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/41: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/457: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/484: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/52: 1 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/68: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/890: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/105: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1087: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1090: 2 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1115: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1392: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/149: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1497: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1538: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1539: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1582: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1585: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1633: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1669: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1670: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1750: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/177: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1770: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1814: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1815: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1816: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1896: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1917: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1945: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2006: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/202: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/209: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/244: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/249: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/381: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/386: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/41: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/457: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/484: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/52: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/68: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/890: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/105: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1087: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1090: 8 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1115: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1392: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/149: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1497: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1538: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1539: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1582: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1585: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1633: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1669: 18 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1670: 5 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1750: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/177: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1770: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1814: 17 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1815: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1816: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1896: 27 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1917: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1945: 10 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2006: 17 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/202: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/209: 18 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/244: 17 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/249: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/381: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/386: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/41: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/457: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/484: 9 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/52: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/68: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/890: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/105: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1087: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1090: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1115: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1392: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/149: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1497: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1538: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1539: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1582: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1585: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1633: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1669: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1670: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1750: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/177: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1770: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1814: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1815: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1816: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1896: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1917: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1945: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/2006: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/202: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/209: 3 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/244: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/249: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/381: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/386: 1 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/41: 4 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/457: 7 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/484: 2 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/52: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/68: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/890: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/105: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1087: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1090: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1115: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1392: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/149: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1497: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1538: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1539: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1582: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1585: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1633: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1669: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1670: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1750: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/177: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1770: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1814: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1815: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1816: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1896: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1917: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1945: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/2006: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/202: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/209: 13 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/244: 10 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/249: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/381: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/386: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/41: 8 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/457: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/484: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/52: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/68: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/890: 7 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/105: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1087: 19 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1090: 7 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1115: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1392: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/149: 19 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1497: 19 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1538: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1539: 2 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1582: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1585: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1633: 19 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1669: 4 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1670: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1750: 19 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/177: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1770: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1814: 5 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1815: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1816: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1896: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1917: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/1945: 3 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/2006: 4 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/202: 17 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/209: 4 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/244: 6 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/249: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/381: 5 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/386: 10 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/41: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/457: 1 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/484: 3 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/52: 6 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/68: 0 overlaps
Signal Transduction Through IL1R WP4496 x https://identifiers.org/aop.events/890: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/105: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1087: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1090: 26 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1115: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1392: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/149: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1497: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1538: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1539: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1582: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1585: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1633: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1669: 18 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1670: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1750: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/177: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1770: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1814: 18 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1815: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1816: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1896: 12 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1917: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1945: 34 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2006: 18 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/202: 5 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 7 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 19 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/249: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/381: 5 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/386: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/41: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/457: 25 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/484: 34 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/52: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/68: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/890: 1 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/105: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1087: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1090: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1115: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1392: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/149: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1497: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1538: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1539: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1582: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1585: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1633: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1669: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1670: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1750: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/177: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1770: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1814: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1815: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1816: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1896: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1917: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1945: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/2006: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/202: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/209: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/244: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/249: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/381: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/386: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/41: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/457: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/484: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/52: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/68: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/890: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/105: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1087: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1090: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1115: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1392: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/149: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1497: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1538: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1539: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1582: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1585: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1633: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1669: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1670: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1750: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/177: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1770: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1814: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1815: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1816: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1896: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1917: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/1945: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/2006: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/202: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/209: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/244: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/249: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/381: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/386: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/41: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/457: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/484: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/52: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/68: 0 overlaps
Sphingolipid Metabolism Overview WP4725 x https://identifiers.org/aop.events/890: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/105: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1087: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1090: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1115: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1392: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/149: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1497: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1538: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1539: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1582: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1585: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1633: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1669: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1670: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1750: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/177: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1770: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1814: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1815: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1816: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1896: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1917: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1945: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/2006: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/202: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/209: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/244: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/249: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/381: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/386: 1 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/41: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/457: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/484: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/52: 1 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/68: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/890: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/105: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1087: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1090: 7 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1115: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1392: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/149: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1497: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1538: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1539: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1582: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1585: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1633: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1669: 2 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1670: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1750: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/177: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1770: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1814: 2 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1815: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1816: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1896: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1917: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1945: 7 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2006: 2 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/202: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/209: 8 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/244: 2 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/249: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/381: 2 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/386: 3 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/41: 10 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/457: 10 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/484: 4 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/52: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/68: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/890: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/105: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1087: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1090: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1115: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1392: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/149: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1497: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1538: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1539: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1582: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1585: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1633: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1669: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1670: 2 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1750: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/177: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1770: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1814: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1815: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1816: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1896: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1917: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/1945: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/2006: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/202: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/209: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/244: 2 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/249: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/381: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/386: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/41: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/457: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/484: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/52: 1 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/68: 0 overlaps
TCA Cycle In Senescence WP5050 x https://identifiers.org/aop.events/890: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/105: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1087: 15 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1090: 16 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1115: 1 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1392: 1 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/149: 15 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1497: 15 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1538: 1 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1539: 12 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1582: 3 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1585: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1633: 15 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1669: 13 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1670: 7 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1750: 15 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/177: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1770: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1814: 13 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1815: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1816: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1896: 5 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1917: 2 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1945: 14 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/2006: 13 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/202: 8 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/209: 8 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/244: 15 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/249: 1 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/381: 7 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/386: 10 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/41: 5 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/457: 10 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/484: 11 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/52: 4 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/68: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/890: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/105: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1087: 18 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1090: 10 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1115: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1392: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/149: 18 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1497: 18 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1538: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1539: 5 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1582: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1585: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1633: 18 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1669: 10 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1670: 5 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1750: 18 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/177: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1770: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1814: 10 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1815: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1816: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1896: 3 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1917: 2 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1945: 8 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/2006: 10 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/202: 11 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/209: 7 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/244: 12 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/249: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/381: 8 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/386: 9 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/41: 2 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/457: 5 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/484: 8 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/52: 3 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/68: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/890: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/105: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1087: 9 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1090: 12 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1115: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1392: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/149: 9 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1497: 9 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1538: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1539: 8 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1582: 2 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1585: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1633: 9 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1669: 11 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1670: 6 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1750: 9 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/177: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1770: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1814: 11 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1815: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1816: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1896: 6 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1917: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1945: 12 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/2006: 11 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/202: 3 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/209: 8 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/244: 12 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/249: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/381: 7 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/386: 8 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/41: 2 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/457: 6 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/484: 12 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/52: 3 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/68: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/890: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/105: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1087: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1090: 9 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1115: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1392: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/149: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1497: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1538: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1539: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1582: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1585: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1633: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1669: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1670: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1750: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/177: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1770: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1814: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1815: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1816: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1896: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1917: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/1945: 12 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/2006: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/202: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/209: 11 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/244: 2 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/249: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/381: 4 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/386: 4 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/41: 9 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/457: 7 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/484: 8 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/52: 1 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/68: 0 overlaps
Target Of Rapamycin Signaling WP1471 x https://identifiers.org/aop.events/890: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/105: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1087: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1090: 15 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1115: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1392: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/149: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1497: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1538: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1539: 4 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1582: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1585: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1633: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1669: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1670: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1750: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/177: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1770: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1814: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1815: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1816: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1896: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1917: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1945: 16 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2006: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/202: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/209: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/244: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/249: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/381: 7 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/386: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/41: 8 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/457: 12 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/484: 11 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/52: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/68: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/890: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/105: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1087: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1090: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1115: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1392: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/149: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1497: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1538: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1539: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1582: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1585: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1633: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1669: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1670: 7 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1750: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/177: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1770: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1814: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1815: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1816: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1896: 6 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1917: 1 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1945: 12 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/2006: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/202: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/209: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/244: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/249: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/381: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/386: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/41: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/457: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/484: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/52: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/68: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/890: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/105: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1087: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1090: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1115: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1392: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/149: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1497: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1538: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1539: 1 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1582: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1585: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1633: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1669: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1670: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1750: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/177: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1770: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1814: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1815: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1816: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1896: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1917: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1945: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2006: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/202: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/209: 6 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/244: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/249: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/381: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/386: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/41: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/457: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/484: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/52: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/68: 1 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/890: 4 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/105: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1087: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1090: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1115: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1392: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/149: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1497: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1538: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1539: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1582: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1585: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1633: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1669: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1670: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1750: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/177: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1770: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1814: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1815: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1816: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1896: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1917: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1945: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/2006: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/202: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/209: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/244: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/249: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/381: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/386: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/41: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/457: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/484: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/52: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/68: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/890: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/105: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1087: 1 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1090: 5 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1115: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1392: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/149: 1 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1497: 1 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1538: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1539: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1582: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1585: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1633: 1 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1669: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1670: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1750: 1 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/177: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1770: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1814: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1815: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1816: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1896: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1917: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/1945: 1 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/2006: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/202: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/209: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/244: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/249: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/381: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/386: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/41: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/457: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/484: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/52: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/68: 0 overlaps
Transcription Co Factors SKI And SKIL Protein Partners WP4533 x https://identifiers.org/aop.events/890: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/105: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1087: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1090: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1115: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1392: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/149: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1497: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1538: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1539: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1582: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1585: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1633: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1669: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1670: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1750: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/177: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1770: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1814: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1815: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1816: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1896: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1917: 12 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1945: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2006: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/202: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/209: 7 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/244: 12 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/249: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/381: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/386: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/41: 12 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/457: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/484: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/52: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/68: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/890: 3 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/105: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1087: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1090: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1115: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1392: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/149: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1497: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1538: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1539: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1582: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1585: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1633: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1669: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1670: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1750: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/177: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1770: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1814: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1815: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1816: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1896: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1917: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/1945: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/2006: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/202: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/209: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/244: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/249: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/381: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/386: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/41: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/457: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/484: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/52: 0 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/68: 3 overlaps
Urea Cycle And Metabolism Of Amino Groups WP497 x https://identifiers.org/aop.events/890: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/105: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1087: 31 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 34 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1115: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1392: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/149: 31 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1497: 31 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1538: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1539: 29 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1582: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1585: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1633: 31 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1669: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1670: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1750: 31 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/177: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1770: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1814: 13 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1815: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1816: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1896: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1917: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1945: 30 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2006: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/202: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 22 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 23 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/249: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/381: 26 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/386: 30 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/41: 17 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/457: 20 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/484: 21 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/52: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/68: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/890: 2 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/105: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1087: 8 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1090: 5 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1115: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1392: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/149: 8 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1497: 8 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1538: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1539: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1582: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1585: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1633: 8 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1669: 3 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1670: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1750: 8 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/177: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1770: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1814: 3 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1815: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1816: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1896: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1917: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/1945: 3 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/2006: 3 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/202: 6 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/209: 2 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/244: 4 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/249: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/381: 4 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/386: 6 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/41: 1 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/457: 4 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/484: 3 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/52: 3 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/68: 0 overlaps
Vitamin D In Inflammatory Diseases WP4482 x https://identifiers.org/aop.events/890: 1 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/105: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1087: 1 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1090: 5 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1115: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1392: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/149: 1 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1497: 1 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1538: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1539: 2 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1582: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1585: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1633: 1 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1669: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1670: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1750: 1 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/177: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1770: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1814: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1815: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1816: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1896: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1917: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/1945: 2 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/2006: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/202: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/209: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/244: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/249: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/381: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/386: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/41: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/457: 3 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/484: 2 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/52: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/68: 0 overlaps
miR 509 3P Alteration Of YAP1 ECM Axis WP3967 x https://identifiers.org/aop.events/890: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/105: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1087: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1090: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1115: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1392: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/149: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1497: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1538: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1539: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1582: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1585: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1633: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1669: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1670: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1750: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/177: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1770: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1814: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1815: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1816: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1896: 2 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1917: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1945: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/2006: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/202: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/209: 2 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/244: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/249: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/381: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/386: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/41: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/457: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/484: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/52: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/68: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/890: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/105: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1087: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1090: 7 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1115: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1392: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/149: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1497: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1538: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1539: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1582: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1585: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1633: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1669: 33 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1670: 8 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1750: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/177: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1770: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1814: 32 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1815: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1816: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1896: 32 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1917: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1945: 12 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2006: 32 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/202: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/209: 18 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/244: 32 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/249: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/381: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/386: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/41: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/457: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/484: 11 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/52: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/68: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/890: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/105: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1087: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1090: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1115: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1392: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/149: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1497: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1538: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1539: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1582: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1585: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1633: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1669: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1670: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1750: 3 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/177: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1770: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1814: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1815: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1816: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1896: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1917: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/1945: 6 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/2006: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/202: 2 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/209: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/244: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/249: 1 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/381: 4 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/386: 8 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/41: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/457: 6 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/484: 6 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/52: 6 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/68: 0 overlaps
ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337 x https://identifiers.org/aop.events/890: 1 overlaps
title of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'ATR', 'CHEK1'}, number: 3
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'ATR', 'CHEK1'}, number: 3
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'ATR', 'RPA2', 'RPA1', 'CHEK1', 'RPA3'}, number: 5
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'ATR', 'CHEK1'}, number: 3
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ATR', 'RPA2', 'RPA1', 'CHEK1', 'RPA3'}, number: 5
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2', 'ATR', 'CHEK1'}, number: 3
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'LAMC2', 'PIK3R1', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'LAMB1', 'RAC1', 'LAMA5'}, number: 12
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'LAMC2', 'ITGA6', 'SOS1', 'LAMA1', 'LAMB1', 'LAMB3', 'SHC1', 'LAMA5', 'LAMA2'}, number: 11
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'LAMC2', 'PIK3R1', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'LAMB1', 'RAC1', 'LAMA5'}, number: 12
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'LAMC2', 'PIK3R1', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'LAMB1', 'RAC1', 'LAMA5'}, number: 12
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'RAC1', 'SHC1'}, number: 9
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'LAMC2', 'PIK3R1', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'LAMB1', 'RAC1', 'LAMA5'}, number: 12
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1'}, number: 5
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'LAMC2', 'PIK3R1', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'LAMB1', 'RAC1', 'LAMA5'}, number: 12
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'LAMC2', 'ITGA6', 'PIK3R1', 'IRS1', 'LAMB3', 'LAMA1', 'SOS1', 'PIK3R2', 'PTPN11', 'LAMB1', 'RAC1', 'SHC1', 'LAMA5', 'LAMA2'}, number: 17
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PTPN11', 'PIK3R1', 'PIK3R2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 8
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'IRS2', 'HRAS', 'PRKCD', 'SOS1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 10
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'IRS2', 'PRKCD', 'PIK3R2', 'PTPN11', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 10
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R2', 'IRS2', 'PIK3R1'}, number: 4
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMC1', 'IRS2', 'HRAS', 'LAMC2', 'ITGA6', 'PIK3R1', 'IRS1', 'SOS1', 'LAMA1', 'PIK3R2', 'LAMB1', 'LAMB3', 'LAMA5', 'LAMA2'}, number: 14
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'IRS2', 'LAMC2', 'ITGA6', 'PIK3R1', 'IRS1', 'LAMB3', 'LAMA1', 'SOS1', 'PIK3R2', 'LAMB1', 'RAC1', 'LAMA5', 'LAMA2'}, number: 16
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'IRS1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'SLC25A5', 'SLC25A4'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'MAP3K5', 'PIK3CA', 'DKK1', 'NFKB1', 'IL1B', 'DVL2', 'PIK3CD', 'FZD7', 'PLCB4', 'DDIT3', 'FRAT2', 'INSR', 'CSNK2A1', 'FZD1', 'FRAT1', 'CSNK1A1', 'ULK1', 'MAP2K2', 'IL6', 'WNT5B', 'CSF1', 'AKT3', 'ATG13', 'MAPK10', 'FZD2', 'ITPR3'}, number: 27
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'PIK3R2', 'PIK3R1'}, number: 5
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'GNAQ'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'BID', 'DDIT3', 'XBP1'}, number: 5
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'DVL2', 'HRAS', 'WNT5B', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'FRAT1', 'PIK3R2', 'PIK3CA', 'CDK5', 'MAPK10', 'PIK3R1', 'CASP9', 'NFKB1'}, number: 17
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'HRAS', 'BID', 'BRAF', 'PIK3CD', 'AKT3', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CASP9'}, number: 11
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'SLC25A5', 'SLC25A4'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2S1', 'HRAS', 'XBP1', 'CDK5', 'PIK3CA', 'NFKB1', 'IL1B', 'DVL2', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP9', 'IRS1', 'CASP8', 'INSR', 'FRAT1', 'WNT5B', 'BID', 'AKT3', 'MAPK10', 'PIK3R1'}, number: 21
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'BID', 'DDIT3', 'XBP1'}, number: 5
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'SLC25A5', 'SLC25A4'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID', 'CASP9', 'CDK5'}, number: 4
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'INSR'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'ATG101', 'PIK3CA', 'NFKB1', 'CALM3', 'RELA', 'PIK3CD', 'PIK3R2', 'CASP9', 'IRS1', 'INSR', 'ULK1', 'MAP2K2', 'IL6', 'CSF1', 'AKT3', 'ATG13', 'MAPK10', 'PIK3R1'}, number: 19
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'DVL2', 'HRAS', 'WNT5B', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'FRAT1', 'PIK3R2', 'PIK3CA', 'CDK5', 'MAPK10', 'PIK3R1', 'CASP9', 'NFKB1'}, number: 17
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'IL1B', 'RELA', 'IL1A', 'PIK3R2', 'PIK3R1', 'NFKB1'}, number: 7
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DVL2', 'WNT5B', 'FZD2', 'FRAT2', 'PPP3CC', 'CSNK2A1', 'FZD7', 'PLCB4', 'FRAT1', 'FZD1', 'MAPK10', 'CSNK1A1', 'DKK1', 'ULK1', 'NFKB1'}, number: 15
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2S1', 'HRAS', 'XBP1', 'CDK5', 'PIK3CA', 'NFKB1', 'IL1B', 'DVL2', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP9', 'IRS1', 'CASP8', 'INSR', 'FRAT1', 'WNT5B', 'BID', 'AKT3', 'MAPK10', 'PIK3R1'}, number: 21
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'EIF2S1', 'HRAS', 'IRS2', 'RELA', 'IRS1', 'BRAF', 'CSNK2A1', 'ADAM17', 'PIK3R2', 'CDK5', 'MAPK10', 'PIK3R1', 'NFKB1'}, number: 14
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EIF2S1', 'HRAS', 'CDK5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PLCB4', 'PIK3R2', 'IRS1', 'IRS2', 'IL1A', 'INSR', 'CSNK2A1', 'MAP2K2', 'IL6', 'PIK3R1', 'TNFRSF1A', 'MAPK10', 'ADAM17'}, number: 20
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IRS2', 'PIK3CD', 'INSR', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 6
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'IL6', 'WNT5B', 'CSF1', 'PIK3CD', 'INSR', 'AKT3', 'DDIT3', 'PIK3R2', 'CASP9', 'FZD1', 'PIK3CA', 'PIK3R1', 'ULK1', 'IRS1'}, number: 17
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'IL6', 'CSF1', 'RELA', 'IRS1', 'PIK3CD', 'INSR', 'AKT3', 'PIK3R2', 'CASP9', 'PIK3CA', 'PIK3R1', 'ULK1', 'NFKB1'}, number: 16
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'IL1A', 'IRS1', 'PIK3CD', 'INSR', 'TNFRSF1A', 'PLCB4', 'PIK3CA', 'NFKB1'}, number: 10
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Alzheimer 39 S Disease And miRNA Effects WP2059, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'SLC25A5', 'SLC25A4'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'MAP3K5', 'PIK3CA', 'DKK1', 'NFKB1', 'IL1B', 'DVL2', 'PIK3CD', 'FZD7', 'PLCB4', 'DDIT3', 'FRAT2', 'INSR', 'CSNK2A1', 'FZD1', 'FRAT1', 'CSNK1A1', 'ULK1', 'MAP2K2', 'IL6', 'WNT5B', 'CSF1', 'AKT3', 'ATG13', 'MAPK10', 'FZD2', 'ITPR3'}, number: 27
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'PIK3R2', 'PIK3R1'}, number: 5
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'GNAQ'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'BID', 'DDIT3', 'XBP1'}, number: 5
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'DVL2', 'HRAS', 'WNT5B', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'FRAT1', 'PIK3R2', 'PIK3CA', 'CDK5', 'MAPK10', 'PIK3R1', 'CASP9', 'NFKB1'}, number: 17
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'HRAS', 'BID', 'BRAF', 'PIK3CD', 'AKT3', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CASP9'}, number: 11
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HRAS', 'BRAF', 'MAP3K5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP8', 'IL1A', 'MAP2K2', 'IL6', 'CSF1', 'PPP3CC', 'AKT3', 'TNFRSF1A', 'MAPK10', 'PIK3R1'}, number: 20
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'SLC25A5', 'SLC25A4'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2S1', 'HRAS', 'XBP1', 'CDK5', 'PIK3CA', 'NFKB1', 'IL1B', 'DVL2', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP9', 'IRS1', 'CASP8', 'INSR', 'FRAT1', 'WNT5B', 'BID', 'AKT3', 'MAPK10', 'PIK3R1'}, number: 21
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'BID', 'DDIT3', 'XBP1'}, number: 5
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'SLC25A5', 'SLC25A4'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID', 'CASP9', 'CDK5'}, number: 4
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'INSR'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'ATG101', 'PIK3CA', 'NFKB1', 'CALM3', 'RELA', 'PIK3CD', 'PIK3R2', 'CASP9', 'IRS1', 'INSR', 'ULK1', 'MAP2K2', 'IL6', 'CSF1', 'AKT3', 'ATG13', 'MAPK10', 'PIK3R1'}, number: 19
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'DVL2', 'HRAS', 'WNT5B', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'FRAT1', 'PIK3R2', 'PIK3CA', 'CDK5', 'MAPK10', 'PIK3R1', 'CASP9', 'NFKB1'}, number: 17
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'IL1B', 'RELA', 'IL1A', 'PIK3R2', 'PIK3R1', 'NFKB1'}, number: 7
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DVL2', 'WNT5B', 'FZD2', 'FRAT2', 'PPP3CC', 'CSNK2A1', 'FZD7', 'PLCB4', 'FRAT1', 'FZD1', 'MAPK10', 'CSNK1A1', 'DKK1', 'ULK1', 'NFKB1'}, number: 15
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2S1', 'HRAS', 'XBP1', 'CDK5', 'PIK3CA', 'NFKB1', 'IL1B', 'DVL2', 'PIK3CD', 'DDIT3', 'PIK3R2', 'CASP9', 'IRS1', 'CASP8', 'INSR', 'FRAT1', 'WNT5B', 'BID', 'AKT3', 'MAPK10', 'PIK3R1'}, number: 21
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'EIF2S1', 'HRAS', 'IRS2', 'RELA', 'IRS1', 'BRAF', 'CSNK2A1', 'ADAM17', 'PIK3R2', 'CDK5', 'MAPK10', 'PIK3R1', 'NFKB1'}, number: 14
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EIF2S1', 'HRAS', 'CDK5', 'PIK3CA', 'NFKB1', 'IL1B', 'RELA', 'PLCB4', 'PIK3R2', 'IRS1', 'IRS2', 'IL1A', 'INSR', 'CSNK2A1', 'MAP2K2', 'IL6', 'PIK3R1', 'TNFRSF1A', 'MAPK10', 'ADAM17'}, number: 20
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IRS2', 'PIK3CD', 'INSR', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 6
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'IL6', 'WNT5B', 'CSF1', 'PIK3CD', 'INSR', 'AKT3', 'DDIT3', 'PIK3R2', 'CASP9', 'FZD1', 'PIK3CA', 'PIK3R1', 'ULK1', 'IRS1'}, number: 17
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'IL6', 'CSF1', 'RELA', 'IRS1', 'PIK3CD', 'INSR', 'AKT3', 'PIK3R2', 'CASP9', 'PIK3CA', 'PIK3R1', 'ULK1', 'NFKB1'}, number: 16
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'IL1A', 'IRS1', 'PIK3CD', 'INSR', 'TNFRSF1A', 'PLCB4', 'PIK3CA', 'NFKB1'}, number: 10
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Alzheimer 39 S Disease WP5124, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GSR', 'MAOA'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GSR', 'MAOA'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GSR', 'MAOA'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSR', 'GCLM'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSS', 'ACADM', 'GCLM', 'GSR', 'EHHADH', 'IDH1', 'ACAA1', 'MAOA'}, number: 8
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSR', 'GCLM'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GSR', 'MAOA'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS', 'GOT1', 'GLUL'}, number: 3
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GSR', 'GCLM'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GLS', 'GOT1', 'GLUL'}, number: 3
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2', 'GLUD1', 'PYCR1', 'ALDH18A1', 'GLS'}, number: 5
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GSR', 'MAOA'}, number: 2
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'MAP2K2', 'HRAS', 'SOS1', 'PAK1', 'STAT1', 'RAP1A', 'PIK3CA', 'PTPN11', 'JUN', 'RASA1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'TSC1', 'HRAS', 'NDRG1', 'BRCA1', 'SOS1', 'BARD1', 'CDK2', 'PAK1', 'MDM2', 'STAT1', 'CCND1', 'PIK3CA', 'JUN', 'JAK1'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'MAP2K2', 'HRAS', 'SOS1', 'PAK1', 'STAT1', 'RAP1A', 'PIK3CA', 'PTPN11', 'JUN', 'RASA1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'MAP2K2', 'HRAS', 'SOS1', 'PAK1', 'STAT1', 'RAP1A', 'PIK3CA', 'PTPN11', 'JUN', 'RASA1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'SPRY2', 'SOS1', 'PAK1', 'STAT1', 'RASA1', 'RAP1A', 'PTPN11', 'JUN', 'STAT3', 'JAK1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1', 'STAT3', 'CDK1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'MAP2K2', 'HRAS', 'SOS1', 'PAK1', 'STAT1', 'RAP1A', 'PIK3CA', 'PTPN11', 'JUN', 'RASA1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'SOS1', 'CDK2', 'CHEK1', 'PRKDC', 'MDM2', 'CCND1', 'PIK3CA', 'JUN', 'CASP9'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'MAP2K2', 'HRAS', 'SOS1', 'CCND1', 'PIK3CA', 'STAT3', 'CASP9'}, number: 9
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'MAP2K2', 'HRAS', 'SOS1', 'PAK1', 'STAT1', 'RAP1A', 'PIK3CA', 'PTPN11', 'JUN', 'RASA1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'SOS1', 'CDK2', 'CHEK1', 'PRKDC', 'MDM2', 'CCND1', 'PIK3CA', 'JUN', 'CASP9'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CDK4', 'ATR', 'CDC25A', 'CDK1', 'MSH6', 'BRCA1', 'CDK2', 'CHEK1', 'PRKDC', 'MSH2', 'MDM2', 'RAP1A', 'CCND1', 'CASP9'}, number: 15
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'TSC1', 'HRAS', 'BRCA1', 'SOS1', 'CDK2', 'PAK1', 'CASP9', 'RASA1', 'RAP1A', 'CCND1', 'PIK3CA', 'PTPN11', 'MDM2', 'JAK1'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'SOS1', 'CDK2', 'CHEK1', 'PRKDC', 'MDM2', 'CCND1', 'PIK3CA', 'JUN', 'CASP9'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PTPN11', 'JUN'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ATR', 'CDC25A', 'MSH6', 'BRCA1', 'CDK2', 'CHEK1', 'PRKDC', 'MSH2', 'RAP1A', 'CCND1', 'JUN'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'SOS1', 'CDK2', 'CHEK1', 'PRKDC', 'MDM2', 'CCND1', 'PIK3CA', 'JUN', 'CASP9'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'HRAS', 'SOS1', 'STAT1', 'RAP1A', 'PTPN11', 'JUN', 'STAT3'}, number: 9
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'SMAD3', 'STAT1', 'RAP1A', 'PIK3CA', 'PTPN11', 'JUN', 'STAT3', 'JAK1'}, number: 10
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA', 'TSC1', 'FKBP5'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'FOXA1', 'HRAS', 'SMAD3', 'SOS1', 'MDM2', 'CASP9', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'TSC1', 'HRAS', 'FOXA1', 'BRCA1', 'SOS1', 'CDK2', 'MDM2', 'JAK1', 'CCND1', 'PIK3CA', 'CASP9'}, number: 13
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SMAD3', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'RAC1', 'RELA', 'EGFR', 'PIK3R2', 'PIK3R1', 'FLNA', 'JUN'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'BRCA1', 'MDM2', 'CCND1', 'JUN', 'CCNE1'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'RAC1', 'RELA', 'EGFR', 'PIK3R2', 'PIK3R1', 'FLNA', 'JUN'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'RAC1', 'RELA', 'EGFR', 'PIK3R2', 'PIK3R1', 'FLNA', 'JUN'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RAC1', 'EGFR', 'CAV1', 'NCOA3', 'PIK3R2', 'PIK3R1', 'JUN', 'STAT3'}, number: 8
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1', 'STAT3'}, number: 2
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'RAC1', 'RELA', 'EGFR', 'PIK3R2', 'PIK3R1', 'FLNA', 'JUN'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'JUN', 'PIK3R2', 'MDM2', 'CCND1', 'PIK3R1', 'RAC1', 'CCNE1'}, number: 9
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'EGFR', 'PIK3R2', 'CCND1', 'PIK3R1', 'STAT3'}, number: 5
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'RAC1', 'RELA', 'EGFR', 'PIK3R2', 'PIK3R1', 'FLNA', 'JUN'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'JUN', 'PIK3R2', 'MDM2', 'CCND1', 'PIK3R1', 'RAC1', 'CCNE1'}, number: 9
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BRCA1', 'MDM2', 'CCNE1', 'CCND1'}, number: 4
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRDX1'}, number: 1
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELA', 'EGFR', 'BRCA1', 'MDM2', 'PIK3R2', 'CCND1', 'PIK3R1', 'RAC1', 'CCNE1'}, number: 9
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'JUN', 'PIK3R2', 'MDM2', 'CCND1', 'PIK3R1', 'RAC1', 'CCNE1'}, number: 9
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PIK3R1', 'JUN', 'PIK3R2', 'RELA'}, number: 4
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RAC1', 'BRCA1', 'PRDX1', 'CCND1', 'JUN', 'CCNE1'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'JUN', 'PIK3R2', 'PRDX1', 'CCND1', 'MDM2', 'PIK3R1', 'RAC1', 'CCNE1'}, number: 10
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAC1', 'RELA', 'PIK3R2', 'PIK3R1', 'JUN', 'STAT3'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RELA', 'SMAD3', 'JUN', 'PIK3R2', 'PIK3R1', 'RAC1', 'STAT3'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'PIK3R2', 'PRDX1'}, number: 3
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'SMAD3', 'MDM2', 'PIK3R2', 'PIK3R1', 'STAT3'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RELA', 'EGFR', 'BRCA1', 'MDM2', 'PIK3R2', 'CCND1', 'PIK3R1', 'RAC1', 'CCNE1'}, number: 9
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'STAT3', 'SMAD3'}, number: 2
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'IL12A', 'CCL2', 'NFKB1'}, number: 8
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'IL6', 'CCL2', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'IL12A', 'CCL2', 'NFKB1'}, number: 8
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'IL12A', 'CCL2', 'NFKB1'}, number: 8
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'IL12A', 'CCL2', 'NFKB1'}, number: 8
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'IL12A', 'CCL2', 'NFKB1'}, number: 8
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'NFKB1'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NQO1', 'HMOX1', 'RXRA', 'KEAP1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NQO1', 'CCL2', 'HMOX1', 'RXRA', 'KEAP1', 'NFKB1'}, number: 9
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'IL1B', 'GCLM', 'GCLC', 'NQO1', 'HMOX1', 'RXRA', 'KEAP1', 'NFKB1'}, number: 9
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKBIA', 'IL12A', 'NFKB1'}, number: 6
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NQO1', 'HMOX1', 'RXRA', 'KEAP1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RXRA', 'IL6'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'IL12A', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'IL1R2', 'MAP3K14', 'NFKBIA', 'IL1R1', 'TRAF3', 'TOLLIP', 'HSPA1A', 'TNFRSF1A', 'MAP3K5', 'MYD88', 'JUN', 'NFKB1'}, number: 13
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'MAP3K5', 'NFKB1'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'IL1R2', 'MAP3K14', 'NFKBIA', 'IL1R1', 'TRAF3', 'TOLLIP', 'HSPA1A', 'TNFRSF1A', 'MAP3K5', 'MYD88', 'JUN', 'NFKB1'}, number: 13
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'IL1R2', 'MAP3K14', 'NFKBIA', 'IL1R1', 'TRAF3', 'TOLLIP', 'HSPA1A', 'TNFRSF1A', 'MAP3K5', 'MYD88', 'JUN', 'NFKB1'}, number: 13
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B', 'CASP2', 'BCL2L11'}, number: 5
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'IL1R2', 'MAP3K14', 'NFKBIA', 'IL1R1', 'TRAF3', 'TOLLIP', 'HSPA1A', 'TNFRSF1A', 'MAP3K5', 'MYD88', 'JUN', 'NFKB1'}, number: 13
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'BCL2L11', 'CDKN2A', 'JUN', 'CASP9', 'NFKB1'}, number: 9
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDKN2A', 'BID', 'CASP9'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'IL1R2', 'MAP3K14', 'NFKBIA', 'IL1R1', 'TRAF3', 'TOLLIP', 'HSPA1A', 'TNFRSF1A', 'MAP3K5', 'MYD88', 'JUN', 'NFKB1'}, number: 13
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'CASP2', 'BCL2L11', 'CDKN2A', 'JUN', 'CASP9', 'NFKB1'}, number: 10
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B', 'CASP2', 'BCL2L11'}, number: 5
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'CASP9'}, number: 5
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2L11', 'BCL2L1', 'CASP9', 'NFKB1'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'BCL2L11', 'CDKN2A', 'JUN', 'CASP9', 'NFKB1'}, number: 9
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP3K14', 'NFKBIA', 'IL1R1', 'TOLLIP', 'MYD88', 'JUN', 'NFKB1'}, number: 7
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TNFRSF10D', 'PMAIP1', 'TNFRSF10B', 'HSPA1A', 'JUN', 'NFKB1'}, number: 6
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'HSPA1A', 'CASP2', 'BCL2L11', 'CDKN2A', 'JUN', 'CASP9', 'NFKB1'}, number: 11
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'BCL2L11', 'NFKBIA', 'JUN', 'NFKB1'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1R2', 'NFKBIA', 'IL1R1', 'TNFRSF1A', 'BCL2L11', 'JUN', 'NFKB1'}, number: 7
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2L11', 'BCL2L1', 'CASP9', 'NFKB1'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TNFRSF1A', 'IL1R2', 'IL1R1', 'NFKB1'}, number: 4
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'PAK2', 'JUND', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CTNNA1', 'PAK2', 'CDKN1A', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'PAK2', 'JUND', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'PAK2', 'JUND', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUND', 'ABL1', 'VAV3'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'PAK2', 'JUND', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'PAK2', 'JUND', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'ABL1', 'TNFRSF10B'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NQO1', 'NRG1', 'GCLC', 'SQSTM1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ETS1', 'ABL1', 'CDKN1B', 'CDKN1A', 'PAK2', 'F2R', 'NFKB1'}, number: 7
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'NFKB1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'GCLC', 'TNFRSF10B', 'CDKN1A', 'NQO1', 'NRG1', 'NFKB1'}, number: 7
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'GCLC', 'TNFRSF10B', 'ABL1', 'CDKN1B', 'CDKN1A', 'NQO1', 'NRG1', 'NFKB1'}, number: 9
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKB1', 'SQSTM1', 'VAV3'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NFKB1', 'SQSTM1', 'SMAD7', 'VAV3'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SQSTM1', 'GCLC', 'CDKN1A', 'NQO1', 'NRG1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CTNNA1', 'CDKN1B', 'CDKN1A', 'F2R'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'F2R', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SMAD7', 'NFKB1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'RELA', 'NFKBIA', 'MAP3K1', 'TNFRSF1A', 'NFKB1', 'PIK3R1', 'JUN', 'MAP2K4', 'TRAF3'}, number: 11
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP3K1', 'MDM2', 'MAPK10', 'CDKN2A', 'JUN', 'MAP2K4', 'NFKB1'}, number: 7
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'RELA', 'NFKBIA', 'MAP3K1', 'TNFRSF1A', 'NFKB1', 'PIK3R1', 'JUN', 'MAP2K4', 'TRAF3'}, number: 11
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'RELA', 'NFKBIA', 'MAP3K1', 'TNFRSF1A', 'NFKB1', 'PIK3R1', 'JUN', 'MAP2K4', 'TRAF3'}, number: 11
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP3K1', 'PIK3R1', 'JUN'}, number: 3
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B', 'CASP2', 'BCL2L11'}, number: 5
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'RELA', 'NFKBIA', 'MAP3K1', 'TNFRSF1A', 'NFKB1', 'PIK3R1', 'JUN', 'MAP2K4', 'TRAF3'}, number: 11
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'MAP3K1', 'MDM2', 'BCL2L11', 'MAPK10', 'CDKN2A', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 13
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'BID', 'CDKN2A', 'PIK3R1', 'CASP9'}, number: 5
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'RELA', 'NFKBIA', 'MAP3K1', 'TNFRSF1A', 'NFKB1', 'PIK3R1', 'JUN', 'MAP2K4', 'TRAF3'}, number: 11
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'MAP3K1', 'MDM2', 'CASP2', 'BCL2L11', 'MAPK10', 'CDKN2A', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 14
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B', 'CASP2', 'BCL2L11'}, number: 5
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'MDM2', 'CASP9'}, number: 6
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELA', 'BCL2L1', 'MDM2', 'BCL2L11', 'MAPK10', 'PIK3R1', 'CASP9', 'NFKB1'}, number: 8
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'MAP3K1', 'MDM2', 'BCL2L11', 'MAPK10', 'CDKN2A', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 13
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKBIE', 'RELA', 'NFKBIA', 'MAP3K1', 'PIK3R1', 'JUN', 'MAP2K4', 'NFKB1'}, number: 8
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1', 'TNFRSF10B', 'MAPK10', 'JUN', 'NFKB1'}, number: 5
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'BID', 'PMAIP1', 'TNFRSF10B', 'MAP3K1', 'MDM2', 'CASP2', 'BCL2L11', 'MAPK10', 'CDKN2A', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 14
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'MAP3K1', 'BCL2L11', 'MAPK10', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'MAP3K1', 'TNFRSF1A', 'BCL2L11', 'MAPK10', 'PIK3R1', 'JUN', 'NFKB1'}, number: 9
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3R1', 'MDM2', 'CASP9'}, number: 3
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RELA', 'BCL2L1', 'MDM2', 'BCL2L11', 'PIK3R1', 'CASP9', 'NFKB1'}, number: 7
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TNFRSF1A', 'NFKB1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'CXCL8', 'HRAS', 'EGFR', 'BRAF', 'FGFR3', 'RPS6KA5', 'PIK3R2', 'PIK3R1', 'EGF'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'EGFR', 'FGFR3', 'RPS6KA5', 'CDH1', 'HBEGF', 'MDM2', 'CDKN1A', 'CCND1', 'CDKN2A', 'VEGFA', 'EGF'}, number: 14
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'CXCL8', 'HRAS', 'EGFR', 'BRAF', 'FGFR3', 'RPS6KA5', 'PIK3R2', 'PIK3R1', 'EGF'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'CXCL8', 'HRAS', 'EGFR', 'BRAF', 'FGFR3', 'RPS6KA5', 'PIK3R2', 'PIK3R1', 'EGF'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EGFR', 'BRAF', 'ERBB2', 'RPS6KA5', 'PIK3R2', 'PIK3R1', 'EGF'}, number: 9
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'CXCL8', 'HRAS', 'EGFR', 'BRAF', 'FGFR3', 'RPS6KA5', 'PIK3R2', 'PIK3R1', 'EGF'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'HRAS', 'ERBB2', 'MDM2', 'PIK3R2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1'}, number: 9
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'EGFR', 'BRAF', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1', 'EGF'}, number: 12
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'CXCL8', 'HRAS', 'EGFR', 'BRAF', 'FGFR3', 'RPS6KA5', 'PIK3R2', 'PIK3R1', 'EGF'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'HRAS', 'ERBB2', 'MDM2', 'PIK3R2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1'}, number: 9
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'MDM2', 'CDKN1A', 'CCND1'}, number: 4
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'EGFR', 'FGFR3', 'MDM2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'VEGFA', 'EGF'}, number: 12
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'HRAS', 'ERBB2', 'MDM2', 'PIK3R2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1'}, number: 9
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'PIK3R2'}, number: 3
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HBEGF', 'CDKN1A', 'CCND1'}, number: 3
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'HRAS', 'ERBB2', 'HBEGF', 'MDM2', 'PIK3R2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'RPS6KA5', 'PIK3R2', 'PIK3R1'}, number: 6
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RPS6KA5', 'PIK3R2', 'PIK3R1'}, number: 5
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'HBEGF', 'PIK3R2', 'PIK3R1'}, number: 4
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EGFR', 'FGFR3', 'MDM2', 'PIK3R2', 'CDKN1A', 'PIK3R1', 'VEGFA', 'EGF'}, number: 10
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'EGFR', 'FGFR3', 'MDM2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'VEGFA', 'EGF'}, number: 12
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'IL7', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'PRKACB', 'PIK3R2', 'TRAF3', 'CASP8', 'TGFB2', 'IL15', 'RAC2', 'NFKBIA', 'TGFBR2', 'IL12A', 'IFNAR1', 'LAMB1', 'JUN', 'EGF', 'GNA12', 'GADD45A', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'TGFBR1', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 47
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'COL4A4', 'COL4A2', 'LAMA1', 'FGFR1', 'SLC2A1', 'PIK3CA', 'CTBP1', 'FN1', 'VEGFA', 'LAMC3', 'LAMB3', 'CCNE1', 'LAMA2', 'NFKB1', 'CDK4', 'DVL2', 'PDGFA', 'FGFR4', 'PIK3CD', 'KITLG', 'FGFR3', 'FZD7', 'CDH1', 'COL4A1', 'PLCB4', 'TGFA', 'COL4A3', 'JAK1', 'FRAT2', 'ITGA2', 'MET', 'CTNNA1', 'CDK2', 'FZD1', 'CCND1', 'FRAT1', 'CDKN2A', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'WNT5B', 'COL4A5', 'EGFR', 'ITGA6', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'MDM2', 'CDKN1A', 'FGFR2', 'ITGA3', 'STAT1', 'MAPK10', 'FZD2'}, number: 61
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'IL7', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'PRKACB', 'PIK3R2', 'TRAF3', 'CASP8', 'TGFB2', 'IL15', 'RAC2', 'NFKBIA', 'TGFBR2', 'IL12A', 'IFNAR1', 'LAMB1', 'JUN', 'EGF', 'GNA12', 'GADD45A', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'TGFBR1', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 47
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'IL7', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'PRKACB', 'PIK3R2', 'TRAF3', 'CASP8', 'TGFB2', 'IL15', 'RAC2', 'NFKBIA', 'TGFBR2', 'IL12A', 'IFNAR1', 'LAMB1', 'JUN', 'EGF', 'GNA12', 'GADD45A', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'TGFBR1', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 47
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'RAC1', 'STAT5A', 'PIK3R2', 'STAT3', 'JAK1', 'RALA', 'JUN', 'EGF', 'MAP2K2', 'PRKCB', 'EGFR', 'JAK2', 'ERBB2', 'SOS1', 'ABL1', 'RPS6KA5', 'NCOA3', 'STAT1', 'CBL', 'PIK3R1', 'RALGDS'}, number: 25
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'ABL1', 'PIK3CA', 'GNAQ', 'RAC1', 'STAT3'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'PMAIP1', 'BCL2L11'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'IL7', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'PRKACB', 'PIK3R2', 'TRAF3', 'CASP8', 'TGFB2', 'IL15', 'RAC2', 'NFKBIA', 'TGFBR2', 'IL12A', 'IFNAR1', 'LAMB1', 'JUN', 'EGF', 'GNA12', 'GADD45A', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'TGFBR1', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 47
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SMAD3', 'SOS2', 'PIK3CA', 'RAC1', 'CCNE1', 'NFKB1', 'CDK4', 'DVL2', 'PIK3CD', 'PMAIP1', 'CDKN1B', 'PIK3R2', 'BCL2L11', 'CDK6', 'CASP9', 'CASP8', 'RAC2', 'CDK2', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'CCNE2', 'GADD45A', 'WNT5B', 'BID', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 35
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'E2F3', 'HRAS', 'PRKCA', 'BRAF', 'SOS2', 'PIK3CA', 'CDK4', 'PIK3CD', 'STAT5A', 'PIK3R2', 'TGFA', 'CDK6', 'STAT3', 'CASP9', 'CASP8', 'PLCG2', 'CCND1', 'RXRA', 'CDKN2A', 'EGF', 'GADD45A', 'MAP2K2', 'EML4', 'PRKCB', 'EGFR', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 31
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'IL7', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'PRKACB', 'PIK3R2', 'TRAF3', 'CASP8', 'TGFB2', 'IL15', 'RAC2', 'NFKBIA', 'TGFBR2', 'IL12A', 'IFNAR1', 'LAMB1', 'JUN', 'EGF', 'GNA12', 'GADD45A', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'TGFBR1', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 47
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SMAD3', 'SOS2', 'PIK3CA', 'RAC1', 'CCNE1', 'NFKB1', 'CDK4', 'DVL2', 'PIK3CD', 'PMAIP1', 'CDKN1B', 'PIK3R2', 'BCL2L11', 'CDK6', 'CASP9', 'CASP8', 'RAC2', 'CDK2', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'CCNE2', 'GADD45A', 'WNT5B', 'BID', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 35
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'PMAIP1', 'BCL2L11'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RBX1', 'MSH2', 'MSH3', 'CCNE1', 'CDK4', 'PMAIP1', 'CDKN1B', 'CDK6', 'CASP9', 'CASP8', 'MSH6', 'CDK2', 'CCND1', 'CCNE2', 'GADD45A', 'BID', 'ABL1', 'MDM2', 'CDKN1A'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'RBX1', 'SLC2A1', 'PIK3CA', 'KEAP1', 'MGST2', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'GSTM3', 'TGFB2', 'HSP90AB1', 'TGFBR2', 'TXNRD3', 'GSTA4', 'RXRA', 'HSP90AA1', 'PDGFB'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'GNB5', 'GNB4', 'FGFR1', 'LAMB3', 'CCNE1', 'LAMA2', 'GNG11', 'IL6R', 'HSP90AB1', 'CDK2', 'BCL2L1', 'CCNE2', 'COL4A5', 'PIK3R1', 'COL4A4', 'LPAR1', 'VEGFA', 'LAMC3', 'PIK3CD', 'KITLG', 'TGFA', 'RALA', 'LPAR3', 'MET', 'LAMB1', 'LAMA5', 'LAMC2', 'PRKCB', 'HSP90AA1', 'JAK2', 'PDGFB', 'ABL1', 'SOS1', 'MAPK10', 'RALGDS', 'COL4A2', 'LAMA1', 'SOS2', 'IL7', 'FN1', 'RAC1', 'FGFR4', 'HSP90B1', 'FGFR3', 'PRKACB', 'CDKN1B', 'CDK6', 'COL4A3', 'ITGA2', 'RAC2', 'EGF', 'MAP2K2', 'ETS1', 'EGFR', 'AKT3', 'MDM2', 'CDKN1A', 'FGFR2', 'ITGA3', 'F2R', 'LAMC1', 'PRKCA', 'PIK3CA', 'NFKB1', 'CDK4', 'RELA', 'PDGFA', 'EPOR', 'COL4A1', 'PIK3R2', 'BCL2L11', 'CASP9', 'JAK1', 'IFNAR1', 'PLCG2', 'CCND1', 'IL6', 'ITGA6'}, number: 79
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SMAD3', 'SOS2', 'PIK3CA', 'RAC1', 'CCNE1', 'NFKB1', 'CDK4', 'DVL2', 'PIK3CD', 'PMAIP1', 'CDKN1B', 'PIK3R2', 'BCL2L11', 'CDK6', 'CASP9', 'CASP8', 'RAC2', 'CDK2', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'CCNE2', 'GADD45A', 'WNT5B', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'ABL1', 'MDM2', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 35
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'NFKBIA', 'PIK3R2', 'PIK3R1', 'JUN', 'NFKB1'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'RBX1', 'MSH2', 'SLC2A1', 'MSH3', 'CTBP1', 'KEAP1', 'CCNE1', 'RAC1', 'NFKB1', 'DVL2', 'MGST2', 'PMAIP1', 'FZD7', 'HMOX1', 'PLCB4', 'TGFA', 'NQO1', 'TXNRD1', 'GSTM3', 'TGFB2', 'FRAT2', 'MGST1', 'MSH6', 'HSP90AB1', 'TGFBR2', 'CDK2', 'TXNRD3', 'GSTA4', 'FZD1', 'CCND1', 'RXRA', 'FRAT1', 'PPARG', 'JUN', 'GADD45A', 'PRKCB', 'WNT5B', 'HSP90AA1', 'PDGFB', 'CDKN1A', 'MAPK10', 'FZD2'}, number: 43
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SMAD3', 'RBX1', 'SOS2', 'SLC2A1', 'PIK3CA', 'KEAP1', 'CCNE1', 'RAC1', 'NFKB1', 'CDK4', 'DVL2', 'MGST2', 'PIK3CD', 'PMAIP1', 'HMOX1', 'CDKN1B', 'PIK3R2', 'TGFA', 'NQO1', 'BCL2L11', 'CDK6', 'CASP9', 'TXNRD1', 'CASP8', 'GSTM3', 'TGFB2', 'RAC2', 'HSP90AB1', 'TGFBR2', 'CDK2', 'TXNRD3', 'GSTA4', 'CCND1', 'RXRA', 'FRAT1', 'CDKN2A', 'CCNE2', 'JUN', 'GADD45A', 'WNT5B', 'HSP90AA1', 'BID', 'PDGFB', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 53
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'BRAF', 'BMP2', 'RAC1', 'NFKB1', 'RELA', 'STAT5A', 'PIK3R2', 'BCL2L11', 'STAT3', 'NFKBIA', 'JUN', 'MAP2K2', 'JAK2', 'SOS1', 'RPS6KA5', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SMAD3', 'BMP2', 'SLC2A1', 'PIK3CA', 'RAC1', 'NFKB1', 'RELA', 'STAT6', 'STAT5A', 'PLCB4', 'PIK3R2', 'BCL2L11', 'STAT3', 'JAK1', 'IL6R', 'TGFB2', 'NFKBIA', 'TGFBR2', 'IL12A', 'IFNGR2', 'JUN', 'IL6ST', 'MAP2K2', 'PRKCB', 'IL6', 'JAK2', 'RPS6KA5', 'TGFBR1', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 33
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'RBX1', 'SLC2A1', 'PIK3CA', 'KEAP1', 'MGST2', 'PIK3CD', 'HMOX1', 'PRKACB', 'PIK3R2', 'TGFA', 'NQO1', 'CCNA2', 'TXNRD1', 'GSTM3', 'TGFB2', 'HSP90AB1', 'TGFBR2', 'TXNRD3', 'GSTA4', 'RXRA', 'HSP90AA1', 'PDGFB', 'CDKN1A', 'PIK3R1'}, number: 25
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'COL4A4', 'SMAD3', 'COL4A2', 'BMP2', 'LAMA1', 'GNB4', 'FGFR1', 'BMP4', 'EPAS1', 'SLC2A1', 'PIK3CA', 'LPAR1', 'FN1', 'VEGFA', 'LAMC3', 'LAMB3', 'LAMA2', 'PDGFA', 'EPOR', 'FGFR4', 'PIK3CD', 'KITLG', 'HSP90B1', 'FGFR3', 'STAT6', 'COL4A1', 'GNG11', 'STAT5A', 'CDKN1B', 'PIK3R2', 'STAT3', 'CASP9', 'IL6R', 'JAK1', 'ITGA2', 'LPAR3', 'MET', 'HSP90AB1', 'CTNNA1', 'IFNAR1', 'FZD1', 'RXRA', 'PPARG', 'LAMB1', 'IL6ST', 'LAMA5', 'GADD45A', 'EGF', 'MAP2K2', 'LAMC2', 'IL6', 'WNT5B', 'AGT', 'HSP90AA1', 'JAK2', 'EGFR', 'ITGA6', 'PDGFB', 'AKT3', 'SOS1', 'MDM2', 'CDKN1A', 'FGFR2', 'ITGA3', 'STAT1', 'PIK3R1', 'F2R'}, number: 69
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'GNB5', 'COL4A4', 'COL4A2', 'LAMA1', 'GNB4', 'FGFR1', 'SOS2', 'EPAS1', 'SLC2A1', 'IL7', 'PIK3CA', 'LPAR1', 'FN1', 'LAMC3', 'LAMB3', 'CCNE1', 'LAMA2', 'VEGFA', 'RAC1', 'NFKB1', 'CDK4', 'RELA', 'PDGFA', 'EPOR', 'FGFR4', 'PIK3CD', 'KITLG', 'HSP90B1', 'FGFR3', 'COL4A1', 'GNG11', 'CDKN1B', 'PIK3R2', 'TGFA', 'BCL2L11', 'CDK6', 'COL4A3', 'IL6R', 'CASP9', 'JAK1', 'ITGA2', 'LPAR3', 'MET', 'HSP90AB1', 'IFNAR1', 'CDK2', 'BCL2L1', 'CCND1', 'LAMB1', 'CCNE2', 'EGF', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'ITGA6', 'COL4A5', 'HSP90AA1', 'JAK2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'MDM2', 'CDKN1A', 'FGFR2', 'ITGA3', 'PIK3R1', 'F2R'}, number: 72
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'SMAD3', 'SLC2A1', 'PIK3CA', 'NFKB1', 'PIK3CD', 'STAT6', 'PLCB4', 'STAT3', 'JAK1', 'IL6R', 'TGFB2', 'TGFBR2', 'IL12A', 'PLCG2', 'IFNGR2', 'IL6ST', 'PRKCB', 'IL6', 'TGFBR1', 'STAT1'}, number: 21
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'LPAR1', 'FGFR4', 'FGFR1', 'SLC2A1'}, number: 4
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 6
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CDKN2A', 'CDK2', 'MDM2', 'CDKN1A', 'CCND1', 'MAD1L1', 'CCNE1'}, number: 8
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'ABL1'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'CDK1'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMAD3', 'CCNB1', 'CCNB2', 'CCNE1', 'CDK4', 'SFN', 'MCM7', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 23
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'E2F3', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'GADD45A'}, number: 7
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'CCNB1', 'CCNB2', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 22
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'RBX1', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'ATR', 'CDK2', 'CCNH', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'ABL1', 'PCNA', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 23
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1', 'TGFB2'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'ABL1', 'CDK2', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 10
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'CCNB1', 'CCNB2', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 22
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SFN', 'TGFB2', 'ATR', 'CDC25C', 'CDC25A', 'CDK2', 'RBX1', 'CHEK1', 'CCNH', 'PCNA', 'PRKDC', 'CDKN1A', 'CCND1', 'CCNE1', 'GADD45A'}, number: 15
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'CCNB1', 'CCNB2', 'RBX1', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'TGFB2', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 24
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFB2', 'SMAD3'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2', 'CCNB1', 'RBX1', 'CDKN1A', 'CCNA2'}, number: 5
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'MDM2', 'CDKN1B', 'CDKN1A', 'GADD45A'}, number: 5
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 9
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TGFB2', 'SMAD3'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HMGCR'}, number: 1
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'FDFT1', 'NSDHL', 'HMGCR', 'SC5D', 'MSMO1', 'PMVK', 'FDPS'}, number: 8
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NR1H3', 'ACSL1'}, number: 2
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SREBF1', 'HMGCR'}, number: 2
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FDFT1', 'NR1H3', 'ACSL1', 'DHCR24', 'EBP', 'HMGCS1', 'PMVK', 'TM7SF2', 'NSDHL', 'ABCA1', 'SREBF1', 'ACAT2', 'MSMO1', 'FDPS', 'MYLIP', 'ELOVL4', 'HMGCR', 'NR1H2', 'SC5D'}, number: 19
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SREBF1'}, number: 1
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HMGCR'}, number: 1
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'FDFT1', 'HMGCR', 'DHCR24', 'SC5D', 'MSMO1', 'PMVK', 'FDPS', 'EBP'}, number: 9
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'NDUFA9'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'IQGAP1', 'RAC1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MCM7', 'RAC1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'NDUFA9'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): {'NDUFA9'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'NDUFA9'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'MSH2'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EXOC2', 'RAC1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MSH2', 'RAC1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'EGFR'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TSC1', 'DEPTOR', 'EGFR', 'PDGFB', 'AKT1S1', 'SLC2A1', 'VEGFA'}, number: 7
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'EGFR'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'EGFR'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'GRB10', 'STAT3', 'EGFR'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'EGFR'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT3', 'EGFR'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'EGFR'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SQSTM1', 'ME1', 'TGFB2', 'PDGFB', 'SLC2A1'}, number: 5
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TSC1', 'DEPTOR', 'EGFR', 'PDGFB', 'AKT1S1', 'VEGFA'}, number: 6
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'ME1', 'TGFB2', 'PDGFB', 'AKT1S1', 'SLC2A1', 'DEPTOR'}, number: 7
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'ME1', 'TGFB2', 'PDGFB', 'SLC2A1'}, number: 5
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'TSC1', 'CAMK1', 'ACACB', 'STAT3'}, number: 5
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'CAMK1', 'PSAT1', 'SHMT1', 'SLC2A1', 'ACACB', 'STAT3'}, number: 8
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SQSTM1', 'TSC1', 'ME1', 'TGFB2', 'PDGFB', 'SLC2A1', 'ACACB'}, number: 7
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TSC1', 'EGFR', 'PDGFB', 'AKT1S1', 'SLC2A1', 'VEGFA', 'STAT3'}, number: 7
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TSC1', 'EGFR', 'PDGFB', 'AKT1S1', 'SLC2A1', 'VEGFA'}, number: 6
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TGFB2', 'PSAT1', 'SHMT1', 'SLC2A1', 'STAT3'}, number: 5
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PGM1', 'PSAT1', 'SLC2A1'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'COX11', 'SCO1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PIK3CA', 'JUN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'JUN', 'CCND1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PIK3CA', 'JUN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PIK3CA', 'JUN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PIK3CA', 'JUN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'JUN', 'CCND1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CA', 'CCND1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PIK3CA', 'JUN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'COX11', 'SCO1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'JUN', 'CCND1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'COX11', 'SCO1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'MDM2', 'CCND1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'CCND1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'JUN', 'CCND1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SOD1', 'JUN', 'MT1X', 'CCND1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'JUN', 'CCND1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'ADAM17', 'JUN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PIK3CA', 'ADAM17', 'JUN'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3CA', 'MDM2'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'MDM2', 'CCND1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSS', 'GCLC'}, number: 2
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cysteine And Methionine Catabolism WP4504, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'MDM2', 'CDKN1A', 'CCND1', 'CCNE1'}, number: 7
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'ABL1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'CDK1'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'CDKN1A', 'CCND1', 'CDK6', 'CASP9', 'GADD45A'}, number: 8
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'ABL1', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9'}, number: 12
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SFN', 'CDC25C', 'ATR', 'CDC25A', 'RPA2', 'BRCA1', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CHEK1', 'PRKDC', 'CDKN1A', 'CCND1', 'RAD52', 'H2AX', 'CCNE1', 'GADD45A'}, number: 17
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNB1'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MDM2', 'CDKN1B', 'CDKN1A', 'CASP9', 'GADD45A'}, number: 5
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9'}, number: 11
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1', 'FOXM1', 'CDK2', 'BARD1', 'MDM2'}, number: 5
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CDK1'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'PRKDC', 'BCL6', 'MDM2', 'RAD17', 'RAD52', 'H2AX'}, number: 13
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'PRKDC', 'BCL6', 'MDM2', 'RAD17', 'RAD52', 'H2AX'}, number: 13
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'FANCA', 'BRIP1', 'FEN1', 'RPA1', 'MSH2', 'PARP1', 'H2AX', 'CDK1', 'RPA2', 'EXO1', 'FANCI', 'WRN', 'CHEK1', 'RAD52', 'XPA', 'ATR', 'CDK2', 'RAD17', 'CDC25C', 'BRCA1', 'USP1', 'PCNA', 'PRKDC', 'XRCC5', 'MDM2'}, number: 25
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'MDM2', 'CDK2'}, number: 3
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'PRKDC', 'BCL6', 'MDM2', 'RAD17', 'RAD52', 'H2AX'}, number: 13
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FANCA', 'BRIP1', 'FEN1', 'RPA1', 'MSH2', 'PARP1', 'H2AX', 'RPA2', 'EXO1', 'FANCI', 'WRN', 'CHEK1', 'RAD52', 'XPA', 'ATR', 'CDK2', 'CDC25C', 'BRCA1', 'USP1', 'PCNA', 'PRKDC', 'XRCC5'}, number: 22
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'PRKDC', 'BCL6', 'MDM2', 'RAD17', 'RAD52', 'H2AX'}, number: 13
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MDM2'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BRCA1', 'MDM2', 'CDK2'}, number: 3
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RFC2', 'LIG1', 'RFC3', 'RPA2', 'MSH6', 'EXO1', 'RPA1', 'PCNA', 'MSH2', 'RPA3', 'POLE', 'POLE3', 'RFC5', 'RFC4'}, number: 15
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RFC2', 'LIG1', 'RFC3', 'RPA2', 'MSH6', 'EXO1', 'RPA1', 'PCNA', 'MSH2', 'RPA3', 'POLE', 'POLE3', 'RFC5', 'RFC4'}, number: 15
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'RAP1A'}, number: 2
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'ATR', 'RPA2', 'BRCA1', 'CHEK1', 'PRKDC', 'RAD52', 'H2AX'}, number: 7
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ATR', 'RPA2', 'BRCA1', 'CHEK1', 'PRKDC', 'RAD52', 'H2AX'}, number: 7
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CENPX', 'FANCA', 'BRIP1', 'FEN1', 'MPG', 'PARP2', 'RPA1', 'RBX1', 'UNG', 'MSH2', 'MNAT1', 'ERCC4', 'PARP1', 'ERCC8', 'POLE3', 'MSH3', 'H2AX', 'RFC5', 'APEX1', 'FAAP100', 'RFC3', 'REV3L', 'EXO1', 'RPA2', 'FANCI', 'WRN', 'CHEK1', 'GTF2H4', 'RAP1A', 'POLE', 'RAD52', 'XPA', 'MGMT', 'FANCG', 'NTHL1', 'ATR', 'RAD51C', 'MSH6', 'XRCC1', 'CCNH', 'RPA3', 'PNKP', 'GTF2H1', 'ERCC1', 'CENPS', 'DDB1', 'RFC4', 'RFC2', 'LIG1', 'BRCA1', 'FANCL', 'USP1', 'PCNA', 'PRKDC', 'XRCC5', 'FANCC', 'RAD23B'}, number: 58
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'RAP1A'}, number: 2
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'ATR', 'RPA2', 'BRCA1', 'CHEK1', 'PRKDC', 'RAD52', 'H2AX'}, number: 7
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'CENPX', 'FANCA', 'BRIP1', 'FEN1', 'MPG', 'PARP2', 'RPA1', 'RBX1', 'UNG', 'MSH2', 'MNAT1', 'ERCC4', 'PARP1', 'ERCC8', 'POLE3', 'MSH3', 'H2AX', 'RFC5', 'APEX1', 'FAAP100', 'RFC3', 'REV3L', 'EXO1', 'RPA2', 'FANCI', 'WRN', 'CHEK1', 'GTF2H4', 'RAP1A', 'POLE', 'RAD52', 'XPA', 'MGMT', 'FANCG', 'NTHL1', 'ATR', 'RAD51C', 'MSH6', 'XRCC1', 'CCNH', 'RPA3', 'PNKP', 'GTF2H1', 'ERCC1', 'CENPS', 'DDB1', 'RFC4', 'RFC2', 'LIG1', 'BRCA1', 'FANCL', 'USP1', 'PCNA', 'PRKDC', 'XRCC5', 'FANCC', 'RAD23B'}, number: 58
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ATR', 'RPA2', 'BRCA1', 'RBX1', 'CHEK1', 'PRKDC', 'RAD52', 'H2AX'}, number: 8
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'MCM7', 'CDK2'}, number: 3
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RFC2', 'RFC3', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'RPA3', 'POLE', 'RFC5', 'RFC4'}, number: 11
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RFC2', 'RFC3', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'RPA3', 'POLE', 'RFC5', 'RFC4'}, number: 11
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ACAT2', 'HMGCS1'}, number: 2
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Disorders In Ketolysis WP5195, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PGM1'}, number: 1
Term: Disorders Of Galactose Metabolism WP5173, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'NDUFA13'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'BRAF', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'RAP1A', 'ELK4', 'MAP3K1', 'PAK1', 'PTPN11', 'JUN', 'EGF', 'RASA1', 'MAP2K2', 'STMN1', 'EGFR', 'SOS1', 'RPS6KA5', 'STAT1', 'PIK3R1'}, number: 24
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA3', 'HRAS', 'EGFR', 'SOS1', 'RPS6KA5', 'MAP3K1', 'PAK1', 'STAT1', 'SHC1', 'JUN', 'EGF', 'JAK1'}, number: 13
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'BRAF', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'RAP1A', 'ELK4', 'MAP3K1', 'PAK1', 'PTPN11', 'JUN', 'EGF', 'RASA1', 'MAP2K2', 'STMN1', 'EGFR', 'SOS1', 'RPS6KA5', 'STAT1', 'PIK3R1'}, number: 24
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'BRAF', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'RAP1A', 'ELK4', 'MAP3K1', 'PAK1', 'PTPN11', 'JUN', 'EGF', 'RASA1', 'MAP2K2', 'STMN1', 'EGFR', 'SOS1', 'RPS6KA5', 'STAT1', 'PIK3R1'}, number: 24
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'NCK1', 'VAV3', 'STAM2', 'BRAF', 'ERRFI1', 'SOS2', 'RAB5A', 'RAC1', 'RPS6KA3', 'GAB2', 'PRKCD', 'STAM', 'INPPL1', 'GRB10', 'STAT5A', 'PIK3R2', 'BCAR1', 'RAP1A', 'PIK3C2B', 'GJA1', 'REPS2', 'JAK1', 'STAT3', 'DNM1', 'ELK4', 'NEDD4', 'RALA', 'ITCH', 'PLCE1', 'MAP3K1', 'PAK1', 'NDUFA13', 'SYNJ1', 'PTPN11', 'JUN', 'SH3KBP1', 'RASA1', 'HGS', 'MAP2K2', 'EGF', 'PRKCB', 'STMN1', 'IQGAP1', 'PXDN', 'JAK2', 'ASAP1', 'AP2M1', 'EGFR', 'SPRY2', 'SOS1', 'ERBB2', 'RPS6KA5', 'PCNA', 'NCOA3', 'EPS8', 'ABL1', 'STAT1', 'PLSCR1', 'CBL', 'PEBP1', 'PIK3R1', 'RALGDS', 'CAV1', 'SHC1'}, number: 67
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'STMN1', 'ABL1', 'PAK1', 'RAC1', 'STAT3'}, number: 6
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'BRAF', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'RAP1A', 'ELK4', 'MAP3K1', 'PAK1', 'PTPN11', 'JUN', 'EGF', 'RASA1', 'MAP2K2', 'STMN1', 'EGFR', 'SOS1', 'RPS6KA5', 'STAT1', 'PIK3R1'}, number: 24
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS1', 'ERBB2', 'ABL1', 'MAP3K1', 'JUN', 'PIK3R2', 'SOS2', 'PIK3R1', 'PIK3C2B', 'RAC1', 'SHC1'}, number: 12
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'EGFR', 'BRAF', 'SOS1', 'ERBB2', 'STAT5A', 'SOS2', 'PIK3R2', 'PIK3R1', 'EGF', 'STAT3'}, number: 14
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'BRAF', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'RAP1A', 'ELK4', 'MAP3K1', 'PAK1', 'PTPN11', 'JUN', 'EGF', 'RASA1', 'MAP2K2', 'STMN1', 'EGFR', 'SOS1', 'RPS6KA5', 'STAT1', 'PIK3R1'}, number: 24
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'NDUFA13'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS1', 'ERBB2', 'ABL1', 'MAP3K1', 'JUN', 'PIK3R2', 'SOS2', 'PIK3R1', 'PIK3C2B', 'RAC1', 'SHC1'}, number: 12
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'NDUFA13'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PCNA', 'ABL1', 'RAP1A'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'RAB5A', 'RAC1', 'GAB2', 'PIK3R2', 'RAP1A', 'JAK1', 'RALA', 'PLCE1', 'PAK1', 'PTPN11', 'EGF', 'RASA1', 'MAP2K2', 'PRKCB', 'EGFR', 'JAK2', 'SOS1', 'ABL1', 'PIK3R1', 'RALGDS', 'SHC1'}, number: 24
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS1', 'ERBB2', 'ABL1', 'MAP3K1', 'JUN', 'PIK3R2', 'SOS2', 'PIK3R1', 'PIK3C2B', 'RAC1', 'SHC1'}, number: 12
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP3K1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN'}, number: 6
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'RAC1', 'PCNA', 'RAP1A', 'JUN'}, number: 6
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS1', 'ERBB2', 'ABL1', 'MAP3K1', 'JUN', 'SOS2', 'PIK3R2', 'PIK3R1', 'PIK3C2B', 'RAC1', 'SHC1'}, number: 13
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'NCK1', 'VAV3', 'BRAF', 'RAC1', 'RPS6KA3', 'GAB2', 'PRKCD', 'STAT5A', 'PIK3R2', 'RAP1A', 'STAT3', 'MAP3K1', 'PTPN11', 'JUN', 'MAP2K2', 'JAK2', 'SOS1', 'RPS6KA5', 'STAT1', 'PIK3R1', 'SHC1'}, number: 22
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'NCK1', 'VAV3', 'RAC1', 'RPS6KA3', 'PRKCD', 'STAT5A', 'PIK3R2', 'RAP1A', 'STAT3', 'JAK1', 'MAP3K1', 'PTPN11', 'JUN', 'MAP2K2', 'PRKCB', 'JAK2', 'RPS6KA5', 'STAT1', 'PIK3R1', 'SHC1'}, number: 22
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R2', 'PIK3R1'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EGFR', 'JAK2', 'SOS1', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3R1', 'PIK3C2B', 'EGF', 'STAT3', 'JAK1'}, number: 13
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'JAK2', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3R1', 'PIK3C2B', 'RAC1', 'EGF', 'JAK1'}, number: 13
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PLCE1', 'STAT1', 'PIK3C2B', 'STAT3', 'JAK1'}, number: 7
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'MRAS', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'RRAS2', 'FGF2', 'NF1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'PDGFC', 'PDGFD', 'PIK3CA', 'VEGFA', 'PDGFA', 'PIK3CD', 'FGFR3', 'TGFA', 'JAK1', 'MET', 'FGF2', 'CCND1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'SHC1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'MRAS', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'RRAS2', 'FGF2', 'NF1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'MRAS', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'RRAS2', 'FGF2', 'NF1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'EGFR', 'JAK2', 'BRAF', 'ERBB2', 'SOS1', 'SOS2', 'PIK3R2', 'SHC1', 'PIK3R1', 'EGF', 'STAT3', 'JAK1'}, number: 16
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'STAT3'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'MRAS', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'RRAS2', 'FGF2', 'NF1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'ERBB2', 'SOS1', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 12
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'PIK3CD', 'PIK3R2', 'TGFA', 'STAT3', 'PLCG2', 'CCND1', 'EGF', 'MAP2K2', 'PRKCB', 'EGFR', 'AKT3', 'ERBB2', 'SOS1', 'PIK3R1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'MRAS', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'RRAS2', 'FGF2', 'NF1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'ERBB2', 'SOS1', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 12
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'PDGFB', 'TGFA', 'PIK3CA', 'NRG1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PDGFC', 'PDGFD', 'SOS2', 'PIK3CA', 'VEGFA', 'MRAS', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'TGFA', 'BCL2L11', 'JAK1', 'IL6R', 'MET', 'RRAS2', 'PLCG2', 'FGF2', 'NF1', 'BCL2L1', 'CCND1', 'EGF', 'MAP2K2', 'PRKCB', 'IL6', 'EGFR', 'JAK2', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1', 'SHC1'}, number: 35
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'ERBB2', 'SOS1', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 12
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'PIK3R2'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PDGFB', 'CCND1', 'TGFA', 'NRG1'}, number: 6
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PIK3R1', 'TGFA', 'PDGFB', 'PIK3CD', 'AKT3', 'ERBB2', 'SOS1', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'NRG1', 'SHC1'}, number: 16
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'JAK2', 'BRAF', 'SOS1', 'PIK3R2', 'BCL2L11', 'SHC1', 'PIK3R1', 'STAT3'}, number: 10
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'IL6', 'JAK2', 'FGF2', 'PIK3R2', 'BCL2L11', 'PIK3CA', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'IL6R'}, number: 15
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PDGFB', 'PIK3CD', 'PIK3R2', 'TGFA', 'PIK3CA', 'NRG1'}, number: 8
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'PDGFC', 'PDGFD', 'PIK3CA', 'VEGFA', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'STAT3', 'JAK1', 'IL6R', 'MET', 'FGF2', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'JAK2', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 24
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PDGFC', 'PDGFD', 'SOS2', 'PIK3CA', 'VEGFA', 'PDGFA', 'PIK3CD', 'FGFR3', 'PIK3R2', 'TGFA', 'BCL2L11', 'JAK1', 'IL6R', 'MET', 'FGF2', 'BCL2L1', 'CCND1', 'EGF', 'MAP2K2', 'IL6', 'EGFR', 'JAK2', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 29
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'IL6', 'PIK3CD', 'PLCG2', 'FGF2', 'PIK3CA', 'STAT3', 'JAK1', 'IL6R'}, number: 10
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FLNC', 'RELA', 'TBK1', 'FLNB', 'EGFR', 'PIK3CD', 'PAK1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA6', 'ITGA2', 'ITGB3', 'EGFR', 'PIK3CD', 'ACTG1', 'PAK1', 'STAT1', 'ITGA3', 'PIK3CA', 'NFKB1'}, number: 11
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FLNC', 'RELA', 'TBK1', 'FLNB', 'EGFR', 'PIK3CD', 'PAK1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FLNC', 'RELA', 'TBK1', 'FLNB', 'EGFR', 'PIK3CD', 'PAK1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NEDD4', 'IQGAP1', 'EGFR', 'CAV1', 'PAK1', 'PIK3R2', 'STAT1', 'PIK3R1', 'RAB5A', 'RAC1'}, number: 10
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1', 'RAC1'}, number: 3
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FLNC', 'RELA', 'TBK1', 'FLNB', 'EGFR', 'PIK3CD', 'PAK1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'EGFR', 'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FLNC', 'RELA', 'TBK1', 'FLNB', 'EGFR', 'PIK3CD', 'PAK1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2S1', 'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 7
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELA', 'ITGA2', 'ITGB3', 'ITGA6', 'EGFR', 'PIK3CD', 'PAK1', 'PIK3R2', 'ITGA3', 'PIK3CA', 'PIK3R1', 'RAB5A', 'RAC1', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PIK3R1', 'PIK3R2', 'RELA', 'NFKB1'}, number: 4
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RAC1', 'NFKB1'}, number: 2
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2S1', 'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 7
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF2S1', 'RELA', 'ADAM17', 'PIK3R2', 'STAT1', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 8
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EIF2S1', 'RELA', 'ADAM17', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA', 'PIK3R2', 'PIK3CD', 'PIK3R1'}, number: 4
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA6', 'ITGA2', 'ITGB3', 'EGFR', 'PIK3CD', 'PIK3R2', 'STAT1', 'ITGA3', 'PIK3CA', 'PIK3R1'}, number: 10
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RELA', 'ITGA2', 'ITGB3', 'ITGA6', 'EGFR', 'PIK3CD', 'PIK3R2', 'ITGA3', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 12
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'PIK3CD', 'STAT1', 'NFKB1'}, number: 4
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'UQCRQ', 'SDHB', 'ATP5F1A', 'SLC25A14', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'COX15', 'NDUFC2', 'NDUFB1', 'UQCRB', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'SLC25A4', 'UCP2', 'SLC25A27', 'SCO1', 'ATP5F1D', 'NDUFS8', 'COX7B', 'ATP5IF1', 'NDUFC1', 'NDUFA13', 'COX11', 'SLC25A5', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'COX5A', 'NDUFA6', 'NDUFA8', 'COX4I1', 'UQCR10', 'NDUFB2'}, number: 43
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NDUFA13'}, number: 1
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'UQCRQ', 'SDHB', 'ATP5F1A', 'SLC25A14', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'COX15', 'NDUFC2', 'NDUFB1', 'UQCRB', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'SLC25A4', 'UCP2', 'SLC25A27', 'SCO1', 'ATP5F1D', 'NDUFS8', 'COX7B', 'ATP5IF1', 'NDUFC1', 'NDUFA13', 'COX11', 'SLC25A5', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'COX5A', 'NDUFA6', 'NDUFA8', 'COX4I1', 'UQCR10', 'NDUFB2'}, number: 43
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'ATP5F1A', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'ATP5F1D', 'NDUFS8', 'NDUFC1', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'NDUFA6', 'NDUFA8', 'NDUFB2'}, number: 26
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'UQCRQ', 'SDHB', 'ATP5F1A', 'SLC25A14', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'COX15', 'NDUFC2', 'NDUFB1', 'UQCRB', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'SLC25A4', 'UCP2', 'SLC25A27', 'SCO1', 'ATP5F1D', 'NDUFS8', 'COX7B', 'ATP5IF1', 'NDUFC1', 'NDUFA13', 'COX11', 'SLC25A5', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'COX5A', 'NDUFA6', 'NDUFA8', 'COX4I1', 'UQCR10', 'NDUFB2'}, number: 43
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Electron Transport Chain OXPHOS System In Mitochondria WP111, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'HMGCR'}, number: 2
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'FDFT1', 'NSDHL', 'HMGCR', 'ABCA1', 'DHCR24', 'ACAT2', 'SC5D', 'MSMO1', 'PMVK', 'FDPS', 'EBP', 'TM7SF2'}, number: 13
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'FN1', 'MAP2K6', 'PIK3CD', 'PIK3R2', 'MAPK12', 'TGFB2', 'TGFBR2', 'PAK1', 'MAPK13', 'MAP2K4', 'MAP2K2', 'AKT3', 'SOS1', 'TGFBR1', 'MAP2K3', 'PIK3R1'}, number: 19
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'COL4A4', 'COL4A2', 'LATS2', 'PIK3CA', 'FN1', 'MAP2K6', 'PIK3CD', 'COL4A1', 'CDH1', 'FZD7', 'SPARC', 'COL4A3', 'CDH2', 'FOXM1', 'RBBP4', 'PAK1', 'EZH2', 'FZD1', 'MAP2K4', 'MAP2K2', 'WNT5B', 'COL4A5', 'AKT3', 'SOS1', 'MAP2K3', 'SHC1', 'FZD2'}, number: 28
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'FN1', 'MAP2K6', 'PIK3CD', 'PIK3R2', 'MAPK12', 'TGFB2', 'TGFBR2', 'PAK1', 'MAPK13', 'MAP2K4', 'MAP2K2', 'AKT3', 'SOS1', 'TGFBR1', 'MAP2K3', 'PIK3R1'}, number: 19
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'FN1', 'MAP2K6', 'PIK3CD', 'PIK3R2', 'MAPK12', 'TGFB2', 'TGFBR2', 'PAK1', 'MAPK13', 'MAP2K4', 'MAP2K2', 'AKT3', 'SOS1', 'TGFBR1', 'MAP2K3', 'PIK3R1'}, number: 19
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'TWIST1', 'SOS1', 'PAK1', 'PIK3R2', 'SOS2', 'PIK3R1', 'SHC1'}, number: 9
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'FN1', 'MAP2K6', 'PIK3CD', 'PIK3R2', 'MAPK12', 'TGFB2', 'TGFBR2', 'PAK1', 'MAPK13', 'MAP2K4', 'MAP2K2', 'AKT3', 'SOS1', 'TGFBR1', 'MAP2K3', 'PIK3R1'}, number: 19
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'WNT5B', 'SMAD3', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 11
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 9
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'FN1', 'MAP2K6', 'PIK3CD', 'PIK3R2', 'MAPK12', 'TGFB2', 'TGFBR2', 'PAK1', 'MAPK13', 'MAP2K4', 'MAP2K2', 'AKT3', 'SOS1', 'TGFBR1', 'MAP2K3', 'PIK3R1'}, number: 19
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'WNT5B', 'SMAD3', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 11
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'TGFB2', 'TGFBR2'}, number: 3
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'COL4A4', 'COL4A5', 'PIK3R1', 'COL4A2', 'PIK3CD', 'AKT3', 'SOS1', 'COL4A1', 'PAK1', 'SOS2', 'PIK3R2', 'PIK3CA', 'FN1', 'SHC1', 'COL4A3'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'WNT5B', 'SMAD3', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 11
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PIK3R2', 'MAP2K3', 'PIK3R1', 'MAP2K4'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'WNT5B', 'TGFBR2', 'FZD7', 'FZD1', 'FZD2'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'TGFB2', 'WNT5B', 'SMAD3', 'TGFBR2', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 13
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'CDH2', 'SOS1', 'PIK3R2', 'PIK3R1', 'SHC1'}, number: 7
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'TGFB2', 'SMAD3', 'CDH2', 'TGFBR2', 'TGFBR1', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'SHC1'}, number: 11
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2', 'TGFBR2', 'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'COL4A4', 'WNT5B', 'SMAD3', 'TWIST1', 'PIK3R1', 'COL4A2', 'PIK3CD', 'AKT3', 'SOS1', 'COL4A1', 'PIK3R2', 'FZD1', 'PIK3CA', 'FN1'}, number: 16
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'COL4A4', 'COL4A5', 'PIK3R1', 'COL4A2', 'PIK3CD', 'AKT3', 'SOS1', 'COL4A1', 'SOS2', 'PIK3R2', 'PIK3CA', 'FN1', 'COL4A3'}, number: 15
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TGFB2', 'SMAD3', 'TGFBR2', 'PIK3CD', 'TGFBR1', 'PIK3CA'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'PAK2', 'PIK3CA', 'PIK3R1', 'JUN', 'EGF', 'MAP2K4'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'HBEGF', 'PIK3CA', 'PIK3CD', 'TGFA', 'BTC', 'PAK1', 'AREG', 'CCND1', 'PAK3', 'JUN', 'EGF', 'MAP2K4', 'MAP2K2', 'EGFR', 'AKT3', 'SOS1', 'PAK2', 'CDKN1A', 'MDM2', 'MAPK10', 'SHC1'}, number: 22
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'PAK2', 'PIK3CA', 'PIK3R1', 'JUN', 'EGF', 'MAP2K4'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'PAK2', 'PIK3CA', 'PIK3R1', 'JUN', 'EGF', 'MAP2K4'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'NCK1', 'BRAF', 'SOS2', 'STAT5A', 'PIK3R2', 'PAK1', 'JUN', 'EGF', 'MAP2K2', 'PRKCB', 'EGFR', 'ERBB2', 'ABL1', 'SOS1', 'CBL', 'PIK3R1', 'SHC1'}, number: 19
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'PAK1', 'ABL1'}, number: 4
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'PAK2', 'PIK3CA', 'PIK3R1', 'JUN', 'EGF', 'MAP2K4'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'PIK3R1', 'PIK3CD', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'CDKN1B', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'CDKN1A', 'MDM2', 'JUN', 'SHC1'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PIK3CA', 'PIK3CD', 'STAT5A', 'PIK3R2', 'TGFA', 'PLCG2', 'CCND1', 'EGF', 'MAP2K2', 'PRKCB', 'EGFR', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 20
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'PAK2', 'PIK3CA', 'PIK3R1', 'JUN', 'EGF', 'MAP2K4'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'PIK3R1', 'PIK3CD', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'CDKN1B', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'CDKN1A', 'MDM2', 'JUN', 'SHC1'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'ABL1', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1'}, number: 5
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'HBEGF', 'TGFA', 'PIK3CA', 'NRG1'}, number: 5
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'PIK3CA', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'TGFA', 'BCL2L11', 'ABL2', 'PLCG2', 'PAK1', 'CCND1', 'PAK3', 'EGF', 'MAP2K2', 'PRKCB', 'EGFR', 'AKT3', 'ABL1', 'SOS1', 'PAK2', 'CDKN1A', 'MDM2', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 27
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'PIK3R1', 'PIK3CD', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'CDKN1B', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'CDKN1A', 'MDM2', 'JUN', 'SHC1'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R2', 'PIK3R1', 'JUN', 'MAP2K4'}, number: 5
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'HBEGF', 'CDKN1A', 'CCND1', 'TGFA', 'MAPK10', 'NRG1', 'JUN'}, number: 9
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HBEGF', 'SOS2', 'PIK3CA', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'TGFA', 'BCL2L11', 'CCND1', 'NRG1', 'JUN', 'AKT3', 'ERBB2', 'ABL1', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 22
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'NCK1', 'BRAF', 'SOS1', 'STAT5A', 'PIK3R2', 'BCL2L11', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1'}, number: 12
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'PRKCA', 'HRAS', 'PRKCB', 'NCK1', 'STAT5A', 'PIK3R2', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1'}, number: 13
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PIK3CD', 'HBEGF', 'PIK3R2', 'CDKN1A', 'TGFA', 'PIK3CA', 'NRG1'}, number: 9
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EGFR', 'PIK3CD', 'AKT3', 'SOS1', 'CDKN1B', 'PIK3R2', 'STAT5A', 'CDKN1A', 'MDM2', 'PIK3CA', 'PIK3R1', 'EGF'}, number: 14
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PIK3R1', 'EGFR', 'TGFA', 'PIK3CD', 'AKT3', 'SOS1', 'CDKN1B', 'SOS2', 'PIK3R2', 'CCND1', 'BCL2L11', 'PIK3CA', 'CDKN1A', 'MDM2', 'EGF'}, number: 18
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PIK3CD', 'PLCG2', 'PIK3CA'}, number: 5
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'IL1A', 'MAP3K1', 'MAP3K7', 'PAK1', 'JUN', 'PAK2', 'MAPKAPK3', 'MAP2K4'}, number: 9
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ACTG1', 'MAP3K1', 'PAK1', 'PAK2', 'JUN', 'MAP2K4'}, number: 6
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'IL1A', 'MAP3K1', 'MAP3K7', 'PAK1', 'JUN', 'PAK2', 'MAPKAPK3', 'MAP2K4'}, number: 9
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'IL1A', 'MAP3K1', 'MAP3K7', 'PAK1', 'JUN', 'PAK2', 'MAPKAPK3', 'MAP2K4'}, number: 9
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP3K1', 'PAK1', 'JUN'}, number: 3
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PAK1'}, number: 1
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'IL1A', 'MAP3K1', 'MAP3K7', 'PAK1', 'JUN', 'PAK2', 'MAPKAPK3', 'MAP2K4'}, number: 9
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'MAP3K1', 'MAP3K7', 'PRKDC', 'JUN', 'CASP9'}, number: 6
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CASP9'}, number: 2
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'IL1A', 'MAP3K1', 'MAP3K7', 'PAK1', 'JUN', 'PAK2', 'MAPKAPK3', 'MAP2K4'}, number: 9
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'MAP3K1', 'MAP3K7', 'PRKDC', 'JUN', 'CASP9'}, number: 6
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'PRKDC', 'CASP9', 'PARP1'}, number: 4
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PAK1', 'PAK2', 'CASP9'}, number: 3
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'MAP3K1', 'MAP3K7', 'PRKDC', 'JUN', 'CASP9'}, number: 6
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1A', 'MAP3K1', 'MAP3K7', 'JUN', 'MAP2K4'}, number: 5
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKDC', 'MAP3K7', 'JUN', 'PARP1'}, number: 4
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'MAP3K1', 'MAP3K7', 'PRKDC', 'JUN', 'CASP9'}, number: 6
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP3K1', 'JUN'}, number: 2
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1A', 'MAP3K1', 'JUN'}, number: 3
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LMNA', 'CASP9'}, number: 2
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1A'}, number: 1
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ACSL1'}, number: 1
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'ACACB'}, number: 1
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'ACACB'}, number: 1
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ACACB'}, number: 1
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ACSL1'}, number: 1
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC39A8', 'SLC7A11', 'GCLM', 'GCLC', 'SLC39A14', 'HMOX1', 'FTL', 'FTH1', 'TXNRD1'}, number: 9
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ATG5', 'MAP1LC3B'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FTH1', 'SLC39A8', 'SLC7A11', 'GSS', 'GCLC', 'ACSL1', 'SLC39A14', 'GCLM', 'HMOX1', 'FTL', 'SAT1', 'TXNRD1'}, number: 12
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC39A8', 'SLC7A11', 'GCLM', 'GCLC', 'SLC39A14', 'HMOX1', 'FTL', 'FTH1', 'TXNRD1'}, number: 9
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SLC38A1'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC39A8', 'SLC7A11', 'HMGCR', 'GCLM', 'GCLC', 'SLC39A14', 'HMOX1', 'FTL', 'FTH1', 'TXNRD1'}, number: 10
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FDFT1', 'HMGCR', 'ACSL1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SLC38A1'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'PIK3CA', 'FN1', 'THBS3', 'RAC1', 'PDGFA', 'FLNB', 'PIK3CD', 'PIK3R2', 'RAP1A', 'FLNC', 'RAC2', 'PAK1', 'LAMB1', 'JUN', 'FLNA', 'LAMA5', 'EGF', 'LAMC2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'MAPK10', 'PIK3R1'}, number: 29
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'PDGFC', 'COL4A4', 'COL4A2', 'LAMA1', 'PDGFD', 'PIK3CA', 'FN1', 'VEGFA', 'LAMB3', 'LAMC3', 'LAMA2', 'ITGB3', 'PDGFA', 'PIK3CD', 'ACTG1', 'COL4A1', 'ITGA2', 'MET', 'PAK1', 'CCND1', 'PAK3', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'LAMC2', 'ITGA6', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'ITGA3', 'MAPK10', 'SHC1'}, number: 37
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'PIK3CA', 'FN1', 'THBS3', 'RAC1', 'PDGFA', 'FLNB', 'PIK3CD', 'PIK3R2', 'RAP1A', 'FLNC', 'RAC2', 'PAK1', 'LAMB1', 'JUN', 'FLNA', 'LAMA5', 'EGF', 'LAMC2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'MAPK10', 'PIK3R1'}, number: 29
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'PIK3CA', 'FN1', 'THBS3', 'RAC1', 'PDGFA', 'FLNB', 'PIK3CD', 'PIK3R2', 'RAP1A', 'FLNC', 'RAC2', 'PAK1', 'LAMB1', 'JUN', 'FLNA', 'LAMA5', 'EGF', 'LAMC2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'MAPK10', 'PIK3R1'}, number: 29
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCB', 'VAV3', 'EGFR', 'BRAF', 'SOS1', 'ERBB2', 'CAV1', 'PAK1', 'PIK3R2', 'BCAR1', 'RAP1A', 'JUN', 'SHC1', 'PIK3R1', 'RAC1', 'EGF'}, number: 18
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'PAK1', 'RAC1'}, number: 4
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'PIK3CA', 'FN1', 'THBS3', 'RAC1', 'PDGFA', 'FLNB', 'PIK3CD', 'PIK3R2', 'RAP1A', 'FLNC', 'RAC2', 'PAK1', 'LAMB1', 'JUN', 'FLNA', 'LAMA5', 'EGF', 'LAMC2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'MAPK10', 'PIK3R1'}, number: 29
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'RAC2', 'PIK3CD', 'AKT3', 'SOS1', 'ERBB2', 'JUN', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1'}, number: 14
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCB', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'ERBB2', 'SOS1', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'EGF'}, number: 14
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'BRAF', 'PIK3CA', 'FN1', 'THBS3', 'RAC1', 'PDGFA', 'FLNB', 'PIK3CD', 'PIK3R2', 'RAP1A', 'FLNC', 'RAC2', 'PAK1', 'LAMB1', 'JUN', 'FLNA', 'LAMA5', 'EGF', 'LAMC2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'MAPK10', 'PIK3R1'}, number: 29
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'RAC2', 'PIK3CD', 'AKT3', 'SOS1', 'ERBB2', 'JUN', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1'}, number: 14
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND1', 'RAP1A'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'PDGFB', 'FYN'}, number: 4
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'PDGFC', 'COL4A4', 'THBS2', 'COL4A2', 'LAMA1', 'PDGFD', 'ITGB8', 'RELN', 'PIK3CA', 'FN1', 'VEGFA', 'THBS3', 'LAMB3', 'LAMC3', 'RAC1', 'LAMA2', 'ITGB3', 'PDGFA', 'PIK3CD', 'COL4A1', 'PIK3R2', 'RAP1A', 'ITGB6', 'ITGA2', 'RAC2', 'MET', 'PAK1', 'CCND1', 'PAK3', 'LAMB1', 'EGF', 'LAMA5', 'LAMC2', 'PRKCB', 'ITGA6', 'EGFR', 'ITGB5', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'ITGA3', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 48
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'RAC2', 'PIK3CD', 'AKT3', 'SOS1', 'ERBB2', 'JUN', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1'}, number: 14
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PIK3R1', 'JUN', 'PIK3R2'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'RAC1', 'PDGFB', 'CCND1', 'RAP1A', 'MAPK10', 'JUN'}, number: 8
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAPK10', 'PRKCA', 'HRAS', 'FYN', 'RAC2', 'PDGFB', 'PIK3CD', 'AKT3', 'SOS1', 'ERBB2', 'JUN', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1'}, number: 17
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'RAC1', 'VAV3', 'BRAF', 'SOS1', 'JUN', 'PIK3R2', 'RAP1A', 'MAPK10', 'PIK3R1', 'FYN', 'SHC1'}, number: 12
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PPP1CA', 'MAPK10', 'PRKCA', 'HRAS', 'PPP1CC', 'FYN', 'PRKCB', 'VAV3', 'JUN', 'PIK3R2', 'RAP1A', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1'}, number: 15
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PDGFB', 'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'FYN'}, number: 7
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'PDGFC', 'COL4A4', 'THBS2', 'COL4A2', 'LAMA1', 'PDGFD', 'ITGB8', 'RELN', 'PIK3CA', 'FN1', 'VEGFA', 'THBS3', 'LAMB3', 'LAMC3', 'LAMA2', 'ITGB3', 'PDGFA', 'PIK3CD', 'COL4A1', 'PIK3R2', 'ITGB6', 'ITGA2', 'MET', 'LAMB1', 'EGF', 'LAMA5', 'LAMC2', 'ITGA6', 'EGFR', 'ITGB5', 'PDGFB', 'AKT3', 'SOS1', 'ITGA3', 'PIK3R1'}, number: 37
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMC1', 'PRKCA', 'HRAS', 'PDGFC', 'COL4A4', 'THBS2', 'COL4A2', 'LAMA1', 'PDGFD', 'ITGB8', 'RELN', 'PIK3CA', 'FN1', 'VEGFA', 'THBS3', 'LAMB3', 'LAMC3', 'RAC1', 'LAMA2', 'ITGB3', 'PDGFA', 'PIK3CD', 'COL4A1', 'PIK3R2', 'ITGB6', 'ITGA2', 'MET', 'CCND1', 'LAMB1', 'EGF', 'LAMA5', 'LAMC2', 'ITGA6', 'EGFR', 'ITGB5', 'PDGFB', 'AKT3', 'SOS1', 'ITGA3', 'PIK3R1'}, number: 40
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PPP1CA', 'PRKCA', 'PPP1CC', 'PRKCB', 'PIK3CD', 'PIK3CA'}, number: 6
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CDK2', 'MDM2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CCNE1'}, number: 7
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CDK1'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'MCM7', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'CCNE2', 'CCNE1', 'GADD45A'}, number: 17
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'E2F3', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'GADD45A'}, number: 7
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'CCNE2', 'CCNE1', 'GADD45A'}, number: 16
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CCNB1', 'RPA1', 'MNAT1', 'CCNE1', 'CDK4', 'CDK1', 'RPA2', 'CDKN1B', 'POLE', 'CDK6', 'CDK2', 'CCNH', 'RPA3', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25A', 'PCNA', 'MDM2', 'CDKN1A'}, number: 21
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'CREB3', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CREB3L4', 'CDK6', 'CCNE2', 'CCNE1'}, number: 11
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'CCNE2', 'CCNE1', 'GADD45A'}, number: 16
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'CDC25A', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'CCNH', 'RPA3', 'MNAT1', 'CDKN1A', 'CCND1', 'POLE', 'CCNE1', 'GADD45A'}, number: 14
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'CCNE2', 'CCNE1', 'GADD45A'}, number: 16
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNB1'}, number: 2
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CREB3', 'MDM2', 'CDKN1B', 'CDKN1A', 'CREB3L4', 'GADD45A'}, number: 6
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CREB3', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CREB3L4', 'CDK6', 'CCNE2', 'CCNE1'}, number: 11
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MYBL2', 'AURKA'}, number: 2
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'E2F7', 'AURKA'}, number: 2
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CXCL8', 'RELA', 'PRKCD', 'ARRB1', 'EGFR', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'EGFR', 'SOS1', 'CD44', 'CDH1', 'PAK1', 'JUN', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'VEGFA', 'SHC1', 'NFKB1'}, number: 14
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CXCL8', 'RELA', 'PRKCD', 'ARRB1', 'EGFR', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CXCL8', 'RELA', 'PRKCD', 'ARRB1', 'EGFR', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCD', 'EGFR', 'JAK2', 'SOS1', 'SHC1', 'PAK1', 'PIK3R2', 'BCAR1', 'JUN', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3'}, number: 15
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'PAK1', 'PIK3CA', 'GNAQ', 'RAC1', 'STAT3'}, number: 6
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CXCL8', 'RELA', 'PRKCD', 'ARRB1', 'EGFR', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'IRS1', 'SOS1', 'CDKN1B', 'PIK3R2', 'JUN', 'CCND1', 'CDKN1A', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 14
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'EGFR', 'SOS1', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'STAT3'}, number: 11
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CXCL8', 'RELA', 'PRKCD', 'ARRB1', 'EGFR', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'IRS1', 'SOS1', 'CDKN1B', 'PIK3R2', 'JUN', 'CCND1', 'CDKN1A', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 14
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'CCND1'}, number: 3
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'EGR1', 'PRKCA', 'FYN'}, number: 4
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PIK3CA', 'VEGFA', 'RAC1', 'NFKB1', 'RELA', 'CDKN1B', 'PIK3R2', 'IRS1', 'PAK1', 'BCL2L1', 'CCND1', 'PTPN11', 'EGFR', 'JAK2', 'SOS1', 'CDKN1A', 'PIK3R1', 'SHC1'}, number: 20
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'IRS1', 'SOS1', 'CDKN1B', 'PIK3R2', 'JUN', 'CCND1', 'CDKN1A', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 14
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN', 'NFKB1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'SERPINE1', 'JUN', 'CDKN1A', 'CCND1', 'PPARG', 'RAC1', 'NFKB1'}, number: 9
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'HRAS', 'FYN', 'IRS1', 'SOS1', 'CDKN1B', 'PIK3R2', 'JUN', 'CCND1', 'CDKN1A', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EGR1', 'HRAS', 'RAC1', 'RELA', 'PRKCD', 'JAK2', 'IRS1', 'NFKBIA', 'BMP2', 'SOS1', 'SHC1', 'JUN', 'PIK3R2', 'PTPN11', 'PIK3R1', 'FYN', 'STAT3', 'NFKB1'}, number: 18
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BMP2', 'PIK3CA', 'FYN', 'RAC1', 'NFKB1', 'RELA', 'PRKCD', 'PIK3R2', 'STAT3', 'IRS1', 'NFKBIA', 'PTPN11', 'JUN', 'EGR1', 'JAK2', 'PIK3R1', 'SHC1'}, number: 19
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'PIK3R2', 'CDKN1A', 'ELAVL1', 'PIK3CA', 'PIK3R1', 'FYN'}, number: 8
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'SERPINE1', 'EGFR', 'JAK2', 'BMP2', 'KLF4', 'SOS1', 'CDKN1B', 'PIK3R2', 'CDKN1A', 'ELAVL1', 'PIK3CA', 'PPARG', 'PIK3R1', 'VEGFA', 'STAT3', 'IRS1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'PRKCA', 'HRAS', 'RELA', 'EGFR', 'JAK2', 'IRS1', 'SOS1', 'CDKN1B', 'PIK3R2', 'BCL2L1', 'ELAVL1', 'CCND1', 'PIK3CA', 'CDKN1A', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'NFKB1', 'PIK3CA', 'STAT3', 'IRS1'}, number: 5
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PRKCA', 'HRAS', 'PRKCD', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'NF1', 'FGFR1', 'PIK3R2', 'MAP2K3', 'FGFR2', 'PIK3CA', 'PIK3R1', 'MAP2K4'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'PIK3CA', 'CCNE1', 'MAP2K6', 'CDK4', 'PIK3CD', 'TSC1', 'MET', 'CDK2', 'CCND1', 'CDKN2A', 'MAP2K4', 'MAP2K2', 'EGFR', 'BRCA1', 'AKT3', 'MDM2', 'CDKN1A', 'MAP2K3', 'FGFR2'}, number: 21
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PRKCA', 'HRAS', 'PRKCD', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'NF1', 'FGFR1', 'PIK3R2', 'MAP2K3', 'FGFR2', 'PIK3CA', 'PIK3R1', 'MAP2K4'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PRKCA', 'HRAS', 'PRKCD', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'NF1', 'FGFR1', 'PIK3R2', 'MAP2K3', 'FGFR2', 'PIK3CA', 'PIK3R1', 'MAP2K4'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'SPRY2', 'PRKCD', 'EGFR', 'BRAF', 'ERBB2', 'ERRFI1', 'PIK3R2', 'CBL', 'PIK3R1', 'PIK3C2B'}, number: 14
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PRKCA', 'HRAS', 'PRKCD', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'NF1', 'FGFR1', 'PIK3R2', 'MAP2K3', 'FGFR2', 'PIK3CA', 'PIK3R1', 'MAP2K4'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'CCNE1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'PIK3C2B', 'IRS1', 'CDK2', 'CCND1', 'CDKN2A', 'BRCA1', 'AKT3', 'ERBB2', 'MDM2', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'PRKCA', 'HRAS', 'PRKCB', 'EGFR', 'BRAF', 'PIK3CD', 'PLCG2', 'AKT3', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6'}, number: 18
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PRKCA', 'HRAS', 'PRKCD', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'NF1', 'FGFR1', 'PIK3R2', 'MAP2K3', 'FGFR2', 'PIK3CA', 'PIK3R1', 'MAP2K4'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'CCNE1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'PIK3C2B', 'IRS1', 'CDK2', 'CCND1', 'CDKN2A', 'BRCA1', 'AKT3', 'ERBB2', 'MDM2', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'MSH6', 'BRCA1', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE1'}, number: 10
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'FGFR1', 'PIK3CA', 'CCNE1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'IRS1', 'TSC1', 'MET', 'PLCG2', 'CDK2', 'NF1', 'CCND1', 'MAP2K2', 'PRKCB', 'EGFR', 'BRCA1', 'AKT3', 'MDM2', 'CDKN1A', 'FGFR2', 'PIK3R1'}, number: 26
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'CCNE1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'PIK3C2B', 'IRS1', 'CDK2', 'CCND1', 'CDKN2A', 'BRCA1', 'AKT3', 'ERBB2', 'MDM2', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'PIK3R2', 'MAP2K3', 'PIK3R1', 'MAP2K4'}, number: 6
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'MSH6', 'BRCA1', 'CDK2', 'CDKN1A', 'CCND1', 'CCNE1'}, number: 8
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PIK3CA', 'CCNE1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'PIK3C2B', 'IRS1', 'CDK2', 'CCND1', 'CDKN2A', 'BRCA1', 'AKT3', 'ERBB2', 'MDM2', 'CDKN1A', 'PIK3R1'}, number: 20
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'HRAS', 'PRKCD', 'BRAF', 'PIK3R2', 'PIK3R1', 'IRS1'}, number: 8
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'PRKCD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'IRS1'}, number: 9
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC1', 'PRKCA', 'PIK3CD', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1'}, number: 7
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'HRAS', 'EGFR', 'MET', 'PIK3CD', 'AKT3', 'FGFR1', 'CDKN1B', 'PIK3R2', 'MDM2', 'CDKN1A', 'PIK3CA', 'FGFR2', 'PIK3R1', 'PIK3C2B', 'IRS1'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'FGFR1', 'PIK3CA', 'CCNE1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'PIK3C2B', 'IRS1', 'TSC1', 'MET', 'CDK2', 'CCND1', 'MAP2K2', 'EGFR', 'BRCA1', 'AKT3', 'MDM2', 'CDKN1A', 'FGFR2', 'PIK3R1'}, number: 24
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PIK3CD', 'PLCG2', 'PIK3CA', 'PIK3C2B', 'IRS1'}, number: 7
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA', 'HSP90AA1'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HSP90AA1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HSP90AA1', 'CCL2', 'RXRA', 'ANGPTL4', 'JUN'}, number: 5
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RXRA', 'JUN', 'HSP90AA1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'LRRC8A', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA', 'HSP90AA1'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RXRA', 'NR3C1', 'HSP90AA1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HSP90AA1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'LRRC8A'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1', 'PDK1'}, number: 2
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1', 'PDK1'}, number: 2
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC16A1', 'SLC2A1'}, number: 2
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CCND1', 'CDH1'}, number: 3
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'PMAIP1', 'CCND1'}, number: 3
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'CCND1'}, number: 2
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'PMAIP1', 'CCND1'}, number: 3
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'PMAIP1', 'CCND1'}, number: 3
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'CCND1'}, number: 2
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'PMAIP1', 'CCND1'}, number: 3
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1', 'CCND1'}, number: 2
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'PMAIP1', 'CCND1'}, number: 3
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CCND1'}, number: 2
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'HSPA8', 'EGFR', 'BDNF', 'MAP3K5', 'MYD88', 'RAC1'}, number: 7
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BDNF', 'MAP3K5', 'EGFR'}, number: 3
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'SOD1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'SOD1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'HSPA8', 'EGFR', 'BDNF', 'MAP3K5', 'MYD88', 'RAC1'}, number: 7
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'HSPA8', 'EGFR', 'BDNF', 'MAP3K5', 'MYD88', 'RAC1'}, number: 7
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'SOD1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'TWIST1', 'AURKA', 'RAC1', 'EGFR'}, number: 4
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'MAPRE1', 'MAP1B', 'RAC1'}, number: 3
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'HSPA8', 'EGFR', 'BDNF', 'MAP3K5', 'MYD88', 'RAC1'}, number: 7
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'EGFR'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'HSPA8', 'EGFR', 'BDNF', 'MAP3K5', 'MYD88', 'RAC1'}, number: 7
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RAD23B'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SQSTM1', 'PRDX1', 'HSP90AA1'}, number: 3
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HSP90AA1', 'EGFR', 'BDNF', 'SGK1', 'RAC1'}, number: 5
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MYD88', 'SQSTM1'}, number: 2
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'HSP90AA1', 'SOD1', 'PRDX1', 'RAD23B', 'AURKA', 'RAC1'}, number: 7
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'RAC1', 'PRDX1', 'HSP90AA1'}, number: 4
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'SOD1'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'BDNF', 'RAC1'}, number: 3
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PPP1CA', 'SQSTM1', 'BDNF', 'SMAD7', 'RAC1'}, number: 5
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SQSTM1', 'PRDX1', 'HSP90AA1'}, number: 3
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'HSP90AA1', 'TWIST1', 'EGFR', 'MIF'}, number: 5
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HSP90AA1', 'EGFR', 'BDNF', 'SGK1', 'RAC1'}, number: 5
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PPP1CA', 'BDNF', 'SMAD7'}, number: 3
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'SOD1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'HRAS', 'RELA', 'EGFR', 'TGFBR2', 'AKT3', 'FGFR3', 'TRAF3', 'FGFR1', 'PIK3R2', 'FGFR2', 'PIK3CA', 'PIK3R1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'TSC1', 'HRAS', 'PRKAA2', 'EGFR', 'AKT3', 'FGFR3', 'FGFR1', 'CDKN1A', 'FGFR2', 'CCND1', 'PIK3CA', 'CDKN2A', 'VEGFA', 'PRKAA1', 'NFKB1'}, number: 16
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'HRAS', 'RELA', 'EGFR', 'TGFBR2', 'AKT3', 'FGFR3', 'TRAF3', 'FGFR1', 'PIK3R2', 'FGFR2', 'PIK3CA', 'PIK3R1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'HRAS', 'RELA', 'EGFR', 'TGFBR2', 'AKT3', 'FGFR3', 'TRAF3', 'FGFR1', 'PIK3R2', 'FGFR2', 'PIK3CA', 'PIK3R1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'EGFR', 'ERBB2', 'PIK3R2', 'PIK3R1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'HRAS', 'RELA', 'EGFR', 'TGFBR2', 'AKT3', 'FGFR3', 'TRAF3', 'FGFR1', 'PIK3R2', 'FGFR2', 'PIK3CA', 'PIK3R1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'AKT3', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'NFKB1'}, number: 13
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'EGFR', 'AKT3', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6'}, number: 13
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'HRAS', 'RELA', 'EGFR', 'TGFBR2', 'AKT3', 'FGFR3', 'TRAF3', 'FGFR1', 'PIK3R2', 'FGFR2', 'PIK3CA', 'PIK3R1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'AKT3', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'NFKB1'}, number: 13
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CDK4', 'CDKN1A', 'CCND1', 'CDK6'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'TGFBR2', 'KEAP1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'PIK3CA', 'VEGFA', 'DDIT4', 'NFKB1', 'CDK4', 'RELA', 'FGFR3', 'PIK3R2', 'CDK6', 'TSC1', 'PRKAA2', 'CCND1', 'EGFR', 'AKT3', 'CDKN1A', 'FGFR2', 'PIK3R1', 'PRKAA1'}, number: 20
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'AKT3', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'NFKB1'}, number: 13
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PIK3R1', 'PIK3R2', 'RELA', 'NFKB1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKAA2', 'TGFBR2', 'SESN2', 'CDKN1A', 'CCND1', 'KEAP1', 'PRKAA1', 'DDIT4', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'CDK4', 'HRAS', 'TGFBR2', 'AKT3', 'ERBB2', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'KEAP1', 'NFKB1'}, number: 15
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'TSC1', 'HRAS', 'PRKAA2', 'RELA', 'PIK3R2', 'PIK3R1', 'PRKAA1', 'NFKB1'}, number: 8
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'PRKAA2', 'RELA', 'TGFBR2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'PRKAA1', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC1', 'PRKAA2', 'TGFBR2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'KEAP1', 'PRKAA1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TSC1', 'HRAS', 'PRKAA2', 'EGFR', 'AKT3', 'FGFR3', 'FGFR1', 'PIK3R2', 'CDKN1A', 'FGFR2', 'PIK3CA', 'PIK3R1', 'VEGFA', 'PRKAA1', 'DDIT4'}, number: 15
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'PIK3CA', 'VEGFA', 'DDIT4', 'NFKB1', 'CDK4', 'RELA', 'FGFR3', 'PIK3R2', 'CDK6', 'TSC1', 'PRKAA2', 'CCND1', 'EGFR', 'AKT3', 'CDKN1A', 'FGFR2', 'PIK3R1', 'PRKAA1'}, number: 20
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'TGFBR2', 'NFKB1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'TAB2', 'TLR3', 'BRAF', 'SOS2', 'MYD88', 'PIK3CA', 'NFKB1', 'MAP2K6', 'CXCL8', 'TBK1', 'RELA', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'TRAF3', 'CASP8', 'TGFB2', 'TLR2', 'TGFBR2', 'IFNAR1', 'TICAM1', 'MAP3K1', 'MAPK13', 'JUN', 'MAP2K4', 'MAP2K2', 'IL6', 'AKT3', 'SOS1', 'TIRAP', 'TGFBR1', 'STAT1', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 38
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAPK10', 'HRAS', 'IL6', 'MAP2K4', 'PIK3CD', 'AKT3', 'SOS1', 'MAP3K1', 'CDKN1A', 'MAP2K3', 'STAT1', 'PIK3CA', 'JUN', 'JAK1', 'NFKB1'}, number: 17
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'TAB2', 'TLR3', 'BRAF', 'SOS2', 'MYD88', 'PIK3CA', 'NFKB1', 'MAP2K6', 'CXCL8', 'TBK1', 'RELA', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'TRAF3', 'CASP8', 'TGFB2', 'TLR2', 'TGFBR2', 'IFNAR1', 'TICAM1', 'MAP3K1', 'MAPK13', 'JUN', 'MAP2K4', 'MAP2K2', 'IL6', 'AKT3', 'SOS1', 'TIRAP', 'TGFBR1', 'STAT1', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 38
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'TAB2', 'TLR3', 'BRAF', 'SOS2', 'MYD88', 'PIK3CA', 'NFKB1', 'MAP2K6', 'CXCL8', 'TBK1', 'RELA', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'TRAF3', 'CASP8', 'TGFB2', 'TLR2', 'TGFBR2', 'IFNAR1', 'TICAM1', 'MAP3K1', 'MAPK13', 'JUN', 'MAP2K4', 'MAP2K2', 'IL6', 'AKT3', 'SOS1', 'TIRAP', 'TGFBR1', 'STAT1', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 38
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'JAK2', 'BRAF', 'SOS1', 'PCNA', 'MAP3K1', 'STAT5A', 'SOS2', 'PIK3R2', 'STAT1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1'}, number: 17
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'STAT3'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'TAB2', 'TLR3', 'BRAF', 'SOS2', 'MYD88', 'PIK3CA', 'NFKB1', 'MAP2K6', 'CXCL8', 'TBK1', 'RELA', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'TRAF3', 'CASP8', 'TGFB2', 'TLR2', 'TGFBR2', 'IFNAR1', 'TICAM1', 'MAP3K1', 'MAPK13', 'JUN', 'MAP2K4', 'MAP2K2', 'IL6', 'AKT3', 'SOS1', 'TIRAP', 'TGFBR1', 'STAT1', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 38
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'HRAS', 'SMAD3', 'BID', 'PIK3CD', 'AKT3', 'SOS1', 'MAP3K1', 'MAP3K7', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 18
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'BID', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'STAT5A', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'STAT3', 'CASP9'}, number: 18
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'TAB2', 'TLR3', 'BRAF', 'SOS2', 'MYD88', 'PIK3CA', 'NFKB1', 'MAP2K6', 'CXCL8', 'TBK1', 'RELA', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'TRAF3', 'CASP8', 'TGFB2', 'TLR2', 'TGFBR2', 'IFNAR1', 'TICAM1', 'MAP3K1', 'MAPK13', 'JUN', 'MAP2K4', 'MAP2K2', 'IL6', 'AKT3', 'SOS1', 'TIRAP', 'TGFBR1', 'STAT1', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 38
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'HRAS', 'SMAD3', 'BID', 'PIK3CD', 'AKT3', 'SOS1', 'MAP3K1', 'MAP3K7', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 18
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID', 'PCNA', 'CDKN1A', 'DDB1', 'CASP9'}, number: 6
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'TGFB2', 'TGFBR2'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CREB3', 'SOS2', 'PIK3CA', 'NFKB1', 'RELA', 'PIK3CD', 'PIK3R2', 'CREB3L4', 'CASP9', 'JAK1', 'TLR2', 'CREB5', 'IFNAR1', 'MAP2K2', 'PRKCB', 'IL6', 'JAK2', 'AKT3', 'SOS1', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 24
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'MAPK10', 'HRAS', 'SMAD3', 'BID', 'PIK3CD', 'AKT3', 'SOS1', 'MAP3K1', 'MAP3K7', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'JUN', 'CASP9', 'NFKB1'}, number: 18
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'RELA', 'TAB2', 'MAP3K1', 'MAP3K7', 'PIK3R2', 'MAP2K3', 'MYD88', 'PIK3R1', 'JUN', 'MAP2K4', 'NFKB1'}, number: 13
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'PRKCB', 'TGFBR2', 'PCNA', 'MAP3K7', 'JUN', 'CDKN1A', 'MAPK10', 'DDB1', 'NFKB1'}, number: 11
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SMAD3', 'SOS2', 'PIK3CA', 'NFKB1', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'CASP9', 'CASP8', 'TGFB2', 'TGFBR2', 'MAP3K1', 'JUN', 'BID', 'AKT3', 'SOS1', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 21
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'JAK2', 'BRAF', 'SOS1', 'MAP3K1', 'STAT5A', 'PIK3R2', 'STAT1', 'MAPK10', 'PIK3R1', 'JUN', 'STAT3', 'NFKB1'}, number: 15
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SMAD3', 'PIK3CA', 'NFKB1', 'RELA', 'STAT6', 'STAT5A', 'PIK3R2', 'STAT3', 'JAK1', 'TGFB2', 'TGFBR2', 'MAP3K1', 'JUN', 'MAP2K2', 'PRKCB', 'IL6', 'JAK2', 'TGFBR1', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 23
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'TGFBR2', 'PIK3CD', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1'}, number: 8
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'SMAD3', 'CREB3', 'PIK3CA', 'PIK3CD', 'STAT6', 'STAT5A', 'PIK3R2', 'CREB3L4', 'STAT3', 'CASP9', 'JAK1', 'CREB5', 'IFNAR1', 'MAP2K2', 'IL6', 'JAK2', 'AKT3', 'SOS1', 'CDKN1A', 'STAT1', 'PIK3R1'}, number: 22
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CREB3', 'SOS2', 'PIK3CA', 'NFKB1', 'RELA', 'PIK3CD', 'PIK3R2', 'CREB3L4', 'CASP9', 'JAK1', 'TLR2', 'CREB5', 'IFNAR1', 'MAP2K2', 'IL6', 'JAK2', 'AKT3', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 22
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'PRKCB', 'IL6', 'SMAD3', 'TGFBR2', 'PIK3CD', 'STAT6', 'TGFBR1', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1', 'NFKB1'}, number: 14
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CXCL8', 'IL6', 'RAC1', 'SOS1', 'TGFBR1', 'PTPN11', 'JUN', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PODXL', 'IL6', 'BRCA1', 'COL4A2', 'SOS1', 'CD44', 'JUN', 'CDKN1A', 'CCND1', 'VEGFA', 'JAK1', 'NFKB1'}, number: 12
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CXCL8', 'IL6', 'RAC1', 'SOS1', 'TGFBR1', 'PTPN11', 'JUN', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CXCL8', 'IL6', 'RAC1', 'SOS1', 'TGFBR1', 'PTPN11', 'JUN', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RAC1', 'SOS1', 'PTPN11', 'JUN', 'STAT3', 'JAK1'}, number: 6
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1', 'STAT3'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CXCL8', 'IL6', 'RAC1', 'SOS1', 'TGFBR1', 'PTPN11', 'JUN', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'SOS1', 'JUN', 'CDKN1A', 'CCND1', 'RAC1', 'CASP9', 'NFKB1'}, number: 9
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'SOS1', 'CDKN1A', 'CCND1', 'STAT3', 'CASP9'}, number: 5
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CXCL8', 'IL6', 'RAC1', 'SOS1', 'TGFBR1', 'PTPN11', 'JUN', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'SOS1', 'JUN', 'CDKN1A', 'CCND1', 'RAC1', 'CASP9', 'NFKB1'}, number: 9
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BRCA1', 'CDKN1A', 'CCND1', 'CASP9'}, number: 4
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RAC1', 'BRCA1', 'COL4A2', 'SOS1', 'BCL2L1', 'CASP9', 'CDKN1A', 'CCND1', 'PTPN11', 'VEGFA', 'IL6R', 'JAK1', 'NFKB1'}, number: 14
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'SOS1', 'JUN', 'CDKN1A', 'CCND1', 'RAC1', 'CASP9', 'NFKB1'}, number: 9
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PTPN11', 'JUN', 'NFKB1'}, number: 3
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RAC1', 'BRCA1', 'CDKN1A', 'CCND1', 'JUN', 'NFKB1'}, number: 6
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'BRCA1', 'SOS1', 'JUN', 'CDKN1A', 'CCND1', 'RAC1', 'CASP9', 'NFKB1'}, number: 9
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAC1', 'SOS1', 'PTPN11', 'JUN', 'STAT3', 'NFKB1'}, number: 6
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL6', 'SMAD3', 'PTPN11', 'TGFBR1', 'JUN', 'IL6R', 'RAC1', 'STAT3', 'JAK1', 'NFKB1'}, number: 10
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6', 'SMAD3', 'COL4A2', 'SOS1', 'CASP9', 'CDKN1A', 'VEGFA', 'STAT3', 'JAK1', 'IL6R'}, number: 10
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RAC1', 'BRCA1', 'COL4A2', 'SOS1', 'BCL2L1', 'CASP9', 'CDKN1A', 'CCND1', 'VEGFA', 'IL6R', 'JAK1', 'NFKB1'}, number: 13
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL6', 'SMAD3', 'STAT3', 'TGFBR1', 'IL6R', 'JAK1', 'NFKB1'}, number: 7
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HRAS', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'PAK1', 'PAK2', 'FGFR2'}, number: 9
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'CCN2', 'LATS2', 'FGFR1', 'LATS1', 'TEAD1', 'ITGB3', 'FGFR4', 'FGFR3', 'CD44', 'CDH1', 'PLCB4', 'NF2', 'TEAD4', 'EPHA2', 'AMOT', 'CDH3', 'CDH2', 'CTNNA1', 'ITGA2', 'MET', 'FOXM1', 'INSR', 'CDH16', 'CDH6', 'PAK1', 'CCND1', 'PAK3', 'ITGA6', 'EGFR', 'TEAD3', 'PAK2', 'ITGA3', 'FGFR2'}, number: 34
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HRAS', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'PAK1', 'PAK2', 'FGFR2'}, number: 9
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HRAS', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'PAK1', 'PAK2', 'FGFR2'}, number: 9
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'PAK1', 'EGFR'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PAK1'}, number: 1
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HRAS', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'PAK1', 'PAK2', 'FGFR2'}, number: 9
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'INSR', 'CCND1'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'HRAS', 'CCND1', 'EGFR'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HRAS', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'PAK1', 'PAK2', 'FGFR2'}, number: 9
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'INSR', 'CCND1'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RBX1', 'DDB1', 'CCND1'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1', 'EPHA2', 'INSR'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'ITGB8', 'ITGB3', 'FGFR4', 'FGFR3', 'PRKACB', 'ITGB6', 'EPHA2', 'ITGA2', 'MET', 'INSR', 'PAK1', 'CCND1', 'PAK3', 'ITGA6', 'EGFR', 'ITGB5', 'PAK2', 'ITGA3', 'FGFR2'}, number: 21
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'INSR', 'CCND1'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'EPHA2', 'RBX1', 'PLCB4', 'CCND1', 'DDB1'}, number: 5
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EPHA2', 'HRAS', 'INSR', 'RBX1', 'CCND1'}, number: 5
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'CDH2'}, number: 2
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PPP1CA', 'HRAS', 'PPP1CC', 'CDH2', 'INSR', 'PLCB4'}, number: 6
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1', 'EPHA2', 'PRKACB', 'INSR'}, number: 4
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPHA2', 'HRAS', 'ITGA6', 'ITGA2', 'ITGB3', 'EGFR', 'CTNNA1', 'FGFR4', 'MET', 'ITGB5', 'ITGAE', 'FGFR3', 'INSR', 'FGFR1', 'ITGB8', 'ITGA3', 'ITGB6', 'FGFR2'}, number: 18
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPHA2', 'HRAS', 'ITGA6', 'ITGA2', 'ITGB3', 'EGFR', 'MET', 'FGFR4', 'ITGB5', 'ITGAE', 'FGFR3', 'INSR', 'FGFR1', 'ITGB8', 'CCND1', 'ITGB6', 'ITGA3', 'FGFR2'}, number: 18
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PPP1CA', 'PLCB4', 'PPP1CC', 'INSR'}, number: 4
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'PRKCD', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'FGFR2', 'RAC1'}, number: 9
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LATS2', 'FGFR1', 'LATS1', 'TEAD1', 'PRKAG2', 'FGFR4', 'FGFR3', 'PRKAB1', 'CDH1', 'PLCB4', 'PRKAB2', 'NF2', 'TEAD4', 'EPHA2', 'PRKAA2', 'CDH3', 'CDH2', 'MET', 'INSR', 'CDH16', 'CDH6', 'PRKAG1', 'EGFR', 'TEAD3', 'FGFR2', 'PRKAA1'}, number: 26
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'PRKCD', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'FGFR2', 'RAC1'}, number: 9
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'PRKCD', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'FGFR2', 'RAC1'}, number: 9
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'EGFR', 'PRKCD', 'RAC1'}, number: 5
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'GNAQ', 'RAC1'}, number: 3
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'PRKCD', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'FGFR2', 'RAC1'}, number: 9
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RAC1', 'INSR', 'SMAD3'}, number: 3
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'EGFR'}, number: 3
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'PRKCD', 'EGFR', 'FGFR4', 'FGFR3', 'FGFR1', 'PRKACB', 'FGFR2', 'RAC1'}, number: 9
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RAC1', 'INSR', 'SMAD3'}, number: 3
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'INSR'}, number: 3
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'PRKAG2', 'PRKAA2', 'PRKCB', 'EGFR', 'MET', 'FGFR4', 'FGFR3', 'PRKAB1', 'INSR', 'FGFR1', 'PRKACB', 'FGFR2', 'PRKAB2', 'RAC1', 'PRKAA1', 'PRKAG1'}, number: 18
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RAC1', 'INSR', 'SMAD3'}, number: 3
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'PRKAG2', 'PRKAA2', 'PRKCB', 'PRKAB1', 'PLCB4', 'PRKAB2', 'RAC1', 'PRKAA1', 'PRKAG1'}, number: 11
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'SMAD3', 'INSR', 'RAC1'}, number: 5
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PRKAA2', 'CDH2', 'PRKCD', 'RAC1', 'PRKAA1'}, number: 5
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'PRKAA2', 'PRKCB', 'PRKCD', 'SMAD3', 'CDH2', 'INSR', 'PLCB4', 'RAC1', 'PRKAA1'}, number: 10
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'PRKAG2', 'PRKAA2', 'INSR', 'PRKAB1', 'PRKACB', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 10
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPHA2', 'PRKAA2', 'SMAD3', 'EGFR', 'MET', 'FGFR4', 'FGFR3', 'INSR', 'FGFR1', 'FGFR2', 'PRKAA1'}, number: 11
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'PRKAA2', 'EGFR', 'MET', 'FGFR4', 'FGFR3', 'INSR', 'FGFR1', 'FGFR2', 'RAC1', 'PRKAA1'}, number: 12
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'SMAD3', 'INSR', 'PLCB4'}, number: 5
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Hippo Signaling Regulation WP4540, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'TBK1', 'NFKBIA', 'IFNAR1', 'TICAM1', 'MAP3K7', 'STAT1', 'NFKB1', 'MYD88', 'JUN', 'TRAF3'}, number: 10
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'STAT1', 'JAK1', 'NFKB1'}, number: 4
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'TBK1', 'NFKBIA', 'IFNAR1', 'TICAM1', 'MAP3K7', 'STAT1', 'NFKB1', 'MYD88', 'JUN', 'TRAF3'}, number: 10
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'TBK1', 'NFKBIA', 'IFNAR1', 'TICAM1', 'MAP3K7', 'STAT1', 'NFKB1', 'MYD88', 'JUN', 'TRAF3'}, number: 10
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'STAT1', 'JAK1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'TBK1', 'NFKBIA', 'IFNAR1', 'TICAM1', 'MAP3K7', 'STAT1', 'NFKB1', 'MYD88', 'JUN', 'TRAF3'}, number: 10
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAP3K7', 'JUN', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'TBK1', 'NFKBIA', 'IFNAR1', 'TICAM1', 'MAP3K7', 'STAT1', 'NFKB1', 'MYD88', 'JUN', 'TRAF3'}, number: 10
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAP3K7', 'JUN', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IFNAR1', 'JAK1', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAP3K7', 'JUN', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKBIA', 'MAP3K7', 'MYD88', 'JUN', 'NFKB1'}, number: 5
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAP3K7', 'IRF9', 'JUN', 'NFKB1'}, number: 4
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAP3K7', 'JUN', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'NFKBIA', 'STAT1', 'NFKB1'}, number: 4
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NFKBIA', 'STAT1', 'JUN', 'JAK1', 'NFKB1'}, number: 5
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'STAT1', 'IFNAR1', 'JAK1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IFNAR1', 'JAK1', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'STAT1', 'JAK1', 'NFKB1'}, number: 3
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Host Pathogen Interaction Of Human CoV Interferon Induction WP4880, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1A', 'IL1R1', 'JUND'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ATF3', 'HBEGF', 'VEGFA'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1A', 'IL1R1', 'JUND'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1A', 'IL1R1', 'JUND'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUND'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1A', 'IL1R1', 'JUND'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1A', 'IL1R1', 'JUND'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1A', 'IL1R1'}, number: 2
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1A', 'IL1R1'}, number: 2
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1A', 'IL1R1'}, number: 2
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1B', 'TLR2', 'IL1R1', 'CCL2', 'PIK3CA', 'MYD88', 'NFKB1'}, number: 7
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'CCL2', 'HBEGF', 'PIK3CA', 'NFKB1'}, number: 5
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1B', 'TLR2', 'IL1R1', 'CCL2', 'PIK3CA', 'MYD88', 'NFKB1'}, number: 7
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1B', 'TLR2', 'IL1R1', 'CCL2', 'PIK3CA', 'MYD88', 'NFKB1'}, number: 7
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1B', 'TLR2', 'IL1R1', 'CCL2', 'PIK3CA', 'MYD88', 'NFKB1'}, number: 7
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CA', 'NFKB1'}, number: 2
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1B', 'TLR2', 'IL1R1', 'CCL2', 'PIK3CA', 'MYD88', 'NFKB1'}, number: 7
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CA', 'IL1B', 'NFKB1'}, number: 3
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'HBEGF'}, number: 2
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'TLR2', 'F2R', 'NFKB1'}, number: 4
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CA', 'NFKB1'}, number: 2
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'IL1R1', 'CCL2', 'MYD88', 'NFKB1'}, number: 5
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCL2', 'HBEGF', 'ICAM1', 'NFKB1'}, number: 4
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3CA', 'IL1B', 'HBEGF', 'NFKB1'}, number: 4
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PIK3CA', 'IL1B', 'IL1R1', 'NFKB1'}, number: 4
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA', 'HBEGF'}, number: 2
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3CA', 'F2R'}, number: 2
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'TLR2', 'F2R', 'NFKB1'}, number: 4
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'IL1B', 'IL1R1', 'NFKB1'}, number: 4
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'TAB2', 'MAP3K14', 'MYD88', 'NFKB1', 'MAP2K6', 'IL1B', 'RELA', 'IL1RAP', 'PELI2', 'MAP3K7', 'PIK3R2', 'SQSTM1', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'PTPN11', 'JUN', 'MAP2K4', 'PELI1', 'MAP2K2', 'TOLLIP', 'ECSIT', 'HSPB2', 'MAP2K3', 'PIK3R1'}, number: 27
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'IL1B', 'MAP3K1', 'MAP2K3', 'JUN', 'MAP2K4', 'NFKB1'}, number: 8
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'TAB2', 'MAP3K14', 'MYD88', 'NFKB1', 'MAP2K6', 'IL1B', 'RELA', 'IL1RAP', 'PELI2', 'MAP3K7', 'PIK3R2', 'SQSTM1', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'PTPN11', 'JUN', 'MAP2K4', 'PELI1', 'MAP2K2', 'TOLLIP', 'ECSIT', 'HSPB2', 'MAP2K3', 'PIK3R1'}, number: 27
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'TAB2', 'MAP3K14', 'MYD88', 'NFKB1', 'MAP2K6', 'IL1B', 'RELA', 'IL1RAP', 'PELI2', 'MAP3K7', 'PIK3R2', 'SQSTM1', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'PTPN11', 'JUN', 'MAP2K4', 'PELI1', 'MAP2K2', 'TOLLIP', 'ECSIT', 'HSPB2', 'MAP2K3', 'PIK3R1'}, number: 27
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'MAP3K1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN'}, number: 6
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'TAB2', 'MAP3K14', 'MYD88', 'NFKB1', 'MAP2K6', 'IL1B', 'RELA', 'IL1RAP', 'PELI2', 'MAP3K7', 'PIK3R2', 'SQSTM1', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'PTPN11', 'JUN', 'MAP2K4', 'PELI1', 'MAP2K2', 'TOLLIP', 'ECSIT', 'HSPB2', 'MAP2K3', 'PIK3R1'}, number: 27
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAP3K1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'JUN', 'NFKB1'}, number: 6
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'PIK3R2'}, number: 3
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'TAB2', 'MAP3K14', 'MYD88', 'NFKB1', 'MAP2K6', 'IL1B', 'RELA', 'IL1RAP', 'PELI2', 'MAP3K7', 'PIK3R2', 'SQSTM1', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'PTPN11', 'JUN', 'MAP2K4', 'PELI1', 'MAP2K2', 'TOLLIP', 'ECSIT', 'HSPB2', 'MAP2K3', 'PIK3R1'}, number: 27
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'MAP3K1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'JUN', 'NFKB1'}, number: 7
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SQSTM1'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'PIK3R2', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 6
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAP3K1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'JUN', 'NFKB1'}, number: 6
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'TAB2', 'MAP3K14', 'MYD88', 'NFKB1', 'MAP2K6', 'IL1B', 'RELA', 'IL1RAP', 'PELI2', 'MAP3K7', 'PIK3R2', 'SQSTM1', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'PTPN11', 'JUN', 'MAP2K4', 'PELI1', 'MAP2K2', 'TOLLIP', 'ECSIT', 'HSPB2', 'MAP2K3', 'PIK3R1'}, number: 27
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'MAP3K7', 'JUN', 'NFKB1'}, number: 4
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'MAP3K1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'MAP2K2', 'RELA', 'NFKBIA', 'MAP3K1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN', 'NFKB1'}, number: 10
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'MAP2K2', 'RELA', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN', 'NFKB1'}, number: 13
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SQSTM1', 'PIK3R1', 'PIK3R2'}, number: 3
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'PIK3R2'}, number: 3
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'PIK3R2', 'PIK3R1', 'NFKB1'}, number: 5
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1A', 'IL1B', 'IL1R1', 'NFKB1'}, number: 4
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL1 Signaling WP195, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1A', 'IL6', 'STAT1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'STAT1', 'IL6', 'JAK1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'HMOX1'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'HMOX1'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1A', 'IL6', 'STAT1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1A', 'IL6', 'STAT1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'HMOX1'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT1', 'STAT3', 'JAK1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1A', 'IL6', 'STAT1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1A', 'IL6', 'STAT1'}, number: 3
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HMOX1', 'BLVRB'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'JAK1'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1A'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HMOX1', 'BLVRB'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HMOX1', 'BLVRB'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'HMOX1'}, number: 1
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT1', 'STAT3'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL6', 'IL1A', 'STAT1', 'STAT3', 'JAK1'}, number: 5
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HMOX1', 'BLVRB'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'STAT1', 'IL6', 'STAT3', 'JAK1'}, number: 4
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'JAK1'}, number: 2
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL6', 'IL1A', 'STAT1', 'STAT3', 'JAK1'}, number: 5
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL10 Anti Inflammatory Signaling WP4495, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'HMOX1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3CD', 'SOS1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'NFKB1'}, number: 11
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PIK3CD', 'SOS1', 'STAT1', 'PIK3CA', 'SHC1', 'JAK1', 'NFKB1'}, number: 7
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3CD', 'SOS1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'NFKB1'}, number: 11
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3CD', 'SOS1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'NFKB1'}, number: 11
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'GAB2', 'JAK2', 'SOS1', 'SHC1', 'STAT5A', 'PIK3R2', 'STAT1', 'CBL', 'PTPN11', 'PIK3R1', 'STAT3', 'JAK1'}, number: 12
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'STAT3'}, number: 2
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3CD', 'SOS1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'NFKB1'}, number: 11
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CD', 'SOS1', 'PIK3R2', 'NFKB1', 'PIK3CA', 'PIK3R1', 'SHC1', 'IRS1'}, number: 8
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CD', 'SOS1', 'STAT5A', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 7
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3CD', 'SOS1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'NFKB1'}, number: 11
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CD', 'SOS1', 'PIK3R2', 'NFKB1', 'PIK3CA', 'PIK3R1', 'SHC1', 'IRS1'}, number: 8
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'CEBPB'}, number: 2
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELA', 'GAB2', 'JAK2', 'IRS1', 'PIK3CD', 'SOS1', 'PIK3R2', 'PIK3CA', 'PTPN11', 'PIK3R1', 'SHC1', 'JAK1', 'NFKB1'}, number: 13
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CD', 'SOS1', 'PIK3R2', 'NFKB1', 'PIK3CA', 'PIK3R1', 'SHC1', 'IRS1'}, number: 8
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3R2', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 6
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IRS1', 'PIK3CD', 'SOS1', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CEBPB', 'SHC1', 'NFKB1'}, number: 9
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'IRS2', 'RELA', 'GAB2', 'JAK2', 'IRS1', 'NFKBIA', 'SOS1', 'SHC1', 'STAT5A', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'STAT3', 'NFKB1'}, number: 15
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IRS2', 'RELA', 'JAK2', 'IRS1', 'NFKBIA', 'SHC1', 'STAT6', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IRS2', 'PIK3CD', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CEBPB'}, number: 6
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IRS2', 'JAK2', 'PIK3CD', 'SOS1', 'STAT6', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'CEBPB', 'STAT3', 'JAK1', 'IRS1'}, number: 14
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IRS2', 'RELA', 'JAK2', 'IRS1', 'PIK3CD', 'SOS1', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'JAK1', 'NFKB1'}, number: 11
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IRS1', 'PIK3CD', 'STAT6', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1', 'NFKB1'}, number: 8
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'PRKCD', 'SOS1', 'MAP3K7', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'MAP2K4'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'SOS1', 'JAK1', 'STAT1', 'SHC1', 'MAP2K4'}, number: 7
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'PRKCD', 'SOS1', 'MAP3K7', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'MAP2K4'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'PRKCD', 'SOS1', 'MAP3K7', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'MAP2K4'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCD', 'JAK2', 'SOS1', 'SHC1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1'}, number: 12
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1', 'STAT3'}, number: 2
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'PRKCD', 'SOS1', 'MAP3K7', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'MAP2K4'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SOS1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'SOS1', 'PIK3R2', 'PIK3R1', 'STAT3'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'PRKCD', 'SOS1', 'MAP3K7', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'MAP2K4'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SOS1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'JAK2', 'SOS1', 'BCL2L1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'RAC1', 'SHC1', 'JAK1', 'IL6R'}, number: 12
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SOS1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP3K7', 'PIK3R2', 'PTPN11', 'PIK3R1', 'MAP2K4'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAP3K7', 'JUNB', 'RAC1'}, number: 3
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SOS1', 'MAP3K7', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'PRKCD', 'JAK2', 'SOS1', 'SHC1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'PRKCD', 'JAK2', 'SHC1', 'PIK3R2', 'STAT1', 'IL6ST', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1', 'IL6R'}, number: 14
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'PIK3R2'}, number: 2
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AGT', 'JAK2', 'STAT3', 'SOS1', 'PIK3R2', 'STAT1', 'PIK3R1', 'IL6ST', 'JAK1', 'IL6R'}, number: 12
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'JAK2', 'SOS1', 'BCL2L1', 'PIK3R2', 'PIK3R1', 'RAC1', 'JAK1', 'IL6R'}, number: 10
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL6', 'STAT3', 'STAT1', 'IL6ST', 'JAK1', 'IL6R'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'STAT1', 'IFNAR1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'STAT1', 'JAK1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'STAT1', 'IFNAR1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'STAT1', 'IFNAR1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JAK2', 'STAT1', 'JAK1'}, number: 3
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'STAT1', 'IFNAR1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'STAT1', 'IFNAR1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'JAK2', 'IFNAR1', 'JAK1'}, number: 3
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'IRF9'}, number: 1
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JAK2', 'STAT1'}, number: 2
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JAK2', 'IFNGR2', 'STAT1', 'JAK1'}, number: 4
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'JAK2', 'STAT1', 'IFNAR1', 'JAK1'}, number: 4
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'JAK2', 'IFNAR1', 'JAK1'}, number: 3
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IFNGR2', 'STAT1', 'JAK1'}, number: 3
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Immune Response To Tuberculosis WP4197, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP3K14', 'SOS2', 'MAP3K5', 'PIK3CA', 'RAC1', 'MAP2K6', 'RPS6KA3', 'PRKCD', 'SRF', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'RAC2', 'MAP3K12', 'MAP3K1', 'MAPK13', 'MAP3K8', 'PTPN11', 'JUN', 'MAP2K4', 'MAP2K2', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 29
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'MAP3K9', 'PRKAA1', 'MAP3K5', 'SLC2A1', 'PIK3CA', 'MAP2K6', 'RPS6KA3', 'PIK3CD', 'TSC1', 'PRKAA2', 'INSR', 'MAP3K1', 'JUN', 'MAP2K4', 'MAP2K2', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'SHC1'}, number: 21
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP3K14', 'SOS2', 'MAP3K5', 'PIK3CA', 'RAC1', 'MAP2K6', 'RPS6KA3', 'PRKCD', 'SRF', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'RAC2', 'MAP3K12', 'MAP3K1', 'MAPK13', 'MAP3K8', 'PTPN11', 'JUN', 'MAP2K4', 'MAP2K2', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 29
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP3K14', 'SOS2', 'MAP3K5', 'PIK3CA', 'RAC1', 'MAP2K6', 'RPS6KA3', 'PRKCD', 'SRF', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'RAC2', 'MAP3K12', 'MAP3K1', 'MAPK13', 'MAP3K8', 'PTPN11', 'JUN', 'MAP2K4', 'MAP2K2', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 29
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'INPPL1', 'GRB10', 'PIK3R2', 'MAP3K1', 'PTPN11', 'JUN', 'MAP2K2', 'PRKCB', 'SOS1', 'RPS6KA5', 'CBL', 'PIK3R1', 'SHC1'}, number: 19
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'RAC1'}, number: 3
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'XBP1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP3K14', 'SOS2', 'MAP3K5', 'PIK3CA', 'RAC1', 'MAP2K6', 'RPS6KA3', 'PRKCD', 'SRF', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'RAC2', 'MAP3K12', 'MAP3K1', 'MAPK13', 'MAP3K8', 'PTPN11', 'JUN', 'MAP2K4', 'MAP2K2', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 29
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'RAC2', 'PIK3CD', 'INSR', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 16
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'PIK3CD', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 10
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP3K14', 'SOS2', 'MAP3K5', 'PIK3CA', 'RAC1', 'MAP2K6', 'RPS6KA3', 'PRKCD', 'SRF', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'MAPK12', 'RAC2', 'MAP3K12', 'MAP3K1', 'MAPK13', 'MAP3K8', 'PTPN11', 'JUN', 'MAP2K4', 'MAP2K2', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 29
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'RAC2', 'PIK3CD', 'INSR', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'SOS2', 'XBP1', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 17
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'XBP1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'INSR', 'SLC2A1', 'PIK3CA'}, number: 5
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKAA1', 'SGK2', 'SOS2', 'PIK3CA', 'RAC1', 'PIK3CD', 'SGK1', 'PIK3R2', 'IRS1', 'TSC1', 'PRKAA2', 'RAC2', 'INSR', 'PTPN11', 'MAP2K2', 'PRKCB', 'SOS1', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 22
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK10', 'HRAS', 'RAC2', 'PIK3CD', 'INSR', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1', 'IRS1'}, number: 16
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAP3K14', 'MAP3K1', 'MAP3K7', 'PIK3R2', 'MAP2K3', 'PTPN11', 'PIK3R1', 'JUN', 'MAP2K4'}, number: 11
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'PRKAA2', 'PRKCB', 'MAP3K7', 'JUN', 'SLC2A1', 'MAPK10', 'RAC1', 'PRKAA1'}, number: 10
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'XBP1', 'SLC2A1', 'PIK3CA', 'RAC1', 'PIK3CD', 'MAP3K7', 'PIK3R2', 'IRS1', 'RAC2', 'INSR', 'MAP3K1', 'JUN', 'EGR1', 'SOS1', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 20
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'PRKAA1', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'IRS1', 'PTPRF', 'TSC1', 'IRS2', 'PRKAA2', 'MAP3K1', 'PTPN11', 'JUN', 'MAP2K2', 'EGR1', 'SOS1', 'RPS6KA5', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 21
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKAA1', 'SLC2A1', 'PIK3CA', 'RAC1', 'RPS6KA3', 'PRKCD', 'PIK3R2', 'IRS1', 'PTPRF', 'IRS2', 'PRKAA2', 'INSR', 'MAP3K1', 'PTPN11', 'JUN', 'MAP2K2', 'EGR1', 'PRKCB', 'RPS6KA5', 'MAPK10', 'PIK3R1', 'SHC1'}, number: 24
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC1', 'PRKCA', 'IRS2', 'PRKAA2', 'EGR1', 'PIK3CD', 'INSR', 'PIK3R2', 'SLC2A1', 'PIK3CA', 'PIK3R1', 'PRKAA1'}, number: 12
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'IRS2', 'HRAS', 'PRKAA2', 'PIK3CD', 'INSR', 'SOS1', 'PIK3R2', 'SLC2A1', 'PIK3CA', 'PIK3R1', 'TRIB3', 'PRKAA1', 'IRS1'}, number: 15
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SGK2', 'SOS2', 'SLC2A1', 'PIK3CA', 'RAC1', 'PIK3CD', 'SGK1', 'PIK3R2', 'IRS1', 'TSC1', 'IRS2', 'PRKAA2', 'INSR', 'MAP2K2', 'SOS1', 'PIK3R1', 'PRKAA1'}, number: 19
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PIK3CD', 'INSR', 'SLC2A1', 'PIK3CA', 'INPP4A', 'IRS1'}, number: 8
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'STAT1', 'MAP3K5'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'BARD1', 'MDM2', 'CDKN1A', 'MAP3K5', 'STAT1', 'JAK1'}, number: 9
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'STAT1', 'MAP3K5'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'STAT1', 'MAP3K5'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT1', 'JAK1'}, number: 2
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CDK1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'STAT1', 'MAP3K5'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'CDK4', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'CDK2', 'CHEK1', 'CDKN1B', 'MDM2', 'CDKN1A', 'CASP9'}, number: 13
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'CDKN1A', 'CASP9'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'CDC25B', 'STAT1', 'MAP3K5'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'CDK4', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'CDK2', 'CHEK1', 'CDKN1B', 'MDM2', 'CDKN1A', 'CASP9'}, number: 13
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CDK4', 'ATR', 'CDC25A', 'CDK1', 'MSH6', 'BRCA1', 'CDK2', 'CHEK1', 'MSH2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CASP9'}, number: 14
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'CDKN1B', 'CASP9', 'MDM2', 'CDKN1A', 'JAK1'}, number: 8
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'CDK4', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'CDK2', 'CHEK1', 'CDKN1B', 'MDM2', 'CDKN1A', 'CASP9'}, number: 13
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ATR', 'CDC25A', 'MSH6', 'BRCA1', 'CDK2', 'CHEK1', 'MSH2', 'CDKN1A'}, number: 8
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'CDK4', 'ATR', 'CDC25A', 'CDK1', 'SMAD3', 'BRCA1', 'CDK2', 'CHEK1', 'CDKN1B', 'MDM2', 'CDKN1A', 'CASP9'}, number: 13
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'STAT1', 'JAK1', 'SMAD3'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'MDM2', 'CDKN1B', 'CASP9', 'CDKN1A', 'STAT1', 'JAK1'}, number: 7
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'CDKN1B', 'CASP9', 'MDM2', 'CDKN1A', 'JAK1'}, number: 8
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'STAT1', 'JAK1', 'SMAD3'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K6', 'PIK3CD', 'IFNAR1', 'RPS6KA5', 'MAP3K1', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PTPN11', 'PIK3R1', 'RAC1'}, number: 12
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'PIK3CD', 'RPS6KA5', 'MAP3K1', 'STAT1', 'MAP2K3', 'JAK1'}, number: 7
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K6', 'PIK3CD', 'IFNAR1', 'RPS6KA5', 'MAP3K1', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PTPN11', 'PIK3R1', 'RAC1'}, number: 12
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K6', 'PIK3CD', 'IFNAR1', 'RPS6KA5', 'MAP3K1', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PTPN11', 'PIK3R1', 'RAC1'}, number: 12
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'GAB2', 'RPS6KA5', 'MAP3K1', 'STAT5A', 'PIK3R2', 'STAT1', 'RAP1A', 'CBL', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1'}, number: 13
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1', 'STAT3'}, number: 2
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K6', 'PIK3CD', 'IFNAR1', 'RPS6KA5', 'MAP3K1', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PTPN11', 'PIK3R1', 'RAC1'}, number: 12
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CD', 'MAP3K1', 'PIK3R2', 'PIK3R1', 'RAC1', 'IRS1'}, number: 6
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CD', 'STAT5A', 'PIK3R2', 'PIK3R1', 'STAT3'}, number: 5
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K6', 'PIK3CD', 'IFNAR1', 'RPS6KA5', 'MAP3K1', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PTPN11', 'PIK3R1', 'RAC1'}, number: 12
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CD', 'MAP3K1', 'PIK3R2', 'PIK3R1', 'RAC1', 'IRS1'}, number: 6
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'FYN'}, number: 1
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GAB2', 'PIK3CD', 'IFNAR1', 'PIK3R2', 'RAP1A', 'PTPN11', 'PIK3R1', 'RAC1', 'JAK1', 'IRS1'}, number: 10
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CD', 'MAP3K1', 'PIK3R2', 'PIK3R1', 'RAC1', 'IRS1'}, number: 6
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'MAP3K1', 'PIK3R2', 'MAP2K3', 'PTPN11', 'PIK3R1'}, number: 6
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'IRF9', 'RAC1', 'RAP1A'}, number: 3
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FYN', 'PIK3CD', 'MAP3K1', 'PIK3R2', 'PIK3R1', 'RAC1', 'IRS1'}, number: 7
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'IRS2', 'GAB2', 'FYN', 'RPS6KA5', 'MAP3K1', 'STAT5A', 'PIK3R2', 'STAT1', 'RAP1A', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'IRS1'}, number: 14
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IRS2', 'FYN', 'RPS6KA5', 'MAP3K1', 'STAT5A', 'PIK3R2', 'STAT1', 'RAP1A', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1', 'IRS1'}, number: 14
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IRS2', 'PIK3CD', 'PIK3R2', 'PIK3R1', 'FYN'}, number: 5
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IRS2', 'PIK3CD', 'IFNAR1', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1', 'IRS1'}, number: 10
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IRS2', 'PIK3CD', 'IFNAR1', 'PIK3R2', 'PIK3R1', 'RAC1', 'JAK1', 'IRS1'}, number: 8
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CD', 'STAT1', 'STAT3', 'JAK1', 'IRS1'}, number: 5
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Interferon Type I Signaling WP585, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'UCP2'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'UCP2'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'UCP2'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CPT2', 'SLC2A1'}, number: 2
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC16A1', 'SLC2A1'}, number: 2
Term: Ketogenesis And Ketolysis WP4742, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'SOS1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1'}, number: 9
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA3', 'HRAS', 'KITLG', 'SOS1', 'STAT1', 'SHC1'}, number: 7
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'SOS1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1'}, number: 9
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'SOS1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1'}, number: 9
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'GAB2', 'PRKCB', 'JAK2', 'SOS1', 'SHC1', 'GRB10', 'STAT5A', 'PIK3R2', 'STAT1', 'CBL', 'PTPN11', 'PIK3R1', 'STAT3'}, number: 17
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'STAT3'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'SOS1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1'}, number: 9
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'SHC1'}, number: 5
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'SOS1', 'STAT5A', 'PIK3R2', 'PIK3R1', 'STAT3'}, number: 9
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'SOS1', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1'}, number: 9
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'SHC1'}, number: 5
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'FYN'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'GAB2', 'JAK2', 'KITLG', 'SOS1', 'PIK3R2', 'PTPN11', 'PIK3R1', 'SHC1'}, number: 12
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'SHC1'}, number: 5
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PTPN11', 'PIK3R1', 'PIK3R2'}, number: 4
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS1', 'PIK3R2', 'PIK3R1', 'FYN', 'SHC1'}, number: 7
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA3', 'HRAS', 'GAB2', 'JAK2', 'SOS1', 'SHC1', 'STAT5A', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'FYN', 'STAT3'}, number: 14
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RPS6KA3', 'PRKCB', 'JAK2', 'SHC1', 'STAT5A', 'PIK3R2', 'STAT1', 'PTPN11', 'PIK3R1', 'FYN', 'STAT3'}, number: 14
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'FYN', 'PIK3R2'}, number: 4
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'JAK2', 'KITLG', 'SOS1', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3R1', 'STAT3'}, number: 10
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JAK2', 'KITLG', 'SOS1', 'PIK3R2', 'PIK3R1'}, number: 8
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'STAT1', 'PRKCA', 'PRKCB', 'STAT3'}, number: 4
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PCK2'}, number: 1
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Krebs Cycle Disorders WP4236, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC16A1', 'SLC2A1'}, number: 2
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Leucine Isoleucine And Valine Metabolism WP4686, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKACB', 'AKT3'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PRKAA2', 'PRKAG2', 'AKT3', 'PRKAB1', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 7
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKACB', 'AKT3'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKACB', 'AKT3'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKACB', 'AKT3'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT3'}, number: 1
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'AKT3'}, number: 1
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKACB', 'AKT3'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT3'}, number: 1
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKAA2', 'PRKAG2', 'AKT3', 'PRKAB1', 'PRKACB', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 8
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT3'}, number: 1
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKAA2', 'PRKAG2', 'PRKAB1', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 6
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT3'}, number: 1
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PRKAA2', 'PRKAA1'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKAA2', 'PRKAA1'}, number: 2
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKAA2', 'PRKAG2', 'PRKAB1', 'PRKACB', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 7
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT3', 'PRKAA2', 'PRKAA1'}, number: 3
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT3', 'PRKAA2', 'PRKAA1'}, number: 3
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism Pathway WP3965, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'IL1B', 'RPS6KA3', 'PRKCD', 'FLNB', 'MAP3K7', 'HSPA1B', 'FLNC', 'NF1', 'PPP3CC', 'ECSIT', 'HSPA8', 'MAP3K14', 'BRAF', 'DUSP10', 'DUSP6', 'MRAS', 'SRF', 'DDIT3', 'ELK4', 'TGFB2', 'HSPA2', 'ARRB1', 'IL1R1', 'RRAS2', 'FGF2', 'MAP3K1', 'PAK1', 'JUN', 'GNA12', 'GADD45A', 'CACNA2D1', 'PDGFB', 'SOS1', 'MAPK10', 'CDC25B', 'NGF', 'SOS2', 'MAP3K5', 'DUSP1', 'RAC1', 'RAPGEF2', 'FGFR4', 'FGFR3', 'HSPA1L', 'PRKACB', 'MAPK12', 'RAP1A', 'HSPA6', 'RAC2', 'MAPK13', 'MAP3K8', 'EGF', 'MAP2K2', 'STMN1', 'PPM1B', 'EGFR', 'AKT3', 'DUSP3', 'RPS6KA5', 'PAK2', 'FGFR2', 'PRKCA', 'JUND', 'TAB2', 'BDNF', 'HSPA1A', 'NFKB1', 'MAP2K6', 'MKNK1', 'RELA', 'PDGFA', 'CACNB3', 'MAP3K20', 'IL1R2', 'IL1A', 'TGFBR2', 'MAP3K12', 'MAPKAPK3', 'FLNA', 'MAP2K4', 'RASA1', 'DUSP4', 'TNFRSF1A', 'TGFBR1', 'MAP2K3'}, number: 87
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'NGF', 'BDNF', 'FGFR1', 'MAP3K5', 'NFKB1', 'IL1B', 'RPS6KA3', 'MAP2K6', 'MKNK1', 'PDGFA', 'FGFR4', 'FGFR3', 'DDIT3', 'FGF2', 'MAP3K1', 'PAK1', 'JUN', 'EGF', 'MAP2K4', 'MAP2K2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'PAK2', 'FGFR2', 'MAP2K3', 'MAPK10'}, number: 30
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'IL1B', 'RPS6KA3', 'PRKCD', 'FLNB', 'MAP3K7', 'HSPA1B', 'FLNC', 'NF1', 'PPP3CC', 'ECSIT', 'HSPA8', 'MAP3K14', 'BRAF', 'DUSP10', 'DUSP6', 'MRAS', 'SRF', 'DDIT3', 'ELK4', 'TGFB2', 'HSPA2', 'ARRB1', 'IL1R1', 'RRAS2', 'FGF2', 'MAP3K1', 'PAK1', 'JUN', 'GNA12', 'GADD45A', 'CACNA2D1', 'PDGFB', 'SOS1', 'MAPK10', 'CDC25B', 'NGF', 'SOS2', 'MAP3K5', 'DUSP1', 'RAC1', 'RAPGEF2', 'FGFR4', 'FGFR3', 'HSPA1L', 'PRKACB', 'MAPK12', 'RAP1A', 'HSPA6', 'RAC2', 'MAPK13', 'MAP3K8', 'EGF', 'MAP2K2', 'STMN1', 'PPM1B', 'EGFR', 'AKT3', 'DUSP3', 'RPS6KA5', 'PAK2', 'FGFR2', 'PRKCA', 'JUND', 'TAB2', 'BDNF', 'HSPA1A', 'NFKB1', 'MAP2K6', 'MKNK1', 'RELA', 'PDGFA', 'CACNB3', 'MAP3K20', 'IL1R2', 'IL1A', 'TGFBR2', 'MAP3K12', 'MAPKAPK3', 'FLNA', 'MAP2K4', 'RASA1', 'DUSP4', 'TNFRSF1A', 'TGFBR1', 'MAP2K3'}, number: 87
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'IL1B', 'RPS6KA3', 'PRKCD', 'FLNB', 'MAP3K7', 'HSPA1B', 'FLNC', 'NF1', 'PPP3CC', 'ECSIT', 'HSPA8', 'MAP3K14', 'BRAF', 'DUSP10', 'DUSP6', 'MRAS', 'SRF', 'DDIT3', 'ELK4', 'TGFB2', 'HSPA2', 'ARRB1', 'IL1R1', 'RRAS2', 'FGF2', 'MAP3K1', 'PAK1', 'JUN', 'GNA12', 'GADD45A', 'CACNA2D1', 'PDGFB', 'SOS1', 'MAPK10', 'CDC25B', 'NGF', 'SOS2', 'MAP3K5', 'DUSP1', 'RAC1', 'RAPGEF2', 'FGFR4', 'FGFR3', 'HSPA1L', 'PRKACB', 'MAPK12', 'RAP1A', 'HSPA6', 'RAC2', 'MAPK13', 'MAP3K8', 'EGF', 'MAP2K2', 'STMN1', 'PPM1B', 'EGFR', 'AKT3', 'DUSP3', 'RPS6KA5', 'PAK2', 'FGFR2', 'PRKCA', 'JUND', 'TAB2', 'BDNF', 'HSPA1A', 'NFKB1', 'MAP2K6', 'MKNK1', 'RELA', 'PDGFA', 'CACNB3', 'MAP3K20', 'IL1R2', 'IL1A', 'TGFBR2', 'MAP3K12', 'MAPKAPK3', 'FLNA', 'MAP2K4', 'RASA1', 'DUSP4', 'TNFRSF1A', 'TGFBR1', 'MAP2K3'}, number: 87
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JUND', 'BRAF', 'SOS2', 'RAC1', 'RPS6KA3', 'PRKCD', 'RAP1A', 'ELK4', 'MAP3K1', 'PAK1', 'JUN', 'EGF', 'RASA1', 'MAP2K2', 'STMN1', 'EGFR', 'SOS1', 'RPS6KA5'}, number: 20
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'PAK1', 'RAC1', 'STMN1'}, number: 4
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'DDIT3'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'IL1B', 'RPS6KA3', 'PRKCD', 'FLNB', 'MAP3K7', 'HSPA1B', 'FLNC', 'NF1', 'PPP3CC', 'ECSIT', 'HSPA8', 'MAP3K14', 'BRAF', 'DUSP10', 'DUSP6', 'MRAS', 'SRF', 'DDIT3', 'ELK4', 'TGFB2', 'HSPA2', 'ARRB1', 'IL1R1', 'RRAS2', 'FGF2', 'MAP3K1', 'PAK1', 'JUN', 'GNA12', 'GADD45A', 'CACNA2D1', 'PDGFB', 'SOS1', 'MAPK10', 'CDC25B', 'NGF', 'SOS2', 'MAP3K5', 'DUSP1', 'RAC1', 'RAPGEF2', 'FGFR4', 'FGFR3', 'HSPA1L', 'PRKACB', 'MAPK12', 'RAP1A', 'HSPA6', 'RAC2', 'MAPK13', 'MAP3K8', 'EGF', 'MAP2K2', 'STMN1', 'PPM1B', 'EGFR', 'AKT3', 'DUSP3', 'RPS6KA5', 'PAK2', 'FGFR2', 'PRKCA', 'JUND', 'TAB2', 'BDNF', 'HSPA1A', 'NFKB1', 'MAP2K6', 'MKNK1', 'RELA', 'PDGFA', 'CACNB3', 'MAP3K20', 'IL1R2', 'IL1A', 'TGFBR2', 'MAP3K12', 'MAPKAPK3', 'FLNA', 'MAP2K4', 'RASA1', 'DUSP4', 'TNFRSF1A', 'TGFBR1', 'MAP2K3'}, number: 87
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'RAC1', 'RAC2', 'AKT3', 'SOS1', 'MAP3K1', 'MAP3K7', 'SOS2', 'NFKB1', 'MAPK10', 'JUN', 'GADD45A'}, number: 12
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'AKT3', 'SOS1', 'SOS2', 'EGF', 'GADD45A'}, number: 10
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'IL1B', 'RPS6KA3', 'PRKCD', 'FLNB', 'MAP3K7', 'HSPA1B', 'FLNC', 'NF1', 'PPP3CC', 'ECSIT', 'HSPA8', 'MAP3K14', 'BRAF', 'DUSP10', 'DUSP6', 'MRAS', 'SRF', 'DDIT3', 'ELK4', 'TGFB2', 'HSPA2', 'ARRB1', 'IL1R1', 'RRAS2', 'FGF2', 'MAP3K1', 'PAK1', 'JUN', 'GNA12', 'GADD45A', 'CACNA2D1', 'PDGFB', 'SOS1', 'MAPK10', 'CDC25B', 'NGF', 'SOS2', 'MAP3K5', 'DUSP1', 'RAC1', 'RAPGEF2', 'FGFR4', 'FGFR3', 'HSPA1L', 'PRKACB', 'MAPK12', 'RAP1A', 'HSPA6', 'RAC2', 'MAPK13', 'MAP3K8', 'EGF', 'MAP2K2', 'STMN1', 'PPM1B', 'EGFR', 'AKT3', 'DUSP3', 'RPS6KA5', 'PAK2', 'FGFR2', 'PRKCA', 'JUND', 'TAB2', 'BDNF', 'HSPA1A', 'NFKB1', 'MAP2K6', 'MKNK1', 'RELA', 'PDGFA', 'CACNB3', 'MAP3K20', 'IL1R2', 'IL1A', 'TGFBR2', 'MAP3K12', 'MAPKAPK3', 'FLNA', 'MAP2K4', 'RASA1', 'DUSP4', 'TNFRSF1A', 'TGFBR1', 'MAP2K3'}, number: 87
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'HRAS', 'RAC1', 'RAC2', 'AKT3', 'SOS1', 'MAP3K1', 'MAP3K7', 'DDIT3', 'SOS2', 'NFKB1', 'MAPK10', 'JUN', 'GADD45A'}, number: 14
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'DDIT3'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RAP1A', 'GADD45A'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'TGFBR2', 'PDGFB', 'HSPA1A'}, number: 5
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'SOS2', 'RAC1', 'NFKB1', 'MRAS', 'RELA', 'PDGFA', 'FGFR4', 'FGFR3', 'PRKACB', 'RAP1A', 'RAC2', 'RRAS2', 'FGF2', 'NF1', 'PAK1', 'EGF', 'RASA1', 'MAP2K2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'PAK2', 'FGFR2', 'MAPK10'}, number: 30
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'RAC1', 'RAC2', 'AKT3', 'SOS1', 'MAP3K1', 'MAP3K7', 'SOS2', 'NFKB1', 'MAPK10', 'JUN', 'GADD45A'}, number: 12
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'IL1B', 'TAB2', 'MAP3K14', 'RELA', 'IL1A', 'IL1R1', 'MAP3K1', 'MAP3K7', 'ECSIT', 'MAP2K3', 'JUN', 'MAP2K4', 'NFKB1'}, number: 15
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'RAC1', 'PPP3CC', 'PDGFB', 'TGFBR2', 'HSPA1A', 'MAP3K7', 'NFKB1', 'RAP1A', 'MAPK10', 'JUN', 'GADD45A'}, number: 13
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'SOS2', 'RAC1', 'NFKB1', 'IL1B', 'MAP3K7', 'DDIT3', 'TGFB2', 'RAC2', 'TGFBR2', 'MAP3K1', 'JUN', 'GADD45A', 'PDGFB', 'AKT3', 'SOS1', 'MAPK10'}, number: 19
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA3', 'HRAS', 'MKNK1', 'RAC1', 'RELA', 'PRKCD', 'NGF', 'BRAF', 'BDNF', 'SOS1', 'RPS6KA5', 'MAP3K1', 'RAP1A', 'MAPK10', 'JUN', 'NFKB1'}, number: 17
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'NGF', 'BDNF', 'RAC1', 'NFKB1', 'IL1B', 'RPS6KA3', 'RELA', 'PRKCD', 'RAP1A', 'TGFB2', 'IL1R2', 'IL1A', 'TGFBR2', 'IL1R1', 'FGF2', 'MAP3K1', 'JUN', 'MAP2K2', 'RPS6KA5', 'TNFRSF1A', 'TGFBR1', 'MAPK10'}, number: 24
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A', 'PRKACB'}, number: 6
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EGFR', 'PDGFA', 'NGF', 'FGFR4', 'PDGFB', 'AKT3', 'SOS1', 'FGFR3', 'FGF2', 'FGFR1', 'DDIT3', 'FGFR2', 'EGF', 'GADD45A'}, number: 16
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'SOS2', 'RAC1', 'NFKB1', 'RELA', 'PDGFA', 'FGFR4', 'FGFR3', 'FGF2', 'EGF', 'MAP2K2', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'FGFR2'}, number: 20
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'PRKCA', 'TGFB2', 'IL1R2', 'IL1A', 'NGF', 'BDNF', 'IL1R1', 'TGFBR2', 'FGF2', 'TNFRSF1A', 'TGFBR1', 'NFKB1'}, number: 13
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: MAPK Signaling WP382, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PIK3R1', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'JUN', 'PIK3CA', 'PTPN11', 'PAK2', 'RAC1'}, number: 16
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'MET', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'PAK2', 'CDKN1A', 'PIK3CA', 'PAK3', 'JUN'}, number: 12
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PIK3R1', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'JUN', 'PIK3CA', 'PTPN11', 'PAK2', 'RAC1'}, number: 16
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PIK3R1', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'JUN', 'PIK3CA', 'PTPN11', 'PAK2', 'RAC1'}, number: 16
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'JUN', 'CBL', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3'}, number: 14
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1', 'RAC1', 'STAT3'}, number: 4
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PIK3R1', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'JUN', 'PIK3CA', 'PTPN11', 'PAK2', 'RAC1'}, number: 16
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'SOS1', 'JUN', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'RAC1'}, number: 11
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 12
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PIK3R1', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'JUN', 'PIK3CA', 'PTPN11', 'PAK2', 'RAC1'}, number: 16
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'SOS1', 'JUN', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'RAC1'}, number: 11
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'RAP1A'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'ETS1', 'HRAS', 'PIK3R1', 'MET', 'PIK3CD', 'AKT3', 'SOS1', 'PAK1', 'SOS2', 'PIK3R2', 'RAP1A', 'PAK2', 'PIK3CA', 'PTPN11', 'PAK3', 'CDKN1A', 'RAC1'}, number: 18
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'SOS1', 'JUN', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'RAC1'}, number: 11
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN'}, number: 5
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'JUN', 'RAC1', 'RAP1A'}, number: 4
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'PIK3CD', 'AKT3', 'SOS1', 'JUN', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'RAC1'}, number: 11
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'SOS1', 'JUN', 'PIK3R2', 'RAP1A', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3'}, number: 11
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'JUN', 'PIK3R2', 'RAP1A', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3'}, number: 10
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CD', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1'}, number: 5
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'MET', 'PIK3CD', 'AKT3', 'SOS1', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 11
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'MET', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'RAC1'}, number: 12
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'PIK3CD', 'STAT3'}, number: 3
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CASP9'}, number: 1
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: MTHFR Deficiency WP4288, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FN1', 'EGF'}, number: 2
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FOSL1', 'AREG', 'CCND1', 'FN1', 'EGF'}, number: 5
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FN1', 'EGF'}, number: 2
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FN1', 'EGF'}, number: 2
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT5A', 'EGF', 'ERBB2'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FN1', 'EGF'}, number: 2
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'FOSL1', 'ERBB2', 'CCND1'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT5A', 'EGF', 'ERBB2', 'CCND1'}, number: 4
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FN1', 'EGF'}, number: 2
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'FOSL1', 'ERBB2', 'CCND1'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'FN1', 'EGF', 'CCND1'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'FOSL1', 'ERBB2', 'CCND1'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FOSL1', 'CCND1'}, number: 2
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FOSL1', 'ERBB2', 'CCND1'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT5A'}, number: 1
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'STAT5A'}, number: 1
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FN1', 'NRIP1', 'EGF', 'STAT5A'}, number: 4
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FN1', 'EGF', 'CCND1'}, number: 3
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'TAB2', 'HSPA1A', 'PIK3CA', 'MYD88', 'NFKB1', 'IL1B', 'TBK1', 'RELA', 'PIK3CD', 'HSPA1L', 'MAP3K7', 'PIK3R2', 'HSPA1B', 'TRAF3', 'CASP8', 'HSPA6', 'HSPA2', 'IL1A', 'TLR2', 'NFKBIA', 'IL12A', 'IFNAR1', 'JUN', 'IL6', 'STAT1', 'MAPK10', 'PIK3R1', 'HSPA8'}, number: 28
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK10', 'IL1B', 'CDK4', 'IL6', 'PIK3CD', 'CSNK2A1', 'CDK2', 'STAT1', 'CCND1', 'PIK3CA', 'JUN', 'CCNE1', 'JAK1', 'NFKB1'}, number: 14
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'TAB2', 'HSPA1A', 'PIK3CA', 'MYD88', 'NFKB1', 'IL1B', 'TBK1', 'RELA', 'PIK3CD', 'HSPA1L', 'MAP3K7', 'PIK3R2', 'HSPA1B', 'TRAF3', 'CASP8', 'HSPA6', 'HSPA2', 'IL1A', 'TLR2', 'NFKBIA', 'IL12A', 'IFNAR1', 'JUN', 'IL6', 'STAT1', 'MAPK10', 'PIK3R1', 'HSPA8'}, number: 28
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'TAB2', 'HSPA1A', 'PIK3CA', 'MYD88', 'NFKB1', 'IL1B', 'TBK1', 'RELA', 'PIK3CD', 'HSPA1L', 'MAP3K7', 'PIK3R2', 'HSPA1B', 'TRAF3', 'CASP8', 'HSPA6', 'HSPA2', 'IL1A', 'TLR2', 'NFKBIA', 'IL12A', 'IFNAR1', 'JUN', 'IL6', 'STAT1', 'MAPK10', 'PIK3R1', 'HSPA8'}, number: 28
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT5A', 'PIK3R2', 'STAT1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1'}, number: 7
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'STAT3'}, number: 2
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'IL1B', 'EIF2S1'}, number: 3
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'TAB2', 'HSPA1A', 'PIK3CA', 'MYD88', 'NFKB1', 'IL1B', 'TBK1', 'RELA', 'PIK3CD', 'HSPA1L', 'MAP3K7', 'PIK3R2', 'HSPA1B', 'TRAF3', 'CASP8', 'HSPA6', 'HSPA2', 'IL1A', 'TLR2', 'NFKBIA', 'IL12A', 'IFNAR1', 'JUN', 'IL6', 'STAT1', 'MAPK10', 'PIK3R1', 'HSPA8'}, number: 28
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'CDK4', 'MAPK10', 'BID', 'PIK3CD', 'CDK2', 'MAP3K7', 'CDKN1B', 'PIK3R2', 'JUN', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9', 'NFKB1'}, number: 18
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'PIK3CD', 'STAT5A', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'STAT3', 'CASP9'}, number: 12
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'TAB2', 'HSPA1A', 'PIK3CA', 'MYD88', 'NFKB1', 'IL1B', 'TBK1', 'RELA', 'PIK3CD', 'HSPA1L', 'MAP3K7', 'PIK3R2', 'HSPA1B', 'TRAF3', 'CASP8', 'HSPA6', 'HSPA2', 'IL1A', 'TLR2', 'NFKBIA', 'IL12A', 'IFNAR1', 'JUN', 'IL6', 'STAT1', 'MAPK10', 'PIK3R1', 'HSPA8'}, number: 28
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2S1', 'PIK3CA', 'CCNE1', 'NFKB1', 'IL1B', 'CDK4', 'PIK3CD', 'MAP3K7', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'CASP8', 'CDK2', 'CCND1', 'JUN', 'CCNE2', 'BID', 'MAPK10', 'PIK3R1'}, number: 20
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'IL1B', 'EIF2S1'}, number: 3
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'CDK2', 'CDKN1B', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9'}, number: 10
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HSPA1A', 'PIK3CA'}, number: 2
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'CCNE1', 'NFKB1', 'CDK4', 'RELA', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'JAK1', 'TLR2', 'IFNAR1', 'CDK2', 'BCL2L1', 'CCND1', 'CCNE2', 'IL6', 'MAPK10', 'PIK3R1'}, number: 20
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'CDK4', 'MAPK10', 'BID', 'PIK3CD', 'CDK2', 'MAP3K7', 'CDKN1B', 'PIK3R2', 'JUN', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9', 'NFKB1'}, number: 18
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'RELA', 'TAB2', 'IL1A', 'NFKBIA', 'MAP3K7', 'PIK3R2', 'MYD88', 'PIK3R1', 'JUN', 'NFKB1'}, number: 11
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'IRF9', 'CSNK2A1', 'CDK2', 'HSPA1A', 'MAP3K7', 'CCND1', 'MAPK10', 'JUN', 'CCNE1', 'NFKB1'}, number: 10
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2S1', 'HSPA1A', 'PIK3CA', 'CCNE1', 'NFKB1', 'IL1B', 'CDK4', 'PIK3CD', 'MAP3K7', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'CASP8', 'CDK2', 'CCND1', 'JUN', 'CCNE2', 'BID', 'MAPK10', 'PIK3R1'}, number: 21
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF2S1', 'RELA', 'NFKBIA', 'CSNK2A1', 'STAT5A', 'PIK3R2', 'STAT1', 'MAPK10', 'PIK3R1', 'JUN', 'STAT3', 'NFKB1'}, number: 12
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK10', 'IL1B', 'EIF2S1', 'IL6', 'RELA', 'IL1A', 'NFKBIA', 'IL12A', 'CSNK2A1', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 18
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CD', 'HSPA1A', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 5
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6', 'PIK3CD', 'IFNAR1', 'CDKN1B', 'PIK3R2', 'STAT5A', 'CASP9', 'STAT1', 'PIK3CA', 'PIK3R1', 'STAT3', 'JAK1'}, number: 12
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'CCNE1', 'NFKB1', 'CDK4', 'RELA', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'JAK1', 'TLR2', 'IFNAR1', 'CDK2', 'BCL2L1', 'CCND1', 'CCNE2', 'IL6', 'PIK3R1'}, number: 19
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'IL1A', 'PIK3CD', 'IL12A', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1', 'NFKB1'}, number: 10
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Measles Virus Infection WP4630, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'SLC25A5'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'SLC25A5'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'SLC25A5'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GLS2', 'XDH', 'SLC2A1', 'SLC2A5', 'SLC2A3'}, number: 5
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS2', 'PSAT1', 'SHMT1', 'SLC2A1', 'GOT1', 'SLC2A3'}, number: 6
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1', 'SLC2A3'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GLS2', 'PSAT1', 'SHMT1', 'SLC2A1', 'GOT1', 'SLC2A3'}, number: 6
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5', 'PSAT1', 'GLUD1', 'SLC2A1'}, number: 4
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR4', 'FGFR1', 'SLC2A1'}, number: 3
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'LPAR1', 'FGFR4', 'FGFR1'}, number: 3
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS', 'PSAT1', 'SLC2A1'}, number: 3
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPAR1', 'FGFR4', 'FGFR1', 'SLC2A1'}, number: 4
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LPAR1', 'FGFR4', 'FGFR1', 'SLC2A1'}, number: 4
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GLS', 'PSAT1', 'SLC2A1'}, number: 3
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2', 'PGM1', 'LPAR1', 'P3H4', 'FGFR4', 'SLC16A1', 'PYCR1', 'SLC1A5', 'PLOD1', 'PSAT1', 'FGFR1', 'ALDH18A1', 'SLC2A1', 'GLUD1', 'P4HA1', 'GLS', 'LOXL2', 'UGDH'}, number: 18
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'SDHB'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'SDHB'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'SDHB'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PGD', 'G6PD', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TIGAR', 'PGD', 'G6PD', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PGD', 'G6PD', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS', 'PSAT1', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PGD', 'G6PD', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GLS', 'PSAT1', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GLUD1', 'SLC1A5', 'PSAT1', 'SLC2A1', 'PYCR1', 'GLS'}, number: 6
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC7A5', 'SLC2A1'}, number: 2
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ME1', 'SLC2A1'}, number: 2
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GLS2', 'ME1', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ME1', 'LDLR', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS2', 'GOT1', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ME1', 'LDLR', 'HMGCR', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCR', 'SLC2A1'}, number: 2
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GLS2', 'GOT1', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5', 'GLUD1', 'SLC16A1', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Pancreatic Cancer WP5220, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXN'}, number: 1
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXN'}, number: 1
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXN'}, number: 1
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXN'}, number: 1
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Methionine De Novo And Salvage Pathway WP3580, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SCP2'}, number: 1
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SCP2'}, number: 1
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SCP2'}, number: 1
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ACADM', 'ACSL1', 'EHHADH', 'CPT2', 'SCP2'}, number: 5
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SCP2'}, number: 1
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ACSL1'}, number: 1
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Mitochondrial Fatty Acid Oxidation Disorders WP5123, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'EGFR', 'NGF', 'SOS1', 'MAP3K1', 'NF1', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCNE1', 'EGFR', 'NGF', 'SOS1', 'MAP3K1', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'EGFR', 'NGF', 'SOS1', 'MAP3K1', 'NF1', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'EGFR', 'NGF', 'SOS1', 'MAP3K1', 'NF1', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'SOS1', 'PCNA', 'MAP3K1', 'EGF'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'EGFR', 'NGF', 'SOS1', 'MAP3K1', 'NF1', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'CCNE2', 'CCNE1'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'SOS1', 'EGF', 'EGFR'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'EGFR', 'NGF', 'SOS1', 'MAP3K1', 'NF1', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'CCNE2', 'CCNE1'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RFC2', 'ATR', 'RFC3', 'USP1', 'CCNE2', 'PCNA', 'RFC5', 'CCNE1', 'RFC4'}, number: 9
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EXOC2', 'EGFR', 'NGF', 'SOS1', 'NF1', 'EGF', 'CCNE2', 'CCNE1'}, number: 8
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'CCNE2', 'CCNE1'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RFC2', 'ATR', 'RFC3', 'USP1', 'PCNA', 'RFC5', 'CCNE1', 'RFC4'}, number: 8
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'CCNE2', 'CCNE1'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NGF', 'MAP3K1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CCNA2'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SOS1', 'NGF', 'EGF', 'EGFR'}, number: 4
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCNE1', 'EGFR', 'NGF', 'SOS1', 'CCNE2', 'EGF'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'NGF'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PIK3CA', 'INSR'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'EPHB2'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CA', 'INSR'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CA', 'INSR'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLC', 'INSR', 'GCLM', 'RBX1', 'MAF', 'EPHB2', 'AIMP2', 'HMOX1', 'NQO1', 'PIK3CA', 'CEBPB', 'FYN', 'KEAP1'}, number: 15
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'INSR'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CA', 'INSR'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'RBX1', 'HMOX1', 'NQO1', 'KEAP1'}, number: 8
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLC', 'INSR', 'GCLM', 'RBX1', 'MAF', 'EPHB2', 'AIMP2', 'HMOX1', 'NQO1', 'PIK3CA', 'CEBPB', 'FYN', 'KEAP1'}, number: 15
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'FYN'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'FYN', 'INSR'}, number: 4
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLC', 'INSR', 'GCLM', 'RBX1', 'MAF', 'EPHB2', 'AIMP2', 'HMOX1', 'NQO1', 'PIK3CA', 'CEBPB', 'FYN', 'KEAP1'}, number: 15
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3CA', 'CEBPB', 'INSR'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'INSR'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'INSR'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EPHA2', 'PDGFB', 'HBEGF', 'SLC2A1', 'TGFA'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA', 'TGFA'}, number: 2
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC2A5', 'KEAP1', 'SLC6A15', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'SQSTM1', 'EPHA2', 'GPX3', 'SLC6A20', 'SLC39A9', 'SLC2A11', 'SLC2A10', 'GSTM3', 'TGFB2', 'HSP90AB1', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'GSTA4', 'MAFF', 'SERPINA1', 'PRDX1', 'RXRA', 'NRG1', 'FTL', 'FTH1', 'SLC39A8', 'SLC7A11', 'CES4A', 'EGR1', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 63
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EPHA2', 'HSP90AA1', 'HSP90AB1', 'PDGFB', 'TGFA'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC2A5', 'KEAP1', 'SLC6A15', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'SQSTM1', 'EPHA2', 'GPX3', 'SLC6A20', 'SLC39A9', 'SLC2A11', 'SLC2A10', 'GSTM3', 'TGFB2', 'HSP90AB1', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'GSTA4', 'MAFF', 'SERPINA1', 'PRDX1', 'RXRA', 'NRG1', 'FTL', 'FTH1', 'SLC39A8', 'SLC7A11', 'CES4A', 'EGR1', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 63
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC2A5', 'KEAP1', 'SLC6A15', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'SQSTM1', 'EPHA2', 'GPX3', 'SLC6A20', 'SLC39A9', 'SLC2A11', 'SLC2A10', 'GSTM3', 'TGFB2', 'HSP90AB1', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'GSTA4', 'MAFF', 'SERPINA1', 'PRDX1', 'RXRA', 'NRG1', 'FTL', 'FTH1', 'SLC39A8', 'SLC7A11', 'CES4A', 'EGR1', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 63
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'EGR1'}, number: 2
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'EGR1', 'TGFB2', 'TGFBR2', 'SLC2A1', 'SLC2A3'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC2A5', 'KEAP1', 'SLC6A15', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'SQSTM1', 'EPHA2', 'GPX3', 'SLC6A20', 'SLC39A9', 'SLC2A11', 'SLC2A10', 'GSTM3', 'TGFB2', 'HSP90AB1', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'GSTA4', 'MAFF', 'SERPINA1', 'PRDX1', 'RXRA', 'NRG1', 'FTL', 'FTH1', 'SLC39A8', 'SLC7A11', 'CES4A', 'EGR1', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 63
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPHA2', 'HSP90AA1', 'HSP90AB1', 'PDGFB', 'SLC2A1', 'RXRA', 'SLC2A3'}, number: 7
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPHA2', 'HSP90AA1', 'HSP90AB1', 'PDGFB', 'SLC2A1', 'TGFA', 'SLC2A3'}, number: 7
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TGFBR2', 'TGFB2', 'SLC2A1', 'SLC2A3'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'DUSP1', 'IL7', 'MYD88', 'FN1', 'RAC1', 'IL1B', 'CXCL8', 'TBK1', 'TRAF3', 'CASP8', 'IL1R2', 'IL1A', 'TGFBR2', 'IL12A', 'FGF2', 'JUN', 'IL6', 'CCL2', 'STAT1', 'HSPA8'}, number: 20
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'IL6', 'ACTG1', 'ATG13', 'AKT1S1', 'FGF2', 'JUN', 'STAT1', 'ITGA3', 'JAK1', 'CCL2', 'FN1', 'DEPTOR', 'ULK1'}, number: 14
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'DUSP1', 'IL7', 'MYD88', 'FN1', 'RAC1', 'IL1B', 'CXCL8', 'TBK1', 'TRAF3', 'CASP8', 'IL1R2', 'IL1A', 'TGFBR2', 'IL12A', 'FGF2', 'JUN', 'IL6', 'CCL2', 'STAT1', 'HSPA8'}, number: 20
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'DUSP1', 'IL7', 'MYD88', 'FN1', 'RAC1', 'IL1B', 'CXCL8', 'TBK1', 'TRAF3', 'CASP8', 'IL1R2', 'IL1A', 'TGFBR2', 'IL12A', 'FGF2', 'JUN', 'IL6', 'CCL2', 'STAT1', 'HSPA8'}, number: 20
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RAC1', 'JAK2', 'ITCH', 'STAT1', 'JUN', 'JAK1'}, number: 6
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1', 'CAMK4', 'CDK1'}, number: 3
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'BID'}, number: 2
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'DUSP1', 'IL7', 'MYD88', 'FN1', 'RAC1', 'IL1B', 'CXCL8', 'TBK1', 'TRAF3', 'CASP8', 'IL1R2', 'IL1A', 'TGFBR2', 'IL12A', 'FGF2', 'JUN', 'IL6', 'CCL2', 'STAT1', 'HSPA8'}, number: 20
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'RAC1', 'CDK1', 'CCNB1', 'BID', 'CCNB2', 'JUN', 'CASP9'}, number: 8
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'BID', 'CASP9'}, number: 3
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'DUSP1', 'IL7', 'MYD88', 'FN1', 'RAC1', 'IL1B', 'CXCL8', 'TBK1', 'TRAF3', 'CASP8', 'IL1R2', 'IL1A', 'TGFBR2', 'IL12A', 'FGF2', 'JUN', 'IL6', 'CCL2', 'STAT1', 'HSPA8'}, number: 20
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'IL1B', 'RAC1', 'CDK1', 'CCNB1', 'BID', 'CCNB2', 'JUN', 'CASP9'}, number: 9
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'BID'}, number: 2
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CCNB1', 'CDK1', 'BID', 'CCNB2', 'PARP2', 'CASP9'}, number: 7
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CEBPB', 'TGFBR2', 'FYN', 'EGR1'}, number: 4
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RAC1', 'JAK2', 'DDIT4', 'ATG13', 'AKT1S1', 'FGF2', 'CASP9', 'ITGA3', 'JAK1', 'IL7', 'FN1', 'DEPTOR', 'ULK1', 'MAP1LC3B'}, number: 15
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'RAC1', 'CDK1', 'CCNB1', 'BID', 'CCNB2', 'JUN', 'CASP9'}, number: 8
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'IL1A', 'CCL2', 'MYD88', 'JUN'}, number: 5
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DEPTOR', 'EGR1', 'JUNB', 'RAC1', 'TP53I3', 'IRF9', 'TGFBR2', 'PARP2', 'DDIT4', 'AKT1S1', 'CCL2', 'JUN', 'SERPINE1', 'ULK1'}, number: 14
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'IL1B', 'EGR1', 'RAC1', 'FYN', 'CDK1', 'CCNB1', 'BID', 'CCNB2', 'TGFBR2', 'CEBPB', 'JUN', 'CASP9'}, number: 13
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EGR1', 'FYN', 'JAK2', 'CAMK4', 'JUN', 'STAT1', 'RAC1'}, number: 7
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'EGR1', 'IL1R2', 'IL6', 'RAC1', 'FYN', 'JAK2', 'IL1A', 'TGFBR2', 'CAMK4', 'IL12A', 'FGF2', 'STAT1', 'JUN', 'JAK1'}, number: 15
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EGR1', 'FYN', 'CCNB1', 'TGFBR2', 'CEBPB'}, number: 5
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6', 'AGT', 'JAK2', 'DDIT4', 'AKT1S1', 'FGF2', 'STAT1', 'ITGA3', 'CASP9', 'JAK1', 'CEBPB', 'FN1', 'SERPINE1', 'ULK1'}, number: 14
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'JAK2', 'DDIT4', 'AKT1S1', 'FGF2', 'CASP9', 'ITGA3', 'JAK1', 'IL7', 'FN1', 'RAC1', 'ULK1'}, number: 12
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL1R2', 'IL6', 'IL1A', 'TGFBR2', 'IL12A', 'CAMK4', 'FGF2', 'STAT1', 'JAK1'}, number: 10
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'EGF', 'GADD45A'}, number: 15
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'EGFR', 'PIK3CD', 'AKT3', 'SOS1', 'CDKN1A', 'CCND1', 'TGFA', 'PIK3CA', 'CDKN2A', 'EGF', 'PDK1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'EGF', 'GADD45A'}, number: 15
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'EGF', 'GADD45A'}, number: 15
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'EGFR', 'BRAF', 'ERBB2', 'SOS1', 'STAT5A', 'SOS2', 'PIK3R2', 'PIK3R1', 'EGF', 'STAT3'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'STAT3'}, number: 3
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'EGF', 'GADD45A'}, number: 15
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'PDK1', 'CDK4', 'PIK3CD', 'PIK3R2', 'CDK6', 'CASP9', 'CASP8', 'CCND1', 'CDKN2A', 'GADD45A', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'E2F3', 'HRAS', 'PRKCA', 'BRAF', 'SOS2', 'PIK3CA', 'PDK1', 'CRABP2', 'CDK4', 'FHIT', 'PIK3CD', 'STAT5A', 'PIK3R2', 'TGFA', 'CDK6', 'STAT3', 'CASP9', 'CASP8', 'PLCG2', 'CCND1', 'RXRA', 'CDKN2A', 'EGF', 'GADD45A', 'MAP2K2', 'EML4', 'PRKCB', 'EGFR', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 34
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'MAP2K2', 'PRKCA', 'HRAS', 'EGFR', 'BRAF', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'EGF', 'GADD45A'}, number: 15
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'PDK1', 'CDK4', 'PIK3CD', 'PIK3R2', 'CDK6', 'CASP9', 'CASP8', 'CCND1', 'CDKN2A', 'GADD45A', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'CDKN1A', 'CCND1', 'CDK6', 'CASP9', 'GADD45A'}, number: 8
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'RXRA', 'TGFA'}, number: 4
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'PIK3CA', 'CDK4', 'PIK3CD', 'PIK3R2', 'TGFA', 'CDK6', 'CASP9', 'PLCG2', 'CCND1', 'EGF', 'MAP2K2', 'PRKCB', 'EGFR', 'AKT3', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 20
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS2', 'PIK3CA', 'PDK1', 'CDK4', 'PIK3CD', 'PIK3R2', 'CDK6', 'CASP9', 'CASP8', 'CCND1', 'CDKN2A', 'GADD45A', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'PIK3R2'}, number: 3
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'CDKN1A', 'CCND1', 'TGFA', 'RXRA', 'GADD45A'}, number: 7
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'PIK3CA', 'PDK1', 'CDK4', 'PIK3CD', 'PIK3R2', 'TGFA', 'CDK6', 'CASP9', 'CASP8', 'CCND1', 'RXRA', 'CDKN2A', 'GADD45A', 'BID', 'AKT3', 'ERBB2', 'SOS1', 'CDKN1A', 'PIK3R1'}, number: 22
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'SOS1', 'STAT5A', 'PIK3R2', 'PIK3R1', 'STAT3'}, number: 8
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'STAT5A', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 9
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'RXRA', 'PIK3CD', 'PIK3R2', 'CDKN1A', 'TGFA', 'PIK3CA', 'PIK3R1'}, number: 8
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EGFR', 'RXRA', 'PIK3CD', 'AKT3', 'SOS1', 'STAT5A', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1', 'EGF', 'STAT3', 'CASP9', 'GADD45A'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'PRKCA', 'HRAS', 'EGFR', 'PIK3CD', 'AKT3', 'SOS1', 'SOS2', 'PIK3R2', 'CCND1', 'TGFA', 'PIK3CA', 'CDKN1A', 'PIK3R1', 'CDK6', 'EGF', 'CASP9'}, number: 18
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PIK3CD', 'PLCG2', 'PIK3CA', 'STAT3'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFS3', 'NDUFB7', 'UQCRQ', 'SDHB', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'UQCRB', 'NDUFS2', 'NDUFA4', 'NDUFA2', 'NDUFS8', 'COX7B', 'NDUFC1', 'NDUFA13', 'NDUFA3', 'COX5A', 'NDUFA6', 'NDUFA8', 'COX4I1', 'UQCR10', 'NDUFB2'}, number: 26
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'IL1B', 'CXCL8', 'IL6', 'RELA', 'IL1A', 'PIK3CD', 'AKT3', 'TNFRSF1A', 'CCL2', 'DDIT3', 'PIK3R2', 'MAP3K5', 'JUN', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'PRKAG2', 'PRKAA2', 'IL6', 'PIK3CD', 'INSR', 'PRKAB1', 'AKT3', 'CCL2', 'DDIT3', 'MAP3K5', 'PRKAB2', 'PIK3CA', 'PRKAG1', 'JUN', 'PRKAA1', 'NFKB1'}, number: 17
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'IL1B', 'CXCL8', 'IL6', 'RELA', 'IL1A', 'PIK3CD', 'AKT3', 'TNFRSF1A', 'CCL2', 'DDIT3', 'PIK3R2', 'MAP3K5', 'JUN', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'IL1B', 'CXCL8', 'IL6', 'RELA', 'IL1A', 'PIK3CD', 'AKT3', 'TNFRSF1A', 'CCL2', 'DDIT3', 'PIK3R2', 'MAP3K5', 'JUN', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RAC1', 'ITCH', 'PIK3R2', 'NDUFA13', 'PIK3R1', 'JUN'}, number: 6
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'RAC1'}, number: 2
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'BID', 'DDIT3', 'XBP1', 'BCL2L11'}, number: 6
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'IL1B', 'CXCL8', 'IL6', 'RELA', 'IL1A', 'PIK3CD', 'AKT3', 'TNFRSF1A', 'CCL2', 'DDIT3', 'PIK3R2', 'MAP3K5', 'JUN', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'JUN', 'PIK3R2', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 13
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'BID', 'RXRA', 'PIK3CD', 'AKT3', 'PIK3R2', 'PIK3CA', 'PIK3R1'}, number: 8
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'IL1B', 'CXCL8', 'IL6', 'RELA', 'IL1A', 'PIK3CD', 'AKT3', 'TNFRSF1A', 'CCL2', 'DDIT3', 'PIK3R2', 'MAP3K5', 'JUN', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFS3', 'NDUFB7', 'UQCRQ', 'SDHB', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'UQCRB', 'NDUFS2', 'NDUFA4', 'NDUFA2', 'NDUFS8', 'COX7B', 'NDUFC1', 'NDUFA13', 'NDUFA3', 'COX5A', 'NDUFA6', 'NDUFA8', 'COX4I1', 'UQCR10', 'NDUFB2'}, number: 26
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): {'NDUFB10', 'NDUFA11', 'NDUFB2', 'NDUFA3', 'NDUFA9', 'NDUFS8', 'NDUFC2', 'NDUFB7', 'NDUFS3', 'NDUFB1', 'NDUFS2', 'NDUFA4', 'NDUFC1', 'NDUFA6', 'NDUFA2', 'NDUFA8', 'NDUFS1', 'NDUFB5'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'IL1B', 'EIF2S1', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'DDIT3', 'PIK3R2', 'XBP1', 'JUN', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 17
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'BID', 'DDIT3', 'XBP1', 'BCL2L11'}, number: 6
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFS3', 'NDUFB7', 'UQCRQ', 'SDHB', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'UQCRB', 'NDUFS2', 'NDUFA4', 'NDUFA2', 'NDUFS8', 'COX7B', 'NDUFC1', 'NDUFA13', 'NDUFA3', 'COX5A', 'NDUFA6', 'NDUFA8', 'COX4I1', 'UQCR10', 'NDUFB2'}, number: 26
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID'}, number: 2
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'RXRA', 'INSR'}, number: 3
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'RAC1', 'NFKB1', 'PRKAG2', 'RELA', 'PIK3CD', 'PRKAB1', 'PIK3R2', 'PRKAB2', 'BCL2L11', 'IRS1', 'IL6R', 'PRKAA2', 'INSR', 'PRKAG1', 'IL6', 'AKT3', 'PIK3R1', 'PRKAA1'}, number: 19
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'IRS1', 'BID', 'PIK3CD', 'INSR', 'AKT3', 'JUN', 'PIK3R2', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 13
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'RELA', 'IL1A', 'CCL2', 'PIK3R2', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'NR1H3', 'PRKAB1', 'CCL2', 'JUN', 'PRKAB2', 'RXRA', 'PRKAG1', 'RAC1', 'PRKAA1', 'PPARA', 'NFKB1'}, number: 13
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'IL1B', 'EIF2S1', 'IRS1', 'BID', 'RXRA', 'PIK3CD', 'INSR', 'AKT3', 'DDIT3', 'PIK3R2', 'XBP1', 'JUN', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'RAC1', 'NFKB1'}, number: 18
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF2S1', 'IRS2', 'PRKAA2', 'RELA', 'IRS1', 'JUN', 'PIK3R2', 'BCL2L11', 'PIK3R1', 'RAC1', 'PRKAA1', 'NFKB1'}, number: 12
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EIF2S1', 'SMAD7', 'PIK3CA', 'RAC1', 'NFKB1', 'IL1B', 'RELA', 'PIK3R2', 'BCL2L11', 'IRS1', 'IL6R', 'IRS2', 'PRKAA2', 'IL1A', 'INSR', 'JUN', 'IL6', 'TNFRSF1A', 'PIK3R1', 'PRKAA1'}, number: 20
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IRS2', 'PRKAG2', 'PRKAA2', 'RXRA', 'PIK3CD', 'INSR', 'PRKAB1', 'NR1H4', 'SREBF1', 'PIK3R2', 'PRKAB2', 'PIK3CA', 'PIK3R1', 'PRKAA1', 'PRKAG1'}, number: 15
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IRS2', 'PRKAA2', 'IL6', 'IRS1', 'RXRA', 'PIK3CD', 'NR1H3', 'INSR', 'AKT3', 'SREBF1', 'DDIT3', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'PRKAA1', 'PPARA', 'IL6R'}, number: 17
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IRS2', 'PRKAA2', 'RELA', 'IL6', 'PRKAA1', 'IRS1', 'PIK3CD', 'INSR', 'AKT3', 'SREBF1', 'PIK3R2', 'BCL2L11', 'PIK3CA', 'PIK3R1', 'RAC1', 'IL6R', 'NFKB1'}, number: 17
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'IL1A', 'IRS1', 'PIK3CD', 'SMAD7', 'INSR', 'TNFRSF1A', 'PIK3CA', 'IL6R', 'NFKB1'}, number: 11
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nonalcoholic Fatty Liver Disease WP4396, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'JUND', 'EGFR', 'PDGFB', 'TGFBR2', 'IL12A', 'HSPA1A', 'CCL2', 'JUN'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'EPHA2', 'CDK4', 'EGFR', 'PDGFB', 'CCL2', 'HBEGF', 'SLC2A1', 'TGFA', 'SLC7A5', 'CCND1', 'JUN'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'JUND', 'EGFR', 'PDGFB', 'TGFBR2', 'IL12A', 'HSPA1A', 'CCL2', 'JUN'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'JUND', 'EGFR', 'PDGFB', 'TGFBR2', 'IL12A', 'HSPA1A', 'CCL2', 'JUN'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUND', 'EGFR', 'NCOA3', 'JUN', 'STAT3'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'CDK1'}, number: 2
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'JUND', 'EGFR', 'PDGFB', 'TGFBR2', 'IL12A', 'HSPA1A', 'CCL2', 'JUN'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'CDK1', 'CDKN1B', 'SCP2', 'CCND1', 'JUN'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'EGFR', 'CCND1', 'TGFA', 'RXRA', 'STAT3'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'JUND', 'EGFR', 'PDGFB', 'TGFBR2', 'IL12A', 'HSPA1A', 'CCL2', 'JUN'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'CDK4', 'CDK1', 'CDKN1B', 'SCP2', 'CCND1', 'JUN'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDKN1B', 'CCND1', 'CDK1'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC2A5', 'KEAP1', 'SLC6A15', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'EPHA2', 'GPX3', 'TGFB2', 'SLC39A9', 'SLC6A20', 'GSTM3', 'SLC2A11', 'SQSTM1', 'SLC2A10', 'HSP90AB1', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'GSTA4', 'MAFF', 'PRDX1', 'SERPINA1', 'RXRA', 'NRG1', 'FTL', 'FTH1', 'SLC39A8', 'CES4A', 'EGR1', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 63
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EPHA2', 'CDK4', 'HSP90AA1', 'EGFR', 'HSP90AB1', 'PDGFB', 'CDKN1B', 'CCND1', 'TGFA', 'CDC37'}, number: 10
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDK1', 'CDKN1B', 'SCP2', 'CCND1', 'JUN'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'JUN', 'CCL2'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFG', 'ACADM', 'SLC39A4', 'SLC6A13', 'SLC2A5', 'KEAP1', 'BLVRB', 'GCLC', 'TXNRD1', 'SLC2A3', 'HSP90AB1', 'PRDX1', 'RXRA', 'JUNB', 'GSR', 'SLC6A8', 'PGD', 'NR1H3', 'EHHADH', 'SLC2A1', 'ANGPTL4', 'ME1', 'SLC39A10', 'HMOX1', 'TGFA', 'NQO1', 'EPHA2', 'GPX3', 'TGFB2', 'SLC39A9', 'GSTA4', 'FTL', 'JUN', 'SLC39A8', 'HSP90AA1', 'SRXN1', 'PDGFB', 'SLC5A3', 'ABCC2', 'G6PD', 'SLC39A14', 'SLC6A15', 'SLC39A6', 'SCP2', 'SLC39A3', 'PPARA', 'SLC6A20', 'GSTM3', 'MGST1', 'SLC2A11', 'CBR3', 'NRG1', 'DNAJB1', 'DBI', 'ABCC3', 'CBR1', 'ACAA1', 'HSPA1A', 'HBEGF', 'CPT2', 'SLC27A5', 'CES2', 'MGST2', 'SQSTM1', 'SLC2A10', 'TGFBR2', 'GCLM', 'TXNRD3', 'MAFF', 'SERPINA1', 'CCND1', 'FTH1', 'CES4A', 'EGR1', 'SLC7A11', 'CCL2', 'SLC6A6', 'TXN'}, number: 78
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC2A5', 'KEAP1', 'SLC6A15', 'IL1B', 'ME1', 'CDK4', 'CES2', 'MGST2', 'CDK1', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'CDKN1B', 'SCP2', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'EPHA2', 'GPX3', 'TGFB2', 'SLC39A9', 'SLC6A20', 'GSTM3', 'SLC2A11', 'SQSTM1', 'SLC2A10', 'HSP90AB1', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'GSTA4', 'MAFF', 'PRDX1', 'SERPINA1', 'CCND1', 'RXRA', 'NRG1', 'FTL', 'JUN', 'FTH1', 'SLC39A8', 'CES4A', 'EGR1', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 70
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'EGR1', 'IRS2', 'JUN', 'STAT3'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'IRS2', 'TGFB2', 'EGR1', 'LRRC8A', 'TGFBR2', 'IL12A', 'SLC2A1', 'JUN', 'STAT3', 'SLC2A3'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MAFG', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'SLC27A5', 'SLC2A5', 'KEAP1', 'SLC6A15', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'SLC39A3', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'EPHA2', 'GPX3', 'TGFB2', 'SLC39A9', 'SLC6A20', 'IRS2', 'GSTM3', 'SLC2A11', 'SQSTM1', 'HSP90AB1', 'ABCB11', 'SLC2A10', 'TGFBR2', 'GCLM', 'CBR3', 'TXNRD3', 'SREBF1', 'GSTA4', 'MAFF', 'FKBP5', 'PRDX1', 'SERPINA1', 'RXRA', 'NRG1', 'FTL', 'FTH1', 'SLC39A8', 'CES4A', 'EGR1', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'GSR', 'ABCC3', 'CBR1', 'NR1H4', 'SLC6A8', 'SLC6A6', 'SLC5A3', 'ABCC2', 'TXN'}, number: 69
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPHA2', 'IRS2', 'NR3C1', 'HSP90AA1', 'EGFR', 'HSP90AB1', 'PDGFB', 'NR1H3', 'NRIP1', 'SREBF1', 'CDKN1B', 'SLC2A1', 'RXRA', 'CDC37', 'STAT3', 'PPARA', 'SLC2A3'}, number: 17
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPHA2', 'IRS2', 'CDK4', 'HSP90AA1', 'EGFR', 'HSP90AB1', 'PDGFB', 'SREBF1', 'CDKN1B', 'SLC2A1', 'TGFA', 'CCND1', 'CDC37', 'SLC2A3'}, number: 14
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'TGFB2', 'LRRC8A', 'TGFBR2', 'IL12A', 'SLC2A1', 'STAT3', 'SLC2A3'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 8
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'BRCA1'}, number: 2
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'BRCA1'}, number: 2
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'MNAT1', 'ERCC4', 'PARP1', 'ERCC8', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPA', 'XRCC1', 'CCNH', 'RPA3', 'GTF2H1', 'ERCC1', 'DDB1', 'RFC4', 'RFC2', 'LIG1', 'BRCA1', 'PCNA', 'RAD23B'}, number: 26
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'BRCA1'}, number: 2
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'MNAT1', 'ERCC4', 'PARP1', 'ERCC8', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPA', 'XRCC1', 'CCNH', 'RPA3', 'GTF2H1', 'ERCC1', 'DDB1', 'RFC4', 'RFC2', 'LIG1', 'BRCA1', 'PCNA', 'RAD23B'}, number: 26
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RBX1', 'RPA2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'MNAT1', 'ERCC4', 'ERCC8', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPA', 'CCNH', 'RPA3', 'GTF2H1', 'ERCC1', 'DDB1', 'RFC4', 'RFC2', 'LIG1', 'PCNA', 'RAD23B'}, number: 23
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'MNAT1', 'ERCC4', 'ERCC8', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPA', 'CCNH', 'RPA3', 'GTF2H1', 'ERCC1', 'DDB1', 'RFC4', 'RFC2', 'LIG1', 'PCNA', 'RAD23B'}, number: 23
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RBX1', 'RPA2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JUND', 'RELA', 'PRKCD', 'NFKBIA', 'SOS1', 'STAT1', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'SOS1', 'CDK2', 'STAT1', 'VEGFA', 'SHC1', 'JAK1', 'NFKB1'}, number: 9
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JUND', 'RELA', 'PRKCD', 'NFKBIA', 'SOS1', 'STAT1', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JUND', 'RELA', 'PRKCD', 'NFKBIA', 'SOS1', 'STAT1', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JUND', 'PRKCB', 'PRKCD', 'JAK2', 'SOS1', 'SHC1', 'STAT1', 'PTPN11', 'PIK3R1', 'STAT3', 'JAK1'}, number: 14
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'STAT3'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JUND', 'RELA', 'PRKCD', 'NFKBIA', 'SOS1', 'STAT1', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'PIK3R1', 'SHC1', 'IRS1'}, number: 8
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'SOS1', 'PIK3R1', 'STAT3'}, number: 7
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'JUND', 'RELA', 'PRKCD', 'NFKBIA', 'SOS1', 'STAT1', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'PIK3R1', 'SHC1', 'IRS1'}, number: 8
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1B', 'CDK2'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'CEBPB'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'RELA', 'JAK2', 'IRS1', 'SOS1', 'CDK2', 'OSMR', 'CDKN1B', 'PTPN11', 'PIK3R1', 'VEGFA', 'SHC1', 'JAK1', 'NFKB1'}, number: 17
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'PIK3R1', 'SHC1', 'IRS1'}, number: 8
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'NFKBIA', 'PTPN11', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'JUNB', 'PRKCB', 'CDK2', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'HRAS', 'IRS1', 'SOS1', 'CDK2', 'CDKN1B', 'PIK3R1', 'CEBPB', 'SHC1', 'NFKB1'}, number: 11
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'EGR1', 'HRAS', 'RELA', 'PRKCD', 'JAK2', 'IRS1', 'NFKBIA', 'SOS1', 'SHC1', 'STAT1', 'PTPN11', 'PIK3R1', 'STAT3', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'EGR1', 'PRKCA', 'HRAS', 'PRKCB', 'RELA', 'PRKCD', 'JAK2', 'IRS1', 'NFKBIA', 'SHC1', 'STAT1', 'IL6ST', 'PTPN11', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 18
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EGR1', 'PRKCA', 'CEBPB', 'PIK3R1'}, number: 4
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'JAK2', 'SOS1', 'OSMR', 'CDKN1B', 'STAT1', 'LIFR', 'IL6ST', 'CEBPB', 'PIK3R1', 'VEGFA', 'STAT3', 'JAK1', 'IRS1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'JAK2', 'IRS1', 'SOS1', 'CDK2', 'OSMR', 'CDKN1B', 'PIK3R1', 'VEGFA', 'JAK1', 'NFKB1'}, number: 14
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'IL6ST', 'PRKCB', 'STAT1', 'NFKB1', 'STAT3', 'JAK1', 'IRS1'}, number: 8
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'JUND', 'RELA', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'FGFR2', 'PIK3CA', 'JUN', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'NGF', 'FGFR4', 'FOSL1', 'AKT3', 'FGFR3', 'FGFR1', 'JUN', 'FGFR2', 'PIK3CA', 'VEGFA', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'JUND', 'RELA', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'FGFR2', 'PIK3CA', 'JUN', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'JUND', 'RELA', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'FGFR2', 'PIK3CA', 'JUN', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'JUND', 'JAK2', 'JUN', 'STAT3'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'STAT3'}, number: 3
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'JUND', 'RELA', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'FGFR2', 'PIK3CA', 'JUN', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'FOSL1', 'AKT3', 'PIK3CA', 'JUN', 'NFKB1'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'AKT3', 'STAT3'}, number: 4
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'JUND', 'RELA', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'FGFR2', 'PIK3CA', 'JUN', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'FOSL1', 'AKT3', 'PIK3CA', 'JUN', 'NFKB1'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'CEBPB'}, number: 3
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'RELA', 'JAK2', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'FGFR2', 'PIK3CA', 'VEGFA', 'NFKB1'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'FOSL1', 'AKT3', 'PIK3CA', 'JUN', 'NFKB1'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'JUNB', 'FOSL1', 'JUN', 'NFKB1'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'FOSL1', 'AKT3', 'JUN', 'PIK3CA', 'CEBPB', 'NFKB1'}, number: 7
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'JAK2', 'NGF', 'JUN', 'STAT3', 'NFKB1'}, number: 6
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'RELA', 'JAK2', 'NGF', 'PIK3CA', 'JUN', 'STAT3', 'NFKB1'}, number: 8
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'CEBPB'}, number: 3
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'JAK2', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'EPAS1', 'FGFR2', 'PIK3CA', 'CEBPB', 'VEGFA', 'STAT3'}, number: 12
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'RELA', 'JAK2', 'NGF', 'FGFR4', 'AKT3', 'FGFR3', 'FGFR1', 'EPAS1', 'FGFR2', 'PIK3CA', 'VEGFA', 'NFKB1'}, number: 13
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'NGF', 'PIK3CA', 'STAT3', 'NFKB1'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR4', 'FGFR1'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'JUNB', 'NFKB1'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'GADD45A', 'MAPK13', 'NFKB1', 'MAP2K4', 'TRAF3'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP3K9', 'MAP3K1', 'CDKN1A', 'MAPK10', 'MAP2K4', 'NFKB1'}, number: 6
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'GADD45A', 'MAPK13', 'NFKB1', 'MAP2K4', 'TRAF3'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'GADD45A', 'MAPK13', 'NFKB1', 'MAP2K4', 'TRAF3'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'MAP3K1'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'GADD45A', 'MAPK13', 'NFKB1', 'MAP2K4', 'TRAF3'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'CDKN1B', 'CDKN1A', 'NFKB1', 'CASP9', 'GADD45A'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A', 'CASP9', 'GADD45A'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'GADD45A', 'MAPK13', 'NFKB1', 'MAP2K4', 'TRAF3'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'CDKN1B', 'CDKN1A', 'NFKB1', 'CASP9', 'GADD45A'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PCNA', 'CDKN1B', 'CDKN1A', 'CASP9', 'GADD45A'}, number: 5
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'MAPK10', 'CASP9', 'NFKB1'}, number: 5
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'CDKN1B', 'CDKN1A', 'NFKB1', 'CASP9', 'GADD45A'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP3K1', 'NFKBIE', 'MAP2K4', 'NFKB1'}, number: 4
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PCNA', 'CDKN1A', 'NFKB1', 'MAPK10', 'GADD45A'}, number: 5
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'CDKN1B', 'CDKN1A', 'NFKB1', 'CASP9', 'GADD45A'}, number: 7
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'NFKB1'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'NFKB1'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'CASP9', 'GADD45A'}, number: 4
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'CASP9', 'NFKB1'}, number: 4
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'ATP5F1A', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'ATP5F1D', 'NDUFS8', 'NDUFC1', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'NDUFA6', 'NDUFA8', 'NDUFB2'}, number: 26
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'ATP5F1A', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'ATP5F1D', 'NDUFS8', 'NDUFC1', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'NDUFA6', 'NDUFA8', 'NDUFB2'}, number: 26
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'ATP5F1A', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'ATP5F1D', 'NDUFS8', 'NDUFC1', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'NDUFA6', 'NDUFA8', 'NDUFB2'}, number: 26
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'NDUFA11', 'NDUFA9', 'NDUFB7', 'NDUFS3', 'ATP5F1A', 'NDUFS1', 'NDUFB5', 'NDUFB10', 'NDUFC2', 'NDUFB1', 'ATP5MG', 'NDUFS2', 'ATP5PO', 'ATP5PB', 'NDUFA4', 'NDUFA2', 'ATP5F1D', 'NDUFS8', 'NDUFC1', 'ATP5MF', 'NDUFA3', 'ATP5MC2', 'ATP5MC3', 'NDUFA6', 'NDUFA8', 'NDUFB2'}, number: 26
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Phosphorylation WP623, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GPX3', 'SOD2', 'JUNB', 'MGST1', 'XDH', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'SOD1', 'HMOX1', 'MT1X', 'MAPK10', 'TXN2', 'MAOA', 'NFKB1'}, number: 16
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GPX3', 'SOD2', 'JUNB', 'MGST1', 'XDH', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'SOD1', 'HMOX1', 'MT1X', 'MAPK10', 'TXN2', 'MAOA', 'NFKB1'}, number: 16
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GPX3', 'SOD2', 'JUNB', 'MGST1', 'XDH', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'SOD1', 'HMOX1', 'MT1X', 'MAPK10', 'TXN2', 'MAOA', 'NFKB1'}, number: 16
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX3', 'SOD2', 'JUNB', 'MGST1', 'XDH', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'SOD1', 'HMOX1', 'MT1X', 'MAPK10', 'TXN2', 'MAOA', 'NFKB1'}, number: 16
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GPX3', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'HMOX1', 'MAPK10', 'NFKB1'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GPX3', 'SOD2', 'JUNB', 'MGST1', 'XDH', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'SOD1', 'HMOX1', 'MT1X', 'MAPK10', 'TXN2', 'MAOA', 'NFKB1'}, number: 16
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GPX3', 'GCLC', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 6
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GPX3', 'SOD2', 'JUNB', 'MGST1', 'XDH', 'GCLC', 'NQO1', 'TXNRD1', 'GSR', 'SOD1', 'HMOX1', 'MT1X', 'MAPK10', 'TXN2', 'MAOA', 'NFKB1'}, number: 16
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CCL2', 'GADD45A'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'PRKAA1', 'PRKAB1', 'CDK2', 'CCL2', 'AKT1S1', 'CDKN1A', 'SLC2A1', 'PRKAB2', 'DEPTOR', 'CCNE1', 'ULK1', 'PRKAG1'}, number: 14
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CCL2', 'GADD45A'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CCL2', 'GADD45A'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'AURKA'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1', 'TNFRSF10B'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CCL2', 'GADD45A'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SFN', 'CDC25C', 'CDC25A', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'CCNG1', 'CCNE1', 'GADD45A'}, number: 10
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A', 'GADD45A'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CCL2', 'GADD45A'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SFN', 'CDC25C', 'CDC25A', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'CCNE1', 'GADD45A'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1', 'TNFRSF10B'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'SFN', 'MGMT', 'CDC25C', 'CDC25A', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'PCNA', 'MSH2', 'CDKN1A', 'XRCC5', 'FANCC', 'CCNE1', 'GADD45A'}, number: 14
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'SLC2A1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'PRKAA1', 'ULK1', 'PRKAB1', 'CDK2', 'AKT1S1', 'CDKN1A', 'PRKAB2', 'DEPTOR', 'CCNE1', 'DDIT4', 'PRKAG1'}, number: 13
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SFN', 'CDC25C', 'CDC25A', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'CCNE1', 'GADD45A'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'CCL2'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FUCA1', 'DRAM1', 'MSH2', 'ADORA2B', 'SLC2A1', 'CX3CL1', 'CCNG1', 'CCNE1', 'DEPTOR', 'SAT1', 'DDIT4', 'E2F7', 'SFN', 'PRKAG2', 'TNFRSF10D', 'PMAIP1', 'TNFRSF10B', 'PRKAB1', 'PRKAB2', 'MGMT', 'PRKAA2', 'LIF', 'TP53I3', 'SCO2', 'CDK2', 'SESN2', 'SIVA1', 'SERPINE1', 'ZMAT3', 'ULK1', 'PRKAG1', 'GADD45A', 'SLC7A11', 'CDC25C', 'CDC25A', 'TP53INP1', 'GLS2', 'IRF9', 'PCNA', 'CCL2', 'AKT1S1', 'ICAM1', 'CDKN1A', 'XRCC5', 'TIGAR', 'FANCC', 'AURKA', 'PRKAA1'}, number: 48
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'SFN', 'CDC25C', 'CDC25A', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'SLC2A1', 'CCNE1', 'GADD45A'}, number: 11
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PRKAA2', 'PRKAA1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'LIF', 'PRKAA2', 'GLS2', 'SLC2A1', 'PRKAA1'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'PRKAG2', 'PRKAA2', 'PRKAB1', 'CDKN1A', 'PRKAB2', 'SLC2A1', 'PRKAA1', 'PRKAG1'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LIF', 'PRKAA2', 'ULK1', 'AKT1S1', 'CDKN1A', 'SLC2A1', 'SERPINE1', 'PRKAA1', 'DDIT4', 'GADD45A'}, number: 10
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKAA2', 'PRKAA1', 'ULK1', 'CDK2', 'AKT1S1', 'CDKN1A', 'SLC2A1', 'CCNE1', 'DDIT4'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GLS2', 'LIF', 'SLC2A1'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CLIP1'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELN'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RELN'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RELN'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'PDGFA', 'SRF', 'NFKBIA', 'PDGFB', 'SOS1', 'MAP3K1', 'PAK1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'RASA1', 'NFKB1'}, number: 16
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'PDGFA', 'PDGFB', 'SOS1', 'MAP3K1', 'PAK1', 'STAT1', 'JUN', 'SHC1', 'JAK1', 'NFKB1'}, number: 12
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'PDGFA', 'SRF', 'NFKBIA', 'PDGFB', 'SOS1', 'MAP3K1', 'PAK1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'RASA1', 'NFKB1'}, number: 16
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'PDGFA', 'SRF', 'NFKBIA', 'PDGFB', 'SOS1', 'MAP3K1', 'PAK1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'RASA1', 'NFKB1'}, number: 16
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'SOS1', 'SHC1', 'MAP3K1', 'PAK1', 'JUN', 'RASA1', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1'}, number: 13
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PAK1', 'RAC1', 'STAT3'}, number: 3
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'PDGFA', 'SRF', 'NFKBIA', 'PDGFB', 'SOS1', 'MAP3K1', 'PAK1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'RASA1', 'NFKB1'}, number: 16
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'RAC1', 'SOS1', 'MAP3K1', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 8
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'SOS1', 'PIK3R1', 'HRAS', 'STAT3'}, number: 4
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'PDGFA', 'SRF', 'NFKBIA', 'PDGFB', 'SOS1', 'MAP3K1', 'PAK1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'RASA1', 'NFKB1'}, number: 16
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'RAC1', 'SOS1', 'MAP3K1', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 8
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PDGFB'}, number: 1
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'PDGFA', 'PDGFB', 'SOS1', 'PAK1', 'RASA1', 'PTPN11', 'PIK3R1', 'RAC1', 'SHC1', 'JAK1', 'NFKB1'}, number: 12
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'RAC1', 'SOS1', 'MAP3K1', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 8
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKBIA', 'MAP3K1', 'PTPN11', 'PIK3R1', 'JUN', 'MAP2K4', 'NFKB1'}, number: 7
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'RAC1', 'PDGFB', 'NFKB1'}, number: 4
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'RAC1', 'PDGFB', 'SOS1', 'MAP3K1', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 9
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'NFKBIA', 'SOS1', 'SHC1', 'MAP3K1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'NFKB1'}, number: 12
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'NFKBIA', 'SHC1', 'MAP3K1', 'JUN', 'STAT1', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1', 'NFKB1'}, number: 12
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'PDGFB'}, number: 2
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'PDGFA', 'PDGFB', 'SOS1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 8
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'PDGFA', 'PDGFB', 'SOS1', 'PIK3R1', 'RAC1', 'JAK1', 'NFKB1'}, number: 8
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 4
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: PDGF Pathway WP2526, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP2K4', 'SRF', 'SOS1', 'MAP3K1', 'STAT1', 'PIK3CA', 'PIK3R1', 'JUN', 'RASA1'}, number: 11
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'MAP2K4', 'SOS1', 'MAP3K1', 'STAT1', 'PIK3CA', 'JUN', 'SHC1', 'JAK1'}, number: 9
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP2K4', 'SRF', 'SOS1', 'MAP3K1', 'STAT1', 'PIK3CA', 'PIK3R1', 'JUN', 'RASA1'}, number: 11
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP2K4', 'SRF', 'SOS1', 'MAP3K1', 'STAT1', 'PIK3CA', 'PIK3R1', 'JUN', 'RASA1'}, number: 11
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCB', 'JAK2', 'SOS1', 'MAP3K1', 'STAT5A', 'STAT1', 'JAK1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'RASA1'}, number: 14
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'STAT3'}, number: 3
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP2K4', 'SRF', 'SOS1', 'MAP3K1', 'STAT1', 'PIK3CA', 'PIK3R1', 'JUN', 'RASA1'}, number: 11
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS1', 'MAP3K1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1'}, number: 7
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCB', 'SOS1', 'STAT5A', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 8
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'MAP2K4', 'SRF', 'SOS1', 'MAP3K1', 'STAT1', 'PIK3CA', 'PIK3R1', 'JUN', 'RASA1'}, number: 11
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS1', 'MAP3K1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1'}, number: 7
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCB', 'JAK2', 'SOS1', 'JAK1', 'PIK3CA', 'PIK3R1', 'SHC1', 'RASA1'}, number: 10
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS1', 'MAP3K1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1'}, number: 7
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP3K1', 'PIK3R1', 'JUN', 'MAP2K4'}, number: 4
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'JUN', 'PRKCB'}, number: 3
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS1', 'MAP3K1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1'}, number: 8
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'JAK2', 'SOS1', 'MAP3K1', 'STAT5A', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3'}, number: 10
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKCB', 'JAK2', 'STAT6', 'MAP3K1', 'STAT5A', 'STAT1', 'PIK3CA', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1'}, number: 14
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'PIK3R1'}, number: 3
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'JAK2', 'SOS1', 'STAT6', 'STAT5A', 'STAT1', 'PIK3CA', 'PIK3R1', 'STAT3', 'JAK1'}, number: 10
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'JAK2', 'SOS1', 'PIK3CA', 'PIK3R1', 'JAK1'}, number: 7
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'STAT6', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1'}, number: 7
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: PDGFR Beta Pathway WP3972, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PAK2'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AKT1S1', 'PAK2', 'PDK1'}, number: 3
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PAK2'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PAK2'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PAK2'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'H2AX', 'PDK1'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT3', 'PDK1'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PAK2'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'H2AX', 'PDK1'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'AKT1S1', 'PAK2'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'H2AX', 'PDK1'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'AKT1S1', 'H2AX'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'H2AX', 'PDK1'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1S1', 'STAT3'}, number: 2
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1S1'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'BRAF', 'DUSP6', 'PIK3CA', 'RAC1', 'NFKB1', 'RELA', 'PRKCD', 'PIK3CD', 'PIK3R2', 'TGFB2', 'RAC2', 'TGFBR2', 'PAK1', 'EGF', 'GADD45A', 'MAP2K2', 'EGFR', 'AKT3', 'TGFBR1', 'PAK2', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 23
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PIK3CA', 'VEGFA', 'NFKB1', 'CDK4', 'PIK3CD', 'TGFA', 'JAK1', 'PAK1', 'CCND1', 'CDKN2A', 'PAK3', 'EGF', 'MAP2K2', 'EGFR', 'AKT3', 'PAK2', 'CDKN1A', 'STAT1', 'MAPK10'}, number: 19
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'BRAF', 'DUSP6', 'PIK3CA', 'RAC1', 'NFKB1', 'RELA', 'PRKCD', 'PIK3CD', 'PIK3R2', 'TGFB2', 'RAC2', 'TGFBR2', 'PAK1', 'EGF', 'GADD45A', 'MAP2K2', 'EGFR', 'AKT3', 'TGFBR1', 'PAK2', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 23
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'BRAF', 'DUSP6', 'PIK3CA', 'RAC1', 'NFKB1', 'RELA', 'PRKCD', 'PIK3CD', 'PIK3R2', 'TGFB2', 'RAC2', 'TGFBR2', 'PAK1', 'EGF', 'GADD45A', 'MAP2K2', 'EGFR', 'AKT3', 'TGFBR1', 'PAK2', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 23
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RALA', 'PRKCD', 'EGFR', 'BRAF', 'ERBB2', 'RALGDS', 'PAK1', 'PIK3R2', 'STAT1', 'PEBP1', 'PIK3R1', 'EGF', 'RAC1', 'STAT3', 'JAK1'}, number: 16
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1', 'RAC1', 'STAT3'}, number: 4
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'BRAF', 'DUSP6', 'PIK3CA', 'RAC1', 'NFKB1', 'RELA', 'PRKCD', 'PIK3CD', 'PIK3R2', 'TGFB2', 'RAC2', 'TGFBR2', 'PAK1', 'EGF', 'GADD45A', 'MAP2K2', 'EGFR', 'AKT3', 'TGFBR1', 'PAK2', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 23
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK10', 'CDK4', 'SMAD3', 'RAC2', 'PIK3CD', 'AKT3', 'ERBB2', 'GADD45A', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'RAC1', 'CASP9', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'E2F3', 'BRAF', 'PIK3CA', 'CDK4', 'PIK3CD', 'PIK3R2', 'TGFA', 'CDK6', 'STAT3', 'CASP9', 'CCND1', 'CDKN2A', 'EGF', 'GADD45A', 'MAP2K2', 'EGFR', 'AKT3', 'ERBB2', 'CDKN1A', 'PIK3R1'}, number: 20
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'BRAF', 'DUSP6', 'PIK3CA', 'RAC1', 'NFKB1', 'RELA', 'PRKCD', 'PIK3CD', 'PIK3R2', 'TGFB2', 'RAC2', 'TGFBR2', 'PAK1', 'EGF', 'GADD45A', 'MAP2K2', 'EGFR', 'AKT3', 'TGFBR1', 'PAK2', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 23
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK10', 'CDK4', 'SMAD3', 'RAC2', 'PIK3CD', 'AKT3', 'ERBB2', 'GADD45A', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'RAC1', 'CASP9', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'CCND1', 'CDK6', 'CASP9', 'GADD45A'}, number: 6
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'TGFB2', 'TGFBR2', 'TGFA'}, number: 4
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'RAC1', 'VEGFA', 'NFKB1', 'CDK4', 'RELA', 'PIK3CD', 'PIK3R2', 'TGFA', 'CDK6', 'JAK1', 'CASP9', 'RALA', 'RAC2', 'PAK1', 'BCL2L1', 'CCND1', 'PAK3', 'EGF', 'MAP2K2', 'EGFR', 'AKT3', 'PAK2', 'CDKN1A', 'MAPK10', 'PIK3R1', 'RALGDS'}, number: 27
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK10', 'CDK4', 'SMAD3', 'RAC2', 'PIK3CD', 'AKT3', 'ERBB2', 'GADD45A', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'CDKN2A', 'PIK3R1', 'CDK6', 'RAC1', 'CASP9', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'PIK3R2', 'PIK3R1', 'NFKB1'}, number: 5
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'TGFBR2', 'GADD45A', 'CDKN1A', 'CCND1', 'TGFA', 'MAPK10', 'RAC1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'PIK3CA', 'RAC1', 'NFKB1', 'CDK4', 'PIK3CD', 'PIK3R2', 'TGFA', 'CDK6', 'CASP9', 'TGFB2', 'RAC2', 'TGFBR2', 'CCND1', 'CDKN2A', 'GADD45A', 'AKT3', 'ERBB2', 'CDKN1A', 'MAPK10', 'PIK3R1'}, number: 21
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'PRKCD', 'BRAF', 'PIK3R2', 'STAT1', 'MAPK10', 'PIK3R1', 'RAC1', 'STAT3', 'NFKB1'}, number: 11
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'MAPK10', 'TGFB2', 'RELA', 'SMAD3', 'PRKCD', 'TGFBR2', 'TGFBR1', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2', 'TGFBR2', 'PIK3CD', 'PIK3R2', 'CDKN1A', 'TGFA', 'PIK3CA', 'PIK3R1'}, number: 8
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'SMAD3', 'EGFR', 'PIK3CD', 'AKT3', 'PIK3R2', 'JAK1', 'CDKN1A', 'STAT1', 'PIK3CA', 'PIK3R1', 'EGF', 'VEGFA', 'STAT3', 'CASP9', 'GADD45A'}, number: 16
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'RAC1', 'VEGFA', 'NFKB1', 'CDK4', 'RELA', 'PIK3CD', 'PIK3R2', 'TGFA', 'CDK6', 'JAK1', 'CASP9', 'BCL2L1', 'CCND1', 'EGF', 'MAP2K2', 'EGFR', 'AKT3', 'CDKN1A', 'PIK3R1'}, number: 20
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TGFB2', 'SMAD3', 'TGFBR2', 'PIK3CD', 'TGFBR1', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1', 'NFKB1'}, number: 10
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'HSPA6', 'HSPA2', 'HSPA1A', 'HSPA1L', 'HSPA8', 'HSPA1B'}, number: 7
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'HSPA6', 'HSPA2', 'HSPA1A', 'HSPA1L', 'HSPA8', 'HSPA1B'}, number: 7
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'HSPA6', 'HSPA2', 'HSPA1A', 'HSPA1L', 'HSPA8', 'HSPA1B'}, number: 7
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'HSPA6', 'HSPA2', 'HSPA1A', 'HSPA1L', 'HSPA8', 'HSPA1B'}, number: 7
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'HSPA6', 'HSPA2', 'HSPA1A', 'HSPA1L', 'HSPA8', 'HSPA1B'}, number: 7
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HSPA1A', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HSPA1A', 'CASP8', 'CCNE1'}, number: 3
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'EGFR', 'TNFRSF1A', 'MAPK12', 'MAP3K5', 'MAPK13', 'MAP2K3', 'JUN', 'MAP2K4'}, number: 10
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'EGFR', 'HBEGF', 'CDKN1A', 'MAP3K5', 'CCND1', 'MAP2K3', 'CDKN2A', 'JUN', 'CCNE1', 'MAP2K4'}, number: 12
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'EGFR', 'TNFRSF1A', 'MAPK12', 'MAP3K5', 'MAPK13', 'MAP2K3', 'JUN', 'MAP2K4'}, number: 10
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'EGFR', 'TNFRSF1A', 'MAPK12', 'MAP3K5', 'MAPK13', 'MAP2K3', 'JUN', 'MAP2K4'}, number: 10
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'EGFR'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'BCL2L11'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'EGFR', 'TNFRSF1A', 'MAPK12', 'MAP3K5', 'MAPK13', 'MAP2K3', 'JUN', 'MAP2K4'}, number: 10
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BID', 'CDKN1A', 'CCND1', 'BCL2L11', 'CDKN2A', 'JUN', 'CCNE1'}, number: 7
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'EGFR', 'BID', 'CDKN1A', 'CCND1', 'CDKN2A'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'EGFR', 'TNFRSF1A', 'MAPK12', 'MAP3K5', 'MAPK13', 'MAP2K3', 'JUN', 'MAP2K4'}, number: 10
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BID', 'CDKN1A', 'CCND1', 'BCL2L11', 'CDKN2A', 'JUN', 'CCNE1'}, number: 7
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'BCL2L11'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BID', 'CDKN1A', 'CCNE1', 'CCND1'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HBEGF', 'HSP90AA1'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'HSP90AA1', 'EGFR', 'BCL2L1', 'CDKN1A', 'CCND1', 'BCL2L11', 'CCNE1'}, number: 8
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BID', 'CDKN1A', 'CCND1', 'BCL2L11', 'CDKN2A', 'JUN', 'CCNE1'}, number: 7
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'JUN', 'MAP2K3', 'MAP2K4'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUNB', 'HSP90AA1', 'HBEGF', 'CDKN1A', 'CCND1', 'JUN', 'CCNE1'}, number: 7
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HSP90AA1', 'BID', 'HBEGF', 'CDKN1A', 'CCND1', 'BCL2L11', 'CDKN2A', 'JUN', 'CCNE1'}, number: 9
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'BCL2L11'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TNFRSF1A', 'IL6', 'JUN', 'BCL2L11'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HBEGF', 'HSP90AA1', 'CDKN1A', 'CCNA2'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A', 'IL6', 'EGFR', 'HSP90AA1'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'HSP90AA1', 'EGFR', 'BCL2L1', 'CDKN1A', 'CCND1', 'BCL2L11', 'CCNE1'}, number: 8
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TNFRSF1A', 'IL6'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'JUN', 'MAPK12', 'MAPK13'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'JUN', 'MAPK12', 'MAPK13'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'JUN', 'MAPK12', 'MAPK13'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'JUN', 'MAPK12', 'MAPK13'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'JUN', 'MAPK12', 'MAPK13'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'ABCC3', 'HMOX1', 'NQO1', 'KEAP1', 'ABCC2'}, number: 8
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'ABCC3', 'HMOX1', 'JUN', 'NQO1', 'KEAP1', 'ABCC2'}, number: 9
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'ABCC3', 'HMOX1', 'JUN', 'NQO1', 'KEAP1', 'ABCC2'}, number: 9
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'ABCC3', 'HMOX1', 'NQO1', 'KEAP1', 'EPHX1', 'ABCC2'}, number: 9
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ATF3', 'DDIT3'}, number: 2
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PPP1R15A', 'DDIT3', 'XBP1', 'BCL2L11'}, number: 4
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PPP1R15A', 'DDIT3', 'XBP1', 'BCL2L11'}, number: 4
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PPP1R15A', 'DDIT3', 'XBP1', 'BCL2L11'}, number: 4
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HSP90B1', 'BCL2L11'}, number: 2
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PPP1R15A', 'DDIT3', 'XBP1', 'BCL2L11'}, number: 4
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'DDIT3', 'TRIB3', 'HSP90B1'}, number: 3
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HSP90B1', 'BCL2L11'}, number: 2
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'MAP3K5', 'PIK3CA', 'FN1', 'NFKB1', 'IL1B', 'RPS6KA3', 'MAP2K6', 'MKNK1', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'DDIT3', 'FGF2', 'MAP3K1', 'PAK1', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'MAP2K4', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'FGFR2', 'MAP2K3', 'MAPK10'}, number: 41
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CXXC4', 'HRAS', 'PDGFC', 'MAD2L1', 'LATS2', 'FGFR1', 'RASSF6', 'CTBP1', 'LAMB3', 'CCNE1', 'PDK1', 'LAMA2', 'IL1B', 'RPS6KA3', 'PODXL', 'MDK', 'RASSF4', 'SPARC', 'TEAD4', 'PLAU', 'CDK2', 'ULK1', 'WNT5B', 'COL4A5', 'AKT1S1', 'EFNA1', 'PRKAA1', 'COL4A4', 'SLC2A1', 'MAD1L1', 'DEPTOR', 'LAMC3', 'LATS1', 'VEGFA', 'DVL2', 'RNF2', 'TNIK', 'PIK3CD', 'KITLG', 'EFNA5', 'DDIT3', 'PLCB4', 'TGFA', 'NF2', 'BTC', 'TSC1', 'EPHA2', 'AMOT', 'CDH2', 'MET', 'CTHRC1', 'FOXM1', 'CDH16', 'FGF2', 'MAP3K1', 'EZH2', 'PAK1', 'ATF3', 'LAMB1', 'JUN', 'LAMA5', 'LAMC2', 'CSF1', 'PIGF', 'PDGFB', 'SOS1', 'ATG13', 'MAPK10', 'SHC1', 'FZD2', 'ITPR3', 'NGF', 'COL4A2', 'LAMA1', 'BARD1', 'PDGFD', 'MAP3K5', 'FN1', 'MOB1B', 'TEAD1', 'PRKAG2', 'NDRG1', 'ITGB3', 'FGFR4', 'ACTG1', 'FGFR3', 'CD44', 'FZD7', 'CDH1', 'COL4A3', 'PRKAA2', 'FRAT2', 'CDH3', 'ITGA2', 'FOSL1', 'INSR', 'CSNK2A1', 'WWC1', 'AREG', 'CIT', 'FRAT1', 'CDKN2A', 'CSNK1A1', 'EGF', 'SLC3A2', 'MAP2K2', 'CD274', 'EGFR', 'AKT3', 'RPS6KA5', 'MDM2', 'CDKN1A', 'FGFR2', 'ITGA3', 'PAK2', 'STAT1', 'KIF23', 'LAMC1', 'BAG2', 'MAP3K9', 'CCN2', 'BDNF', 'HBEGF', 'PIK3CA', 'DKK1', 'SFRP2', 'NFKB1', 'MAP2K6', 'CDK4', 'MKNK1', 'PDGFA', 'TNNT1', 'PRKAB1', 'COL4A1', 'PRKAB2', 'JAK1', 'CTNNA1', 'PRSS23', 'RBBP4', 'CDH6', 'FZD1', 'CCND1', 'ROR1', 'ACTC1', 'PAK3', 'MAP2K4', 'PRKAG1', 'IL6', 'ITGA6', 'BRCA1', 'TEAD3', 'CCL2', 'MAP2K3', 'SLC7A5'}, number: 154
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'MAP3K5', 'PIK3CA', 'FN1', 'NFKB1', 'IL1B', 'RPS6KA3', 'MAP2K6', 'MKNK1', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'DDIT3', 'FGF2', 'MAP3K1', 'PAK1', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'MAP2K4', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'FGFR2', 'MAP2K3', 'MAPK10'}, number: 41
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'MAP3K5', 'PIK3CA', 'FN1', 'NFKB1', 'IL1B', 'RPS6KA3', 'MAP2K6', 'MKNK1', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'DDIT3', 'FGF2', 'MAP3K1', 'PAK1', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'MAP2K4', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'FGFR2', 'MAP2K3', 'MAPK10'}, number: 41
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA3', 'HRAS', 'EGFR', 'SOS1', 'RPS6KA5', 'MAP3K1', 'PAK1', 'STAT1', 'EGF', 'JUN', 'SHC1', 'JAK1'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'DDIT3'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'MAP3K5', 'PIK3CA', 'FN1', 'NFKB1', 'IL1B', 'RPS6KA3', 'MAP2K6', 'MKNK1', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'DDIT3', 'FGF2', 'MAP3K1', 'PAK1', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'MAP2K4', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'FGFR2', 'MAP2K3', 'MAPK10'}, number: 41
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'CCNE1', 'PDK1', 'NFKB1', 'CDK4', 'DVL2', 'PIK3CD', 'FOSL1', 'PLAU', 'INSR', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'WNT5B', 'BRCA1', 'AKT3', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'SHC1'}, number: 25
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'EGFR', 'PIK3CD', 'AKT3', 'SOS1', 'CDKN1A', 'CCND1', 'TGFA', 'PIK3CA', 'CDKN2A', 'EGF', 'PDK1'}, number: 14
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'NGF', 'BDNF', 'FGFR1', 'MAP3K5', 'PIK3CA', 'FN1', 'NFKB1', 'IL1B', 'RPS6KA3', 'MAP2K6', 'MKNK1', 'PDGFA', 'FGFR4', 'PIK3CD', 'FGFR3', 'DDIT3', 'FGF2', 'MAP3K1', 'PAK1', 'LAMB1', 'JUN', 'EGF', 'LAMA5', 'MAP2K4', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'EGFR', 'PDGFB', 'AKT3', 'SOS1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'FGFR2', 'MAP2K3', 'MAPK10'}, number: 41
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'CCNE1', 'PDK1', 'NFKB1', 'IL1B', 'CDK4', 'DVL2', 'PIK3CD', 'DDIT3', 'FOSL1', 'PLAU', 'INSR', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'WNT5B', 'BRCA1', 'AKT3', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'SHC1'}, number: 27
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'DDIT3'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'MDM2', 'CDKN1A', 'CCND1', 'CCNE1'}, number: 7
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EPHA2', 'PDGFB', 'INSR', 'HBEGF', 'SLC2A1', 'TGFA', 'PIK3CA'}, number: 7
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'PDGFC', 'COL4A4', 'NGF', 'BDNF', 'COL4A2', 'LAMA1', 'FGFR1', 'PDGFD', 'PIK3CA', 'FN1', 'DEPTOR', 'VEGFA', 'LAMC3', 'LAMB3', 'CCNE1', 'LAMA2', 'NFKB1', 'CDK4', 'PRKAG2', 'ITGB3', 'PDGFA', 'FGFR4', 'PIK3CD', 'KITLG', 'EFNA5', 'FGFR3', 'PRKAB1', 'COL4A1', 'PRKAB2', 'TGFA', 'COL4A3', 'JAK1', 'TSC1', 'EPHA2', 'PRKAA2', 'ITGA2', 'MET', 'INSR', 'CDK2', 'FGF2', 'PAK1', 'CCND1', 'SHC1', 'LAMB1', 'PAK3', 'EGF', 'ULK1', 'LAMA5', 'MAP2K2', 'PRKAG1', 'LAMC2', 'IL6', 'CSF1', 'COL4A5', 'EGFR', 'ITGA6', 'BRCA1', 'PDGFB', 'AKT3', 'SOS1', 'ATG13', 'AKT1S1', 'MDM2', 'CDKN1A', 'EFNA1', 'FGFR2', 'ITGA3', 'MAPK10', 'PAK2', 'PRKAA1'}, number: 72
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'CCNE1', 'PDK1', 'NFKB1', 'CDK4', 'DVL2', 'PIK3CD', 'FOSL1', 'PLAU', 'INSR', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'WNT5B', 'BRCA1', 'AKT3', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'SHC1'}, number: 25
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'IL1B', 'MAP3K1', 'CCL2', 'MAP2K3', 'JUN', 'MAP2K4', 'NFKB1'}, number: 9
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CXXC4', 'HBEGF', 'SLC2A1', 'CTBP1', 'DEPTOR', 'CCNE1', 'DKK1', 'SFRP2', 'NFKB1', 'DVL2', 'PRKAG2', 'PRKAB1', 'FZD7', 'PLCB4', 'PRKAB2', 'TGFA', 'EPHA2', 'PRKAA2', 'FRAT2', 'FOSL1', 'PLAU', 'CSNK2A1', 'CDK2', 'FZD1', 'CCND1', 'ROR1', 'FRAT1', 'CSNK1A1', 'JUN', 'ULK1', 'PRKAG1', 'WNT5B', 'BRCA1', 'PDGFB', 'AKT1S1', 'CCL2', 'CDKN1A', 'MAPK10', 'PRKAA1', 'FZD2'}, number: 40
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'HBEGF', 'SLC2A1', 'PIK3CA', 'CCNE1', 'PDK1', 'NFKB1', 'IL1B', 'CDK4', 'DVL2', 'PIK3CD', 'DDIT3', 'TGFA', 'EPHA2', 'FOSL1', 'PLAU', 'INSR', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'WNT5B', 'BRCA1', 'PDGFB', 'AKT3', 'SOS1', 'MDM2', 'CDKN1A', 'MAPK10', 'SHC1'}, number: 32
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'PRKAA1', 'NGF', 'BDNF', 'NFKB1', 'RPS6KA3', 'MKNK1', 'TSC1', 'PRKAA2', 'CDH2', 'CSNK2A1', 'MAP3K1', 'JUN', 'MAP2K2', 'SOS1', 'RPS6KA5', 'STAT1', 'MAPK10', 'SHC1'}, number: 19
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'PRKAA1', 'NGF', 'BDNF', 'SLC2A1', 'PIK3CA', 'NFKB1', 'IL1B', 'RPS6KA3', 'PLCB4', 'JAK1', 'PRKAA2', 'CDH2', 'INSR', 'CSNK2A1', 'FGF2', 'MAP3K1', 'JUN', 'MAP2K2', 'IL6', 'RPS6KA5', 'STAT1', 'MAPK10', 'SHC1'}, number: 24
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC1', 'EPHA2', 'PRKAG2', 'PRKAA2', 'PDGFB', 'PIK3CD', 'INSR', 'PRKAB1', 'HBEGF', 'CDKN1A', 'SLC2A1', 'TGFA', 'PIK3CA', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 16
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'PDGFC', 'COL4A4', 'NGF', 'COL4A2', 'LAMA1', 'FGFR1', 'PDGFD', 'SLC2A1', 'PIK3CA', 'FN1', 'VEGFA', 'LAMC3', 'LAMB3', 'LAMA2', 'ITGB3', 'PDGFA', 'FGFR4', 'PIK3CD', 'KITLG', 'EFNA5', 'FGFR3', 'COL4A1', 'DDIT3', 'JAK1', 'TSC1', 'EPHA2', 'PRKAA2', 'ITGA2', 'MET', 'CTNNA1', 'INSR', 'FGF2', 'FZD1', 'LAMB1', 'EGF', 'ULK1', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'WNT5B', 'CSF1', 'EGFR', 'ITGA6', 'PDGFB', 'AKT3', 'SOS1', 'AKT1S1', 'MDM2', 'CDKN1A', 'EFNA1', 'FGFR2', 'ITGA3', 'STAT1', 'PRKAA1'}, number: 57
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMC1', 'HRAS', 'PDGFC', 'COL4A4', 'NGF', 'BDNF', 'COL4A2', 'LAMA1', 'FGFR1', 'PDGFD', 'SLC2A1', 'PIK3CA', 'FN1', 'VEGFA', 'LAMC3', 'LAMB3', 'CCNE1', 'LAMA2', 'NFKB1', 'CDK4', 'ITGB3', 'PDGFA', 'FGFR4', 'PIK3CD', 'KITLG', 'EFNA5', 'FGFR3', 'COL4A1', 'TGFA', 'COL4A3', 'JAK1', 'TSC1', 'EPHA2', 'PRKAA2', 'ITGA2', 'MET', 'INSR', 'CDK2', 'FGF2', 'CCND1', 'LAMB1', 'EGF', 'ULK1', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'COL4A5', 'EGFR', 'ITGA6', 'BRCA1', 'PDGFB', 'AKT3', 'SOS1', 'AKT1S1', 'MDM2', 'CDKN1A', 'EFNA1', 'FGFR2', 'ITGA3', 'PRKAA1'}, number: 62
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'NGF', 'BDNF', 'PIK3CD', 'INSR', 'FGF2', 'PLCB4', 'STAT1', 'SLC2A1', 'PIK3CA', 'JAK1', 'NFKB1'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR4', 'FGFR1', 'SLC2A1'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK10', 'NFKB1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'SOS1', 'PAK1', 'STAT1', 'PIK3CA', 'JUN', 'SHC1', 'JAK1', 'NFKB1'}, number: 10
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'GAB2', 'JAK2', 'ERBB2', 'SOS1', 'SHC1', 'STAT5A', 'PIK3R2', 'PAK1', 'JUN', 'STAT1', 'CBL', 'PTPN11', 'PIK3R1', 'RAC1', 'STAT3', 'JAK1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PAK1', 'RAC1', 'STAT3'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'IRS1', 'ERBB2', 'SOS1', 'JUN', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 11
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'ERBB2', 'SOS1', 'STAT5A', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 9
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'NFKBIA', 'SOS1', 'PAK1', 'PIK3R2', 'JUN', 'STAT1', 'PIK3CA', 'PTPN11', 'PIK3R1', 'FLNA', 'RAC1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'IRS1', 'ERBB2', 'SOS1', 'JUN', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 11
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'FYN'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'GAB2', 'JAK2', 'IRS1', 'SOS1', 'PAK1', 'PIK3R2', 'PIK3CA', 'PTPN11', 'PIK3R1', 'RAC1', 'SHC1', 'JAK1', 'NFKB1'}, number: 16
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'IRS1', 'ERBB2', 'SOS1', 'JUN', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'SHC1', 'NFKB1'}, number: 11
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'NFKBIA', 'PIK3R2', 'PTPN11', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'RAC1', 'NFKB1'}, number: 3
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'RAC1', 'IRS1', 'ERBB2', 'SOS1', 'JUN', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'FYN', 'SHC1', 'NFKB1'}, number: 12
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'RAC1', 'FYN', 'NFKB1', 'RELA', 'GAB2', 'STAT5A', 'PIK3R2', 'STAT3', 'IRS1', 'IRS2', 'NFKBIA', 'PTPN11', 'SIRPA', 'JUN', 'MAP2K2', 'JAK2', 'SOS1', 'STAT1', 'PIK3R1', 'SHC1'}, number: 21
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'PIK3CA', 'RAC1', 'FYN', 'NFKB1', 'RELA', 'STAT5A', 'PIK3R2', 'STAT3', 'JAK1', 'IRS1', 'IRS2', 'NFKBIA', 'PTPN11', 'SIRPA', 'JUN', 'MAP2K2', 'JAK2', 'STAT1', 'PIK3R1', 'SHC1'}, number: 21
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IRS2', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'FYN'}, number: 5
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'JAK2', 'SOS1', 'STAT5A', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'STAT3', 'JAK1', 'IRS1'}, number: 13
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'RELA', 'JAK2', 'IRS1', 'SOS1', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'RAC1', 'JAK1', 'NFKB1'}, number: 13
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'NFKB1', 'STAT1', 'PIK3CA', 'STAT3', 'JAK1', 'IRS1'}, number: 6
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NEDD4'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'KIF23'}, number: 1
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'OCRL'}, number: 1
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAD1L1', 'MAD2L1'}, number: 2
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CDC25B', 'STMN1', 'MAPK13'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'RBBP4', 'CDK2', 'BARD1', 'MDM2', 'CDKN1A', 'CCND1', 'CCNE1'}, number: 8
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CDC25B', 'STMN1', 'MAPK13'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CDC25B', 'STMN1', 'MAPK13'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'ABL1', 'STMN1'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'STMN1', 'CDK1'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CDC25B', 'STMN1', 'MAPK13'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'MCM7', 'CDC25A', 'CCNB1', 'CDK1', 'RPA2', 'CCNB2', 'ABL1', 'CDK2', 'CHEK1', 'PRKDC', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 18
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'E2F3', 'CDKN1A', 'CCND1', 'CDK6'}, number: 5
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CDC25B', 'STMN1', 'MAPK13'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'ABL1', 'CDK2', 'CHEK1', 'PRKDC', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 17
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CCNB1', 'CCNB2', 'RPA1', 'RFC5', 'CCNE1', 'CDK4', 'CDK1', 'RFC3', 'RPA2', 'CHEK1', 'CDKN1B', 'POLE', 'CDK6', 'FANCG', 'MSH6', 'CDK2', 'RPA3', 'CCND1', 'CCNE2', 'RFC4', 'CDC25A', 'ABL1', 'PCNA', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 27
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'ABL1', 'CDK2', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 10
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'ABL1', 'CDK2', 'CHEK1', 'PRKDC', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 17
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'FANCG', 'CDC25A', 'RFC3', 'RPA2', 'MSH6', 'RPA1', 'CDK2', 'PCNA', 'CHEK1', 'PRKDC', 'RPA3', 'CDKN1A', 'CCND1', 'POLE', 'RFC5', 'CCNE1', 'RFC4'}, number: 18
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'ABL1', 'CDK2', 'CHEK1', 'PRKDC', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 17
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNA2', 'CCNB1'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'MDM2'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'MDM2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1'}, number: 9
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PRKAA1'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKAA1'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NR1H3', 'PRKAA1', 'PPARA'}, number: 3
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PRKAA1'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKAA1'}, number: 1
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SREBF1', 'LDLR', 'HMGCR', 'PRKAA1'}, number: 4
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'HMGCR', 'NR1H3', 'ABCA1', 'SREBF1', 'PRKAA1', 'PPARA'}, number: 7
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SREBF1', 'PRKAA1'}, number: 2
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'IL6', 'INSR', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'GSR', 'SOD1', 'NFKB1', 'TXNRD1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'GSR', 'SOD1', 'NFKB1', 'TXNRD1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'GSR', 'SOD1', 'NFKB1', 'TXNRD1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'LDLR', 'INSR', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'LDLR', 'INSR', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GPX3', 'TXN', 'INSR', 'TXNRD3', 'GSR', 'PRDX1', 'TXNRD1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'INSR', 'RELA', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR', 'INSR', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'CCL2', 'RELA', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'TXNRD1', 'TXNRD3', 'GSR', 'CCL2', 'SOD1', 'ICAM1', 'PRDX1', 'NFKB1', 'SERPINE1', 'TXN'}, number: 13
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IL1B', 'GPX3', 'TXNRD1', 'INSR', 'TXNRD3', 'GSR', 'LDLR', 'PRDX1', 'NFKB1', 'TXN'}, number: 10
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'GSR', 'SOD1', 'NFKB1', 'TXNRD1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'INSR', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GPX3', 'TXN', 'INSR', 'TXNRD3', 'GSR', 'LDLR', 'PRDX1', 'TXNRD1'}, number: 8
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ABCA1', 'IL6', 'SERPINE1', 'INSR'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'INSR', 'RELA', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'IL6', 'INSR', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'GSR', 'SOD1', 'NFKB1', 'TXNRD1'}, number: 7
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP3K14', 'MYD88', 'NFKB1', 'IL1B', 'MAP2K6', 'RELA', 'IL1RAP', 'MAP3K7', 'TGFB2', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'JUN', 'IL6', 'TOLLIP', 'ECSIT', 'MAP2K3'}, number: 19
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'MAP2K6', 'IL6', 'MAP3K1', 'MAP2K3', 'JUN', 'NFKB1'}, number: 7
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP3K14', 'MYD88', 'NFKB1', 'IL1B', 'MAP2K6', 'RELA', 'IL1RAP', 'MAP3K7', 'TGFB2', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'JUN', 'IL6', 'TOLLIP', 'ECSIT', 'MAP2K3'}, number: 19
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP3K14', 'MYD88', 'NFKB1', 'IL1B', 'MAP2K6', 'RELA', 'IL1RAP', 'MAP3K7', 'TGFB2', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'JUN', 'IL6', 'TOLLIP', 'ECSIT', 'MAP2K3'}, number: 19
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP3K1', 'JUN'}, number: 2
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP3K14', 'MYD88', 'NFKB1', 'IL1B', 'MAP2K6', 'RELA', 'IL1RAP', 'MAP3K7', 'TGFB2', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'JUN', 'IL6', 'TOLLIP', 'ECSIT', 'MAP2K3'}, number: 19
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAP3K1', 'MAP3K7', 'JUN', 'NFKB1'}, number: 4
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP3K14', 'MYD88', 'NFKB1', 'IL1B', 'MAP2K6', 'RELA', 'IL1RAP', 'MAP3K7', 'TGFB2', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'IRAK3', 'JUN', 'IL6', 'TOLLIP', 'ECSIT', 'MAP2K3'}, number: 19
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'MAP3K1', 'MAP3K7', 'JUN', 'NFKB1'}, number: 5
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAP3K1', 'MAP3K7', 'JUN', 'NFKB1'}, number: 4
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'MAP2K6', 'RELA', 'MAP3K14', 'IL1RAP', 'IL1A', 'NFKBIA', 'IL1R1', 'TOLLIP', 'MAP3K1', 'MAP3K7', 'ECSIT', 'MAP2K3', 'MYD88', 'IRAK3', 'JUN', 'NFKB1'}, number: 17
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAP3K7', 'TGFB2', 'JUN', 'NFKB1'}, number: 4
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IL1B', 'TGFB2', 'MAP3K1', 'MAP3K7', 'JUN', 'NFKB1'}, number: 6
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'MAP3K1', 'JUN', 'NFKB1'}, number: 5
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'TGFB2', 'IL6', 'RELA', 'IL1A', 'NFKBIA', 'IL1R1', 'MAP3K1', 'JUN', 'NFKB1'}, number: 10
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL1B', 'TGFB2', 'IL6', 'IL1A', 'IL1R1', 'NFKB1'}, number: 6
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Signal Transduction Through IL1R WP4496, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMC1', 'CASP8', 'LAMC2', 'RELA', 'PIK3R1', 'NFKBIA', 'PIK3CD', 'TRAF3', 'AKT3', 'GADD45A', 'PIK3R2', 'PIK3CA', 'LAMB1', 'FN1', 'LAMA5', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LAMC1', 'COL4A4', 'COL4A2', 'LAMA1', 'PIK3CA', 'FN1', 'LAMB3', 'LAMC3', 'CCNE1', 'NFKB1', 'LAMA2', 'CDK4', 'PIK3CD', 'COL4A1', 'COL4A3', 'ITGA2', 'CDK2', 'CCND1', 'LAMB1', 'LAMA5', 'LAMC2', 'ITGA6', 'COL4A5', 'AKT3', 'CDKN1A', 'ITGA3'}, number: 26
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMC1', 'CASP8', 'LAMC2', 'RELA', 'PIK3R1', 'NFKBIA', 'PIK3CD', 'TRAF3', 'AKT3', 'GADD45A', 'PIK3R2', 'PIK3CA', 'LAMB1', 'FN1', 'LAMA5', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMC1', 'CASP8', 'LAMC2', 'RELA', 'PIK3R1', 'NFKBIA', 'PIK3CD', 'TRAF3', 'AKT3', 'GADD45A', 'PIK3R2', 'PIK3CA', 'LAMB1', 'FN1', 'LAMA5', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PIK3R1', 'PIK3R2'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMC1', 'CASP8', 'LAMC2', 'RELA', 'PIK3R1', 'NFKBIA', 'PIK3CD', 'TRAF3', 'AKT3', 'GADD45A', 'PIK3R2', 'PIK3CA', 'LAMB1', 'FN1', 'LAMA5', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'PIK3CD', 'AKT3', 'CDK2', 'GADD45A', 'CDKN1B', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9', 'NFKB1'}, number: 18
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'E2F3', 'FHIT', 'RXRA', 'PIK3CD', 'BID', 'AKT3', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'CASP9', 'GADD45A'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMC1', 'CASP8', 'LAMC2', 'RELA', 'PIK3R1', 'NFKBIA', 'PIK3CD', 'TRAF3', 'AKT3', 'GADD45A', 'PIK3R2', 'PIK3CA', 'LAMB1', 'FN1', 'LAMA5', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'PIK3CD', 'AKT3', 'CDK2', 'GADD45A', 'CDKN1B', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9', 'NFKB1'}, number: 18
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9', 'GADD45A'}, number: 12
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA', 'RXRA'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'LAMC1', 'COL4A4', 'COL4A2', 'LAMA1', 'PIK3CA', 'FN1', 'LAMB3', 'LAMC3', 'CCNE1', 'NFKB1', 'LAMA2', 'CDK4', 'RELA', 'PIK3CD', 'COL4A1', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'COL4A3', 'ITGA2', 'CDK2', 'BCL2L1', 'CCND1', 'LAMB1', 'CCNE2', 'LAMA5', 'LAMC2', 'ITGA6', 'COL4A5', 'AKT3', 'CDKN1A', 'ITGA3', 'PIK3R1'}, number: 34
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'PIK3CD', 'AKT3', 'CDK2', 'GADD45A', 'CDKN1B', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3CA', 'PIK3R1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9', 'NFKB1'}, number: 18
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3R2', 'PIK3R1', 'NFKB1'}, number: 5
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDK2', 'GADD45A', 'CDKN1A', 'CCND1', 'RXRA', 'CCNE1', 'NFKB1'}, number: 7
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3CA', 'CCNE1', 'NFKB1', 'CDK4', 'PIK3CD', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'CASP8', 'CDK2', 'CCND1', 'RXRA', 'CCNE2', 'GADD45A', 'BID', 'AKT3', 'CDKN1A', 'PIK3R1'}, number: 19
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3R2', 'PIK3R1', 'NFKB1'}, number: 5
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'NFKB1'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA', 'PIK3CD', 'PIK3R2', 'CDKN1A', 'PIK3CA', 'PIK3R1'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMC1', 'COL4A4', 'COL4A2', 'LAMA1', 'PIK3CA', 'FN1', 'LAMB3', 'LAMC3', 'LAMA2', 'PIK3CD', 'COL4A1', 'CDKN1B', 'PIK3R2', 'CASP9', 'ITGA2', 'RXRA', 'LAMB1', 'LAMA5', 'GADD45A', 'LAMC2', 'ITGA6', 'AKT3', 'CDKN1A', 'ITGA3', 'PIK3R1'}, number: 25
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMC1', 'COL4A4', 'COL4A2', 'LAMA1', 'PIK3CA', 'FN1', 'LAMB3', 'LAMC3', 'CCNE1', 'NFKB1', 'LAMA2', 'CDK4', 'RELA', 'PIK3CD', 'COL4A1', 'CDKN1B', 'PIK3R2', 'CDK6', 'CASP9', 'COL4A3', 'ITGA2', 'CDK2', 'BCL2L1', 'CCND1', 'LAMB1', 'CCNE2', 'LAMA5', 'LAMC2', 'ITGA6', 'COL4A5', 'AKT3', 'CDKN1A', 'ITGA3', 'PIK3R1'}, number: 34
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'PIK3CD', 'NFKB1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Overview WP4725, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SHMT1'}, number: 1
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'SHMT1'}, number: 1
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'PRKAB1', 'PRKAB2', 'PIK3CA', 'PRKAA1', 'PRKAG1'}, number: 7
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CA', 'LDLR'}, number: 2
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CA', 'LDLR'}, number: 2
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'PRKAB1', 'PRKAB2', 'PIK3CA', 'PRKAA1', 'PRKAG1'}, number: 7
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CA', 'LDLR'}, number: 2
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'DBI', 'PRKAB1', 'PRKAB2', 'PPARG', 'PRKAA1', 'PRKAG1'}, number: 8
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3CA', 'LDLR'}, number: 2
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PRKAA2', 'PRKAA1'}, number: 2
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PIK3CA', 'PRKAA2', 'PRKAA1'}, number: 3
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'HMGCR', 'PRKAB1', 'SREBF1', 'LDLR', 'PRKAB2', 'PIK3CA', 'PRKAA1', 'PRKAG1'}, number: 10
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PRKAA2', 'HMGCS1', 'FDFT1', 'PPARG', 'HMGCR', 'NR1H2', 'SREBF1', 'PIK3CA', 'FDPS', 'PRKAA1'}, number: 10
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'SREBF1', 'PRKAA2', 'PRKAA1'}, number: 4
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'BRAF', 'PDK1'}, number: 2
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ME1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PDK1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ME1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ME1', 'PDK1'}, number: 2
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'BRAF'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ME1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TCA Cycle In Senescence WP5050, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'JUND', 'PIK3R1', 'TGFBR2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'TGFBR1', 'MAP2K3', 'PAK2', 'FN1', 'RAC1', 'MAP2K4'}, number: 15
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAP2K4', 'ITGA2', 'ITGB3', 'MET', 'ATF3', 'SOS1', 'PAK2', 'CDKN1A', 'MAP2K3', 'CCND1', 'FN1', 'JUN', 'SHC1', 'PDK1'}, number: 16
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'JUND', 'PIK3R1', 'TGFBR2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'TGFBR1', 'MAP2K3', 'PAK2', 'FN1', 'RAC1', 'MAP2K4'}, number: 15
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'JUND', 'PIK3R1', 'TGFBR2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'TGFBR1', 'MAP2K3', 'PAK2', 'FN1', 'RAC1', 'MAP2K4'}, number: 15
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'JUND', 'ITCH', 'SOS1', 'CAV1', 'JUN', 'PIK3R2', 'BCAR1', 'PIK3R1', 'RAC1', 'SHC1', 'HGS'}, number: 12
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PARD6A', 'RAC1', 'CDK1'}, number: 3
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'JUND', 'PIK3R1', 'TGFBR2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'TGFBR1', 'MAP2K3', 'PAK2', 'FN1', 'RAC1', 'MAP2K4'}, number: 15
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK1', 'SMAD3', 'CCNB2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'RAC1', 'SHC1', 'PDK1'}, number: 13
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'SOS1', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'PDK1'}, number: 7
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'JUND', 'PIK3R1', 'TGFBR2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'TGFBR1', 'MAP2K3', 'PAK2', 'FN1', 'RAC1', 'MAP2K4'}, number: 15
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK1', 'SMAD3', 'CCNB2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'RAC1', 'SHC1', 'PDK1'}, number: 13
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK1', 'CCNB2', 'RBX1', 'CDKN1A', 'CCND1'}, number: 5
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1', 'TGFBR2'}, number: 2
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'ETS1', 'ITGA2', 'ITGB3', 'PIK3R1', 'MET', 'SOS1', 'PAK2', 'PIK3R2', 'CDKN1A', 'CCND1', 'FN1', 'RAC1', 'SHC1'}, number: 14
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK1', 'SMAD3', 'CCNB2', 'SOS1', 'MAP3K7', 'JUN', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'RAC1', 'SHC1', 'PDK1'}, number: 13
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAP3K7', 'PIK3R2', 'MAP2K3', 'PIK3R1', 'JUN', 'MAP2K4'}, number: 8
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUNB', 'TGFBR2', 'RBX1', 'MAP3K7', 'JUN', 'CDKN1A', 'CCND1', 'RAC1'}, number: 8
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'CDK1', 'CCNB2', 'TGFBR2', 'SOS1', 'RBX1', 'MAP3K7', 'JUN', 'PIK3R2', 'CDKN1A', 'CCND1', 'PIK3R1', 'RAC1', 'SHC1', 'PDK1'}, number: 15
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'RAC1', 'SOS1', 'PIK3R2', 'PIK3R1', 'JUN', 'SHC1'}, number: 7
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'SMAD3', 'TGFBR2', 'SMAD7', 'TGFBR1', 'JUN', 'PIK3R2', 'PIK3R1', 'RAC1', 'SHC1'}, number: 10
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2', 'RBX1', 'PIK3R2', 'CDKN1A', 'PIK3R1'}, number: 5
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'ITGA2', 'ITGB3', 'SMAD3', 'MET', 'PIK3R1', 'SOS1', 'PIK3R2', 'CDKN1A', 'FN1'}, number: 10
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'ITGA2', 'ITGB3', 'PIK3R1', 'MET', 'SOS1', 'PIK3R2', 'CDKN1A', 'CCND1', 'FN1', 'RAC1'}, number: 11
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TGFBR1', 'TGFBR2', 'SMAD7', 'SMAD3'}, number: 4
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'JUNB'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'MAP2K6', 'HRAS', 'TAB2', 'MAP3K14', 'TBK1', 'NFKBIA', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'TNFRSF1A', 'MAP3K5', 'MAP2K3', 'MAP3K8', 'RAC1', 'MAP2K4', 'NFKB1'}, number: 18
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'SOS1', 'CSNK2A1', 'MAP3K1', 'MAP3K5', 'MAP2K3', 'JUN', 'MAP2K4', 'NFKB1'}, number: 10
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'MAP2K6', 'HRAS', 'TAB2', 'MAP3K14', 'TBK1', 'NFKBIA', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'TNFRSF1A', 'MAP3K5', 'MAP2K3', 'MAP3K8', 'RAC1', 'MAP2K4', 'NFKB1'}, number: 18
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'MAP2K6', 'HRAS', 'TAB2', 'MAP3K14', 'TBK1', 'NFKBIA', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'TNFRSF1A', 'MAP3K5', 'MAP2K3', 'MAP3K8', 'RAC1', 'MAP2K4', 'NFKB1'}, number: 18
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'RAC1', 'SOS1', 'MAP3K1', 'JUN'}, number: 5
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'MAP2K6', 'HRAS', 'TAB2', 'MAP3K14', 'TBK1', 'NFKBIA', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'TNFRSF1A', 'MAP3K5', 'MAP2K3', 'MAP3K8', 'RAC1', 'MAP2K4', 'NFKB1'}, number: 18
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CASP8', 'HRAS', 'BID', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'RAC1', 'CASP9', 'NFKB1'}, number: 10
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'HRAS', 'BID', 'SOS1', 'CASP9'}, number: 5
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'MAP2K6', 'HRAS', 'TAB2', 'MAP3K14', 'TBK1', 'NFKBIA', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'TNFRSF1A', 'MAP3K5', 'MAP2K3', 'MAP3K8', 'RAC1', 'MAP2K4', 'NFKB1'}, number: 18
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CASP8', 'HRAS', 'BID', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'RAC1', 'CASP9', 'NFKB1'}, number: 10
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP8', 'BID', 'CASP9'}, number: 3
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXN', 'HSP90AA1'}, number: 2
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'HSP90AA1', 'SOS1', 'BCL2L1', 'CDC37', 'RAC1', 'CASP9', 'NFKB1'}, number: 8
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CASP8', 'HRAS', 'BID', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'RAC1', 'CASP9', 'NFKB1'}, number: 10
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'TAB2', 'MAP3K14', 'NFKBIE', 'NFKBIA', 'MAP3K1', 'MAP3K7', 'MAP2K3', 'JUN', 'MAP2K4', 'NFKB1'}, number: 11
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RAC1', 'HSP90AA1', 'TXN', 'CSNK2A1', 'MAP3K7', 'JUN', 'NFKB1'}, number: 7
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CASP8', 'HRAS', 'HSP90AA1', 'BID', 'TXN', 'SOS1', 'MAP3K1', 'MAP3K7', 'JUN', 'RAC1', 'CASP9', 'NFKB1'}, number: 12
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'NFKBIA', 'SOS1', 'CSNK2A1', 'MAP3K1', 'JUN', 'RAC1', 'NFKB1'}, number: 8
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'NFKBIA', 'CSNK2A1', 'MAP3K1', 'TNFRSF1A', 'JUN', 'GLUL', 'RAC1', 'NFKB1'}, number: 9
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXN', 'HSP90AA1'}, number: 2
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'HSP90AA1', 'SOS1', 'CDC37', 'CASP9'}, number: 5
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'HSP90AA1', 'SOS1', 'BCL2L1', 'CDC37', 'RAC1', 'CASP9', 'NFKB1'}, number: 8
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'TNFRSF1A', 'GLUL', 'NFKB1'}, number: 3
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PRKCD', 'EGFR', 'JUN', 'STAT1', 'FN1', 'RAC1', 'NFKB1'}, number: 9
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'EGFR', 'CDK2', 'CDH1', 'MDK', 'STAT1', 'CCND1', 'CDKN2A', 'FN1', 'JUN', 'CCNE1', 'NFKB1'}, number: 12
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PRKCD', 'EGFR', 'JUN', 'STAT1', 'FN1', 'RAC1', 'NFKB1'}, number: 9
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PRKCD', 'EGFR', 'JUN', 'STAT1', 'FN1', 'RAC1', 'NFKB1'}, number: 9
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'RAC1', 'EGFR', 'PRKCD', 'JAK2', 'STAT1', 'PIK3R1', 'JUN'}, number: 8
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PRKCD', 'EGFR', 'JUN', 'STAT1', 'FN1', 'RAC1', 'NFKB1'}, number: 9
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CHEK1', 'CDKN1B', 'JUN', 'CCND1', 'CDKN2A', 'PIK3R1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 11
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'PRKCA', 'EGFR', 'CCND1', 'CDKN2A', 'PIK3R1'}, number: 6
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PRKCD', 'EGFR', 'JUN', 'STAT1', 'FN1', 'RAC1', 'NFKB1'}, number: 9
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CHEK1', 'CDKN1B', 'JUN', 'CCND1', 'CDKN2A', 'PIK3R1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 11
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CHEK1', 'CDKN1B', 'CCND1', 'CCNE1'}, number: 6
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'PRKCA', 'PIK3R1', 'EGFR', 'JAK2', 'CDK2', 'CDKN1B', 'CCND1', 'FN1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 12
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CHEK1', 'CDKN1B', 'JUN', 'CCND1', 'CDKN2A', 'PIK3R1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 11
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PIK3R1', 'JUN', 'NFKB1'}, number: 3
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'CDK2', 'CHEK1', 'JUN', 'CCND1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 8
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'PRKCA', 'CDK2', 'CHEK1', 'CDKN1B', 'JUN', 'CCND1', 'CDKN2A', 'PIK3R1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 12
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAC1', 'PRKCD', 'JAK2', 'STAT1', 'PIK3R1', 'JUN', 'NFKB1'}, number: 7
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'RAC1', 'PRKCD', 'JAK2', 'STAT1', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3R1', 'EGFR', 'JAK2', 'CDKN1B', 'STAT1', 'FN1'}, number: 6
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'PRKCA', 'PIK3R1', 'EGFR', 'JAK2', 'CDK2', 'CDKN1B', 'CCND1', 'FN1', 'RAC1', 'CCNE1', 'NFKB1'}, number: 12
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA', 'STAT1', 'NFKB1'}, number: 3
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TSC1', 'PRKAG2', 'PRKAA2', 'PRKAB1', 'AKT1S1', 'PRKAB2', 'PRKAA1', 'ULK1', 'PRKAG1'}, number: 9
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TSC1', 'PRKCA', 'PRKAG2', 'PRKAA2', 'ULK1', 'PRKAB1', 'AKT1S1', 'PRKAB2', 'RAC1', 'PRKAA1', 'DDIT4', 'PRKAG1'}, number: 12
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RAC1'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKAG2', 'PRKAA2', 'ULK1', 'PRKAB1', 'AKT1S1', 'PRKAB2', 'RAC1', 'PRKAA1', 'DDIT4', 'PRKAG1'}, number: 11
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'RAC1'}, number: 2
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'TSC1', 'RAC1', 'PRKAA1', 'PRKAA2'}, number: 4
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'RAC1', 'PRKAA1', 'PRKAA2'}, number: 4
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC1', 'PRKCA', 'PRKAG2', 'PRKAA2', 'HMGCR', 'PRKAB1', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 9
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TSC1', 'PRKAA2', 'HMGCR', 'DDIT4', 'AKT1S1', 'PRKAA1', 'ULK1'}, number: 7
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TSC1', 'PRKCA', 'PRKAA2', 'ULK1', 'AKT1S1', 'RAC1', 'PRKAA1', 'DDIT4'}, number: 8
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Target Of Rapamycin Signaling WP1471, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'PRKACB', 'MAPK12', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TSC1', 'RPS6KA3', 'HRAS', 'PRKAG2', 'PRKAA2', 'ACTG1', 'PRKAB1', 'SOS1', 'AKT1S1', 'FGFR1', 'MAP3K5', 'PRKAB2', 'MAP2K3', 'PRKAA1', 'PRKAG1'}, number: 15
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'PRKACB', 'MAPK12', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'PRKACB', 'MAPK12', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'SOS2', 'SOS1'}, number: 4
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'PRKACB', 'MAPK12', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'SOS2', 'SOS1'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'HRAS', 'SOS2', 'SOS1'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'PRKACB', 'MAPK12', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'SOS2', 'SOS1'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TSC1', 'HRAS', 'PRKAG2', 'PRKAA2', 'CREB5', 'SOS1', 'CREB3', 'PRKAB1', 'AKT1S1', 'FGFR1', 'SOS2', 'PRKACB', 'PRKAB2', 'CREB3L4', 'PRKAA1', 'PRKAG1'}, number: 16
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'SOS2', 'SOS1'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K3'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2', 'ACSL1', 'PRKAB1', 'AKT1S1', 'CPT2', 'PRKAB2', 'PPARG', 'PRKAA1', 'PRKAG1'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'SOS2', 'SOS1'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'TSC1', 'RPS6KA3', 'HRAS', 'PRKAA2', 'SOS1', 'FRS2', 'PRKAA1'}, number: 7
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'PRKAA2', 'FRS2', 'PRKAA1'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC1', 'PRKAG2', 'PRKAA2', 'PRKAB1', 'PRKACB', 'PRKAB2', 'PRKAA1', 'PRKAG1'}, number: 8
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TSC1', 'HRAS', 'PRKAA2', 'CREB5', 'ACSL1', 'CREB3', 'SOS1', 'AKT1S1', 'FGFR1', 'CREB3L4', 'PPARG', 'PRKAA1'}, number: 12
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TSC1', 'HRAS', 'PRKAA2', 'CREB5', 'SOS1', 'CREB3', 'AKT1S1', 'FGFR1', 'SOS2', 'CREB3L4', 'PRKAA1'}, number: 11
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PIK3CA', 'PIK3R1', 'GNA12'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'CDK4', 'HRAS', 'CDK2', 'STAT1', 'MAP2K3', 'PIK3CA', 'CCNE1', 'JAK1'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PIK3CA', 'PIK3R1', 'GNA12'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PIK3CA', 'PIK3R1', 'GNA12'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'JAK2', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'PIK3R1', 'RALGDS', 'STAT3', 'JAK1'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'GNAQ', 'STAT3'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PIK3CA', 'PIK3R1', 'GNA12'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDK2', 'CDKN1B', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CCNE1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'HRAS', 'BRAF', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 7
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'MAP2K3', 'PIK3CA', 'PIK3R1', 'GNA12'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDK2', 'CDKN1B', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CCNE1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'APEX1', 'CDK2', 'CDKN1B', 'RAP1A', 'CCNE1'}, number: 6
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'HRAS', 'JAK2', 'CDK2', 'CDKN1B', 'PIK3R2', 'RAP1A', 'PIK3CA', 'PIK3R1', 'RALGDS', 'CCNE1', 'JAK1'}, number: 12
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDK2', 'CDKN1B', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CCNE1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'PIK3R1', 'PIK3R2', 'MAP2K3'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APEX1', 'CCNE1', 'RAP1A', 'CDK2'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDK2', 'CDKN1B', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CCNE1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'JAK2', 'BRAF', 'PIK3R2', 'STAT1', 'RAP1A', 'PIK3R1', 'STAT3'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'JAK2', 'PIK3R2', 'STAT1', 'RAP1A', 'PIK3CA', 'PIK3R1', 'STAT3', 'JAK1'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3CA', 'PIK3R1', 'PIK3R2'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'JAK2', 'CDKN1B', 'PIK3R2', 'STAT1', 'PIK3CA', 'PIK3R1', 'STAT3', 'JAK1'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'HRAS', 'JAK2', 'CDK2', 'CDKN1B', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'CCNE1', 'JAK1'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'STAT1', 'STAT3', 'JAK1'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GSR', 'GPX3', 'SOD1', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GSR', 'GPX3', 'SOD1', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GSR', 'GPX3', 'SOD1', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'DNM1'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GCLM', 'GPX3', 'GSR', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSS', 'GPX3', 'GCLM', 'GCLC', 'GSR', 'SOD1'}, number: 6
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'GPX3', 'GSR', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GSR', 'GPX3', 'SOD1', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PSAT1', 'SHMT1'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GCLM', 'GPX3', 'GSR', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PSAT1', 'SHMT1'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GSR', 'GPX3', 'SOD1', 'GCLC'}, number: 4
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NF1'}, number: 1
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TEAD4', 'TEAD1', 'LATS2', 'TEAD3', 'LATS1'}, number: 5
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NF1'}, number: 1
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NF1'}, number: 1
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NF1'}, number: 1
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NF1'}, number: 1
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NF1'}, number: 1
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Transcription Co Factors SKI And SKIL Protein Partners WP4533, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PIK3CA', 'PRKCA', 'EPHB2'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'NQO1', 'AIMP2', 'HMOX1', 'PIK3CA', 'CEBPB', 'KEAP1'}, number: 12
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3CA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'HMOX1', 'NQO1', 'KEAP1'}, number: 7
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'NQO1', 'AIMP2', 'HMOX1', 'PIK3CA', 'CEBPB', 'KEAP1'}, number: 12
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'NQO1', 'AIMP2', 'HMOX1', 'PIK3CA', 'CEBPB', 'KEAP1'}, number: 12
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3CA', 'CEBPB'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PIK3CA', 'PRKCA'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PYCR1', 'GLUD1', 'ALDH18A1'}, number: 3
Term: Urea Cycle And Metabolism Of Amino Groups WP497, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'PRKCD', 'SRF', 'MAPK12', 'PIK3R2', 'RAP1A', 'NFKBIA', 'PAK1', 'PTPN11', 'JUN', 'MAP2K4', 'CACNA2D1', 'MAP2K2', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 31
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'PRKAA1', 'CCN2', 'HBEGF', 'MAP3K5', 'PIK3CA', 'FN1', 'VEGFA', 'DKK1', 'NFKB1', 'MAP2K6', 'MKNK1', 'NDRG1', 'ITGB3', 'ACTG1', 'TEAD4', 'EPHA2', 'PRKAA2', 'AMOT', 'CTNNA1', 'PLAU', 'PAK1', 'CCND1', 'JUN', 'MAP2K4', 'MAP2K2', 'RPS6KA5', 'AKT1S1', 'CCL2', 'PAK2', 'STAT1', 'MDM2', 'MAP2K3', 'SHC1'}, number: 34
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'SOD2', 'NFKB1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'SOD2', 'NFKB1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'PRKCD', 'SRF', 'MAPK12', 'PIK3R2', 'RAP1A', 'NFKBIA', 'PAK1', 'PTPN11', 'JUN', 'MAP2K4', 'CACNA2D1', 'MAP2K2', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 31
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'PRKCD', 'SRF', 'MAPK12', 'PIK3R2', 'RAP1A', 'NFKBIA', 'PAK1', 'PTPN11', 'JUN', 'MAP2K4', 'CACNA2D1', 'MAP2K2', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 31
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'SOD2', 'NFKB1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'NCK1', 'RAB5A', 'RAC1', 'PRKCD', 'STAM', 'GRB10', 'PIK3R2', 'BCAR1', 'RAP1A', 'GJA1', 'STAT3', 'ITCH', 'PAK1', 'SYNJ1', 'PTPN11', 'JUN', 'HGS', 'MAP2K2', 'PRKCB', 'IQGAP1', 'ABL1', 'RPS6KA5', 'STAT1', 'CBL', 'PIK3R1', 'CAV1', 'SHC1'}, number: 29
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'ABL1', 'EPHB2', 'PAK1', 'PIK3CA', 'RAC1', 'STAT3'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TXNIP'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'PRKCD', 'SRF', 'MAPK12', 'PIK3R2', 'RAP1A', 'NFKBIA', 'PAK1', 'PTPN11', 'JUN', 'MAP2K4', 'CACNA2D1', 'MAP2K2', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 31
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'RAC1', 'PLAU', 'ABL1', 'MDM2', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'STAT3'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'PIK3CA', 'FN1', 'RAC1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'PRKCD', 'SRF', 'MAPK12', 'PIK3R2', 'RAP1A', 'NFKBIA', 'PAK1', 'PTPN11', 'JUN', 'MAP2K4', 'CACNA2D1', 'MAP2K2', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 31
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'RAC1', 'PLAU', 'ABL1', 'TXNIP', 'MDM2', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 13
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TXNIP'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND1', 'MDM2', 'ABL1', 'RAP1A'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'EGR1', 'HSP90AA1', 'PGD', 'EPHB2', 'HSPA1A', 'HBEGF', 'PIK3CA', 'FYN', 'TXN'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKAA1', 'PIK3CA', 'FN1', 'RAB5A', 'RAC1', 'VEGFA', 'NFKB1', 'RELA', 'ITGB3', 'PIK3R2', 'RAP1A', 'EPHA2', 'PRKAA2', 'BCL2L1', 'PAK1', 'CCND1', 'PTPN11', 'MAP2K2', 'ETS1', 'PRKCB', 'HSP90AA1', 'ITGB5', 'ABL1', 'AKT1S1', 'PAK2', 'MDM2', 'PIK3R1', 'SHC1'}, number: 30
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'RAC1', 'PLAU', 'ABL1', 'MDM2', 'PIK3R2', 'CCND1', 'PIK3CA', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'RELA', 'NFKBIA', 'CCL2', 'PIK3R2', 'MAP2K3', 'PTPN11', 'PIK3R1', 'JUN', 'MAP2K4', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PGD', 'HSPA1A', 'HBEGF', 'RAC1', 'DKK1', 'NFKB1', 'RAP1A', 'EPHA2', 'PRKAA2', 'PLAU', 'CCND1', 'JUN', 'EGR1', 'SOD2', 'PRKCB', 'HSP90AA1', 'AKT1S1', 'CCL2', 'ICAM1', 'PRKAA1', 'TXN'}, number: 22
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PGD', 'EPHB2', 'HSPA1A', 'HBEGF', 'PIK3CA', 'RAC1', 'FYN', 'NFKB1', 'TXNIP', 'PIK3R2', 'EPHA2', 'PLAU', 'CCND1', 'JUN', 'EGR1', 'HSP90AA1', 'ABL1', 'MDM2', 'PIK3R1', 'SHC1', 'TXN'}, number: 23
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'SOD2', 'NFKB1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'PRKAA1', 'NCK1', 'BMP2', 'FYN', 'RAC1', 'NFKB1', 'MKNK1', 'RELA', 'PRKCD', 'PIK3R2', 'RAP1A', 'STAT3', 'PRKAA2', 'NFKBIA', 'PTPN11', 'ACACB', 'JUN', 'MAP2K2', 'EGR1', 'TRPC3', 'RPS6KA5', 'STAT1', 'FRS2', 'PIK3R1', 'SHC1'}, number: 26
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PRKAA1', 'NCK1', 'BMP2', 'PIK3CA', 'RAC1', 'FYN', 'NFKB1', 'RELA', 'PRKCD', 'STAT6', 'PIK3R2', 'RAP1A', 'STAT3', 'PPP1CA', 'PRKAA2', 'CAMKK2', 'NFKBIA', 'PTPN11', 'ACACB', 'JUN', 'MAP2K2', 'EGR1', 'PRKCB', 'RPS6KA5', 'STAT1', 'FRS2', 'PIK3R1', 'SHC1'}, number: 30
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EPHA2', 'PRKCA', 'EGR1', 'PRKAA2', 'HSP90AA1', 'CAMKK2', 'PGD', 'EPHB2', 'HSPA1A', 'HBEGF', 'PIK3R2', 'PIK3CA', 'PIK3R1', 'ACACB', 'FYN', 'PRKAA1', 'TXN'}, number: 17
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'BMP2', 'PIK3CA', 'FN1', 'VEGFA', 'ITGB3', 'STAT6', 'PIK3R2', 'STAT3', 'EPHA2', 'PRKAA2', 'CTNNA1', 'MAP2K2', 'HSP90AA1', 'ITGB5', 'AKT1S1', 'MDM2', 'STAT1', 'PIK3R1', 'PRKAA1'}, number: 20
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PIK3CA', 'FN1', 'RAC1', 'VEGFA', 'NFKB1', 'RELA', 'ITGB3', 'PIK3R2', 'EPHA2', 'PRKAA2', 'BCL2L1', 'CCND1', 'MAP2K2', 'HSP90AA1', 'ITGB5', 'AKT1S1', 'MDM2', 'PIK3R1', 'PRKAA1'}, number: 21
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'PPP1CA', 'PRKCA', 'PRKCB', 'CAMKK2', 'INPP4B', 'STAT6', 'STAT1', 'OCRL', 'PIK3CA', 'STAT3', 'NFKB1'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GLUD1', 'P4HA2'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'SOD2', 'NFKB1'}, number: 2
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'RELA', 'NFKBIA', 'MAP3K1', 'MAP2K3', 'DUSP1', 'NFKB1'}, number: 8
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'MAP3K1', 'MAP2K3', 'NFKB1'}, number: 5
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'RELA', 'NFKBIA', 'MAP3K1', 'MAP2K3', 'DUSP1', 'NFKB1'}, number: 8
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'RELA', 'NFKBIA', 'MAP3K1', 'MAP2K3', 'DUSP1', 'NFKB1'}, number: 8
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'RELA', 'NFKBIA', 'MAP3K1', 'MAP2K3', 'DUSP1', 'NFKB1'}, number: 8
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NFKB1', 'MAP3K1', 'SMAD3'}, number: 3
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K6', 'IL6', 'RELA', 'NFKBIA', 'MAP3K1', 'MAP2K3', 'DUSP1', 'NFKB1'}, number: 8
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFKB1', 'MAP3K1', 'SMAD3'}, number: 3
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NFKB1', 'MAP3K1', 'SMAD3'}, number: 3
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'RELA', 'NFKBIA', 'MAP3K1', 'MAP2K3', 'NFKB1'}, number: 6
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRA', 'NFKB1'}, number: 2
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RXRA', 'MAP3K1', 'NFKB1', 'SMAD3'}, number: 4
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP3K1', 'NFKBIA', 'RELA', 'NFKB1'}, number: 4
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL6', 'RELA', 'SMAD3', 'NFKBIA', 'MAP3K1', 'NFKB1'}, number: 6
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RXRA', 'IL6', 'NR3C1', 'SMAD3'}, number: 4
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'NFKB1', 'IL6', 'SMAD3'}, number: 3
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D In Inflammatory Diseases WP4482, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FN1'}, number: 1
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TEAD4', 'TEAD1', 'TEAD3', 'FN1', 'SPARC'}, number: 5
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FN1'}, number: 1
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FN1'}, number: 1
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'TWIST1', 'BCAR1'}, number: 2
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FN1'}, number: 1
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FN1'}, number: 1
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'THBS2', 'FN1'}, number: 2
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TWIST1', 'THBS2', 'FN1'}, number: 3
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'THBS2', 'FN1'}, number: 2
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miR 509 3P Alteration Of YAP1 ECM Axis WP3967, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'USP1'}, number: 2
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'USP1'}, number: 2
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'MDM2', 'CDKN1A', 'CCND1', 'CCNE1'}, number: 7
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'ABL1'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'CDK1'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'CCNG1', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 33
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP8', 'CDK4', 'BID', 'CDKN1A', 'CCND1', 'CDK6', 'CASP9', 'GADD45A'}, number: 8
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP8', 'GADD45A'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BID', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'ABL1', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9'}, number: 12
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SFN', 'CDC25C', 'ATR', 'CDC25A', 'RPA2', 'BRCA1', 'H2AX', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CHEK1', 'PRKDC', 'CDKN1A', 'CCND1', 'RAD52', 'CCNG1', 'CCNE1', 'GADD45A'}, number: 18
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CDK4', 'SFN', 'CDK1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'TLK1', 'RAD52', 'CDK6', 'CASP9', 'CASP8', 'ATR', 'CDK2', 'RAD17', 'CCND1', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'BID', 'ABL1', 'PRKDC', 'MDM2', 'CDKN1A'}, number: 32
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNB1'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MDM2', 'CDKN1B', 'CDKN1A', 'CASP9', 'GADD45A'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'CDKN1B', 'MDM2', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CASP9'}, number: 11
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL6', 'JAK1', 'NFKB1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JAK2', 'STAT3', 'JAK1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RELA', 'JAK2', 'IL6R', 'JAK1', 'NFKB1'}, number: 6
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JAK2', 'STAT3', 'RELA', 'NFKB1'}, number: 4
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL6', 'RELA', 'JAK2', 'IL6ST', 'IL6R', 'STAT3', 'JAK1', 'NFKB1'}, number: 8
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6', 'JAK2', 'STAT3', 'IL6ST', 'JAK1', 'IL6R'}, number: 6
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RELA', 'JAK2', 'IL6R', 'JAK1', 'NFKB1'}, number: 6
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/52, Title of overlapping gene(s): {'IL6', 'STAT3', 'IL6R', 'IL6ST', 'JAK1', 'NFKB1'}, number: 6
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Section 6.5.4 Tabulation gene overlap
In this section, a table is created that contains the number of overlapping genes and number of total genes in preparation for section 6.5.5.
final_geneoverlaptable_AG_48H=pd.DataFrame.from_dict(overlapping_genes_betweenORA_and_significantKEs2,orient='index')
Section 6.5.5 Percent overlap calculation
In this section, the percent overlap for the genesets are calculated.
Step 42. Lastly, the percent overlap is calculated and add the result as a column to the dataframe. This is first done by running a for loop to calculate the total number of genes belonging to the enriched pathways of ORA.
variable_count2= {}
for index, row in exploded_df2_ORApathwaytable.iterrows():
unique_KE = row['Term']
gene_expression_value = row['Genes']
if unique_KE not in variable_count2:
variable_count2[unique_KE] = 1
else:
variable_count2[unique_KE] += 1
print("The total number of genes: ")
print(variable_count2)
The total number of genes:
{'Retinoblastoma Gene In Cancer WP2446': 69, 'VEGFA VEGFR2 Signaling WP3888': 201, 'G1 To S Cell Cycle Control WP45': 42, 'Nuclear Receptors Meta Pathway WP2882': 134, 'Cell Cycle WP179': 64, 'Nonalcoholic Fatty Liver Disease WP4396': 69, 'P53 Transcriptional Gene Network WP4963': 48, 'Small Cell Lung Cancer WP4658': 49, 'DNA IR Damage And Cellular Response Via ATR WP4016': 44, 'DNA Repair Pathways Full Network WP4946': 58, 'NRF2 Pathway WP2884': 63, 'Ferroptosis WP4313': 35, 'DNA Replication WP466': 26, 'Ciliary Landscape WP4352': 90, 'Gastrin Signaling WP4659': 54, 'TGF Beta Signaling Pathway WP366': 61, 'Electron Transport Chain OXPHOS System In Mitochondria WP111': 43, 'Metabolic Epileptic Disorders WP5355': 44, 'Transcriptional Activation By NRF2 In Response To Phytochemicals WP3': 12, 'Metabolic Reprogramming In Colon Cancer WP4290': 24, 'Glioblastoma Signaling WP2261': 41, 'ncRNAs Involved In STAT3 Signaling In Hepatocellular Carcinoma WP4337': 11, 'Parkin Ubiquitin Proteasomal System Pathway WP2359': 34, 'IL6 Signaling WP364': 25, 'Pancreatic Adenocarcinoma Pathway WP4263': 41, 'Oncostatin M Signaling WP2374': 30, 'Apoptosis Modulation And Signaling WP1772': 41, 'Amino Acid Metabolism WP3925': 41, 'EGFR Tyrosine Kinase Inhibitor Resistance WP4806': 40, 'NRF2 ARE Regulation WP4357': 15, 'DNA Mismatch Repair WP531': 15, 'Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525': 31, 'EGF EGFR Signaling WP437': 67, 'PGK1 PKM2 KHKC KHKA Acting As Protein Kinases WP5433': 11, 'PDGFR Beta Pathway WP3972': 18, 'Cancer Pathways WP5434': 175, 'Pleural Mesothelioma WP5087': 154, 'Nucleotide Excision Repair WP4753': 23, 'Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864': 27, 'Photodynamic Therapy Induced Unfolded Protein Response WP3613': 16, 'Insulin Signaling WP481': 66, 'Network Map Of SARS CoV 2 Signaling WP5115': 96, 'Hepatitis C And Hepatocellular Carcinoma WP3646': 26, 'Oxidative Phosphorylation WP623': 26, 'miRNA Regulation Of DNA Damage Response WP1530': 33, 'Measles Virus Infection WP4630': 55, 'Androgen Receptor Network In Prostate Cancer WP2263': 47, 'Non Small Cell Lung Cancer WP4255': 34, 'HDAC6 Interactions In The Central Nervous System WP5426': 48, 'Interferon Type I Signaling WP585': 27, 'IL1 Signaling WP195': 27, 'PAFAH1B1 Copy Number Variation WP5409': 9, 'Selenium Micronutrient Network WP15': 36, 'Signal Transduction Through IL1R WP4496': 19, 'Alpha 6 Beta 4 Signaling WP244': 19, 'Proteasome Degradation WP183': 29, 'Hepatitis B Infection WP4666': 59, 'Integrated Cancer Pathway WP1971': 23, 'Glucocorticoid Receptor Pathway WP2880': 33, 'Gastric Cancer Network 1 WP2361': 15, 'Metabolic Pathways Of Fibroblasts WP5312': 18, 'Target Of Rapamycin Signaling WP1471': 20, 'Immune Response To Tuberculosis WP4197': 14, 'DNA Damage Response WP707': 32, 'Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113': 17, 'Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718': 23, 'Prolactin Signaling WP2037': 34, 'ErbB Signaling WP673': 39, 'Ketogenesis And Ketolysis WP4742': 7, 'Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240': 10, 'Cysteine And Methionine Catabolism WP4504': 10, 'TCA Cycle In Senescence WP5050': 8, 'Alzheimer 39 S Disease And miRNA Effects WP2059': 93, 'Alzheimer 39 S Disease WP5124': 93, 'PtdIns 4 5 P2 In Cytokinesis Pathway WP5199': 9, 'Spina Bifida WP5150': 9, 'Fas Ligand Pathway And Stress Induction Of Heat Shock Proteins WP314': 21, 'Metabolic Reprogramming In Pancreatic Cancer WP5220': 21, 'Bladder Cancer WP2828': 21, 'Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982': 32, 'Focal Adhesion WP306': 74, 'Apoptosis WP254': 36, 'Copper Homeostasis WP3286': 23, 'Hippo Signaling Regulation WP4540': 42, 'Sphingolipid Metabolism Overview WP4725': 15, 'miR 517 Relationship With ARCN1 And USP1 WP3596': 5, 'Disorders In Ketolysis WP5195': 5, 'TNF Alpha Signaling WP231': 38, 'NF1 Copy Number Variation Syndrome WP5366': 39, 'miR 509 3P Alteration Of YAP1 ECM Axis WP3967': 11, 'MTHFR Deficiency WP4288': 14, 'Clear Cell Renal Cell Carcinoma Pathways WP4018': 36, 'Ebola Virus Infection In Host WP4217': 50, 'PDGF Pathway WP2526': 20, 'Cholesterol Biosynthesis Pathway WP197': 10, 'Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239': 61, 'Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612': 13, 'Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814': 9, 'Disorders Of Galactose Metabolism WP5173': 9, 'Osteoarthritic Chondrocyte Hypertrophy WP5373': 24, 'IL4 Signaling WP395': 24, 'Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211': 6, 'Oxidative Damage Response WP3941': 19, 'Host Pathogen Interaction Of Human CoV Interferon Induction WP4880': 17, 'Trans Sulfuration Pathway WP2333': 7, 'Kit Receptor Signaling WP304': 25, 'Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114': 29, 'Methionine De Novo And Salvage Pathway WP3580': 12, 'Hypertrophy Model WP516': 12, 'Enterocyte Cholesterol Metabolism WP5333': 18, 'Head And Neck Squamous Cell Carcinoma WP4674': 32, 'TROP2 Regulatory Signaling WP5300': 21, 'Transcription Co Factors SKI And SKIL Protein Partners WP4533': 11, 'Mitochondrial Fatty Acid Oxidation Disorders WP5123': 11, 'Cholesterol Synthesis Disorders WP5193': 11, 'Hippo Merlin Signaling Dysregulation WP4541': 47, 'MAPK Signaling WP382': 87, 'SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011': 10, 'Photodynamic Therapy Induced AP 1 Survival Signaling WP3611': 23, 'Androgen Receptor Signaling WP138': 35, 'Vitamin D In Inflammatory Diseases WP4482': 12, 'Fatty Acid Biosynthesis WP357': 12, 'Oxidative Stress Response WP408': 16, 'MET In Type 1 Papillary Renal Cell Carcinoma WP4205': 25, 'H19 Rb E2F1 And CDK Beta Catenin In Colorectal Cancer WP3969': 9, 'Sphingolipid Metabolism Integrated Pathway WP4726': 14, 'IL10 Anti Inflammatory Signaling WP4495': 8, 'Lactate Shuttle In Glial Cells WP5314': 8, 'Krebs Cycle Disorders WP4236': 8, 'Urea Cycle And Metabolism Of Amino Groups WP497': 11, 'Lipid Metabolism Pathway WP3965': 15, 'Leucine Isoleucine And Valine Metabolism WP4686': 13, 'IL1 And Megakaryocytes In Obesity WP2865': 13, 'Thyroid Stimulating Hormone TSH Signaling WP2032': 25, 'ATR Signaling WP3875': 7, 'Thermogenesis WP4321': 42}
Step 43. The result is converted into a dataframe and added to the final dataframe. This is followed by some data manipulation prior to calculation of gene set overlap.
variable_count_df2=pd.DataFrame.from_dict(variable_count2,orient='index')
reset_variable_count_df2 = variable_count_df2.reset_index()
reset_variable_count_df2.columns = ['Term', 'Total number of genes']
Genesetoverlaptable_AG48H=final_geneoverlaptable_AG_48H.reset_index(level=[1])
Genesetoverlaptable_AG48H.reset_index(inplace=True)
Genesetoverlaptable_AG48H.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_Ag48h=pd.merge(reset_variable_count_df2,Genesetoverlaptable_AG48H, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_Ag48h.loc[:,'Percent geneset overlap']= tabulation_Ag48h.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_Ag48h
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Retinoblastoma Gene In Cancer WP2446 | 69 | https://identifiers.org/aop.events/105 | {} | 0 | 0.0 |
1 | Retinoblastoma Gene In Cancer WP2446 | 69 | https://identifiers.org/aop.events/1087 | {CDC25B, STMN1, MAPK13} | 3 | 4.3478260869565215 |
2 | Retinoblastoma Gene In Cancer WP2446 | 69 | https://identifiers.org/aop.events/1090 | {CDK4, RBBP4, CDK2, BARD1, MDM2, CDKN1A, CCND1... | 8 | 11.594202898550725 |
3 | Retinoblastoma Gene In Cancer WP2446 | 69 | https://identifiers.org/aop.events/1115 | {} | 0 | 0.0 |
4 | Retinoblastoma Gene In Cancer WP2446 | 69 | https://identifiers.org/aop.events/1392 | {} | 0 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
4891 | Thermogenesis WP4321 | 42 | https://identifiers.org/aop.events/457 | {TSC1, HRAS, PRKAA2, CREB5, ACSL1, CREB3, SOS1... | 12 | 28.57142857142857 |
4892 | Thermogenesis WP4321 | 42 | https://identifiers.org/aop.events/484 | {TSC1, HRAS, PRKAA2, CREB5, SOS1, CREB3, AKT1S... | 11 | 26.190476190476193 |
4893 | Thermogenesis WP4321 | 42 | https://identifiers.org/aop.events/52 | {} | 0 | 0.0 |
4894 | Thermogenesis WP4321 | 42 | https://identifiers.org/aop.events/68 | {FGFR1} | 1 | 2.380952380952381 |
4895 | Thermogenesis WP4321 | 42 | https://identifiers.org/aop.events/890 | {} | 0 | 0.0 |
4896 rows × 6 columns
Section 7. Comparison 3: cadmium chloride timepoint 1
Section 7.1 Calculation of n variable
In this section, variable n will be calculated for the comparison 3.
Step 44. The table containing the differential expressed genes for Bisphenol A 1uM to control is loaded with the filter for significance.
C3_DEG= pd.read_csv('topTable_X12_CdCl2_.5 - X12_vehicle...control_.0.TSV.tsv',sep='\t')
Comparison3_DEG= C3_DEG[C3_DEG['adj. p-value'] < 0.05]
Comparison_3_DEG= Comparison3_DEG.copy()
Comparison_3_DEG.rename(columns={Comparison_3_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison_3_DEG['Entrez.Gene'] = Comparison_3_DEG['Entrez.Gene'].astype(str)
Step 45. Here, the results of the DEG table are integrated into the mergeddataframe dataframe. This is followed by adjustment of the dataframe columns to remove non-relevant columns.
merged_dataframe_DEG_AgNP_24h= pd.merge(mergeddataframe,Comparison_3_DEG, on='Entrez.Gene')
merged_dataframe_DEG_AgNP_24h
KEID | WPtitle | WPID | Gene.Symbol | Entrez.Gene | N | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | MMP1 | 4312 | 129 | 5.852988 | 2.237075 | 0.144431 | 4.441000e-13 | 6.003170e-11 |
1 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | NFKB1 | 4790 | 129 | 7.959930 | -0.292275 | 0.085200 | 1.593112e-03 | 8.244680e-03 |
2 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | IL11 | 3589 | 129 | 5.078408 | 0.549403 | 0.086467 | 1.433371e-06 | 1.954344e-05 |
3 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | LIF | 3976 | 129 | 7.442730 | 0.646913 | 0.060500 | 3.592265e-10 | 1.681691e-08 |
4 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | SPP1 | 6696 | 129 | 13.433842 | -0.170103 | 0.059029 | 6.092981e-03 | 2.582305e-02 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
5605 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | SOS1 | 6654 | 398 | 6.271886 | -0.381262 | 0.087465 | 1.592588e-04 | 1.127908e-03 |
5606 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | RPS6KA1 | 6195 | 398 | 6.892861 | -0.269334 | 0.092076 | 5.487255e-03 | 2.364373e-02 |
5607 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MKNK1 | 8569 | 398 | 6.990698 | 0.543292 | 0.101186 | 1.377741e-05 | 1.393512e-04 |
5608 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EEF2K | 29904 | 398 | 7.202279 | -0.262817 | 0.093362 | 7.149187e-03 | 2.962283e-02 |
5609 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EIF4EBP1 | 1978 | 398 | 9.439758 | 0.274667 | 0.073124 | 7.103009e-04 | 4.125769e-03 |
5610 rows × 11 columns
Step 46. Lastly, the following for loop for the key events is run to retrieve the n variable. It is comparable to the for loop of N, but adds a condition to check for significance of genes by p adjusted value being smaller than 0.05.
variable_n_dictionary_count3= {}
for index, row in merged_dataframe_DEG_AgNP_24h.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['adj. p-value']
if gene_expression_value < 0.05:
if unique_KE not in variable_n_dictionary_count3:
variable_n_dictionary_count3[unique_KE] = 1
else:
variable_n_dictionary_count3[unique_KE] += 1
print("The total number of significant genes: ")
print(variable_n_dictionary_count3)
The total number of significant genes:
{'https://identifiers.org/aop.events/486': 13, 'https://identifiers.org/aop.events/875': 44, 'https://identifiers.org/aop.events/2007': 40, 'https://identifiers.org/aop.events/1495': 54, 'https://identifiers.org/aop.events/105': 54, 'https://identifiers.org/aop.events/1816': 54, 'https://identifiers.org/aop.events/1668 ': 34, 'https://identifiers.org/aop.events/244 ': 159, 'https://identifiers.org/aop.events/1739': 2, 'https://identifiers.org/aop.events/1814 ': 87, 'https://identifiers.org/aop.events/888': 20, 'https://identifiers.org/aop.events/1574': 4, 'https://identifiers.org/aop.events/41': 108, 'https://identifiers.org/aop.events/1270': 15, 'https://identifiers.org/aop.events/1086': 32, 'https://identifiers.org/aop.events/1487 ': 5, 'https://identifiers.org/aop.events/1539': 62, 'https://identifiers.org/aop.events/201': 18, 'https://identifiers.org/aop.events/457': 152, 'https://identifiers.org/aop.events/55': 64, 'https://identifiers.org/aop.events/188': 3, 'https://identifiers.org/aop.events/618': 56, 'https://identifiers.org/aop.events/389': 18, 'https://identifiers.org/aop.events/177': 162, 'https://identifiers.org/aop.events/2013': 34, 'https://identifiers.org/aop.events/2006': 72, 'https://identifiers.org/aop.events/1497': 130, 'https://identifiers.org/aop.events/870': 8, 'https://identifiers.org/aop.events/1669': 112, 'https://identifiers.org/aop.events/1115': 16, 'https://identifiers.org/aop.events/202': 58, 'https://identifiers.org/aop.events/1917': 72, 'https://identifiers.org/aop.events/1633': 260, 'https://identifiers.org/aop.events/1392': 48, 'https://identifiers.org/aop.events/1815': 26, 'https://identifiers.org/aop.events/386': 100, 'https://identifiers.org/aop.events/1944': 9, 'https://identifiers.org/aop.events/1582': 21, 'https://identifiers.org/aop.events/1896': 92, 'https://identifiers.org/aop.events/1172': 9, 'https://identifiers.org/aop.events/1496': 86, 'https://identifiers.org/aop.events/68': 30, 'https://identifiers.org/aop.events/1493': 172, 'https://identifiers.org/aop.events/265': 80, 'https://identifiers.org/aop.events/1817': 66, 'https://identifiers.org/aop.events/1819': 16, 'https://identifiers.org/aop.events/1750': 130, 'https://identifiers.org/aop.events/1901': 6, 'https://identifiers.org/aop.events/1848': 42, 'https://identifiers.org/aop.events/1847': 1, 'https://identifiers.org/aop.events/1365': 66, 'https://identifiers.org/aop.events/890': 16, 'https://identifiers.org/aop.events/1587': 8, 'https://identifiers.org/aop.events/1457': 8, 'https://identifiers.org/aop.events/1586': 3, 'https://identifiers.org/aop.events/149': 260, 'https://identifiers.org/aop.events/1575': 66, 'https://identifiers.org/aop.events/1579': 87, 'https://identifiers.org/aop.events/87': 16, 'https://identifiers.org/aop.events/249': 16, 'https://identifiers.org/aop.events/288': 13, 'https://identifiers.org/aop.events/209': 233, 'https://identifiers.org/aop.events/1498': 46, 'https://identifiers.org/aop.events/1499': 5, 'https://identifiers.org/aop.events/1500': 69, 'https://identifiers.org/aop.events/1488': 48, 'https://identifiers.org/aop.events/1494': 12, 'https://identifiers.org/aop.events/52': 60, 'https://identifiers.org/aop.events/381': 66, 'https://identifiers.org/aop.events/484': 181, 'https://identifiers.org/aop.events/388': 44, 'https://identifiers.org/aop.events/1262': 66, 'https://identifiers.org/aop.events/1945': 328, 'https://identifiers.org/aop.events/2009': 12, 'https://identifiers.org/aop.events/2012': 69, 'https://identifiers.org/aop.events/1770': 19, 'https://identifiers.org/aop.events/1818': 59, 'https://identifiers.org/aop.events/1738': 1, 'https://identifiers.org/aop.events/1752': 14, 'https://identifiers.org/aop.events/887': 39, 'https://identifiers.org/aop.events/1585': 15, 'https://identifiers.org/aop.events/214': 13, 'https://identifiers.org/aop.events/1271': 23, 'https://identifiers.org/aop.events/1087': 130, 'https://identifiers.org/aop.events/1538': 16, 'https://identifiers.org/aop.events/898': 66, 'https://identifiers.org/aop.events/195': 48, 'https://identifiers.org/aop.events/459': 41, 'https://identifiers.org/aop.events/341': 3, 'https://identifiers.org/aop.events/1670': 35, 'https://identifiers.org/aop.events/759': 19, 'https://identifiers.org/aop.events/1090': 143, 'https://identifiers.org/aop.events/344': 8, 'https://identifiers.org/aop.events/1841': 3, 'https://identifiers.org/aop.events/1820': 8, 'https://identifiers.org/aop.events/896': 17, 'https://identifiers.org/aop.events/1549': 28, 'https://identifiers.org/aop.events/357': 8, 'https://identifiers.org/aop.events/352': 100}
Step 47. The output of the n variable dictionary is saved as a dataframe and integrated as a separate column into a dataframe.
n_variable_dataframe3=pd.DataFrame.from_dict(variable_n_dictionary_count3,orient='index')
n_variable_dataframe3
0 | |
---|---|
https://identifiers.org/aop.events/486 | 13 |
https://identifiers.org/aop.events/875 | 44 |
https://identifiers.org/aop.events/2007 | 40 |
https://identifiers.org/aop.events/1495 | 54 |
https://identifiers.org/aop.events/105 | 54 |
... | ... |
https://identifiers.org/aop.events/1820 | 8 |
https://identifiers.org/aop.events/896 | 17 |
https://identifiers.org/aop.events/1549 | 28 |
https://identifiers.org/aop.events/357 | 8 |
https://identifiers.org/aop.events/352 | 100 |
99 rows × 1 columns
n_variable_dataframe3_reset = n_variable_dataframe3.reset_index()
n_variable_dataframe3_reset.columns = ['KEID', 'n']
n_variable_dataframe3_reset
KEID | n | |
---|---|---|
0 | https://identifiers.org/aop.events/486 | 13 |
1 | https://identifiers.org/aop.events/875 | 44 |
2 | https://identifiers.org/aop.events/2007 | 40 |
3 | https://identifiers.org/aop.events/1495 | 54 |
4 | https://identifiers.org/aop.events/105 | 54 |
... | ... | ... |
94 | https://identifiers.org/aop.events/1820 | 8 |
95 | https://identifiers.org/aop.events/896 | 17 |
96 | https://identifiers.org/aop.events/1549 | 28 |
97 | https://identifiers.org/aop.events/357 | 8 |
98 | https://identifiers.org/aop.events/352 | 100 |
99 rows × 2 columns
merged_dataframe4= pd.merge(mergeddataframeDEG, n_variable_dataframe3_reset, on='KEID')
Section 7.2. Calculation of variable B and variable b.
In this section, variable B and variable b are calculated.
Step 48. Variable B is calculated by taking the length of the dataframe which includes all genes in 1 DEG table.
B=len(C3_DEG.index)
B
20411
Step 49. Variable b is calculated by taking the length of the dataframe which includes all genes in 1 DEG table with the condition for significance.
C3_DEG_filtered=C3_DEG[C3_DEG['adj. p-value'] < 0.05]
b=len(C3_DEG_filtered)
b
5418
Section 7.3. Calculation of enrichment score and hypergeometric p-value
In this section, the enrichment score and hypergeometric p-value will be calculated. This requires the four variables of the enrichment score per KE for which the formula will be applied to and stored in an additional dataframe.
Step 50. The final dataframe will be created that contains the KEID and the four variables: variable N, variable n, variable B and variable b.
Final_dataframe_ES= merged_dataframe4.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([20411 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([5418 for x in range(len(Final_dataframe_ES.index))])
Final_Dataframe_ES=Final_dataframe_ES.drop_duplicates(subset=['KEID'],keep='first')
Final_Dataframe_ES.reset_index(drop=True,inplace=True)
Copy_Final_DataFrame_ES=Final_Dataframe_ES.copy()
Step 51. The following for loop will be used to calculate the enrichment score for individual key events and the results will be saved as a separate column into the dataframe.
def calculate_Enrichment_Score(row):
return f"{(row['n']/row['N'])/(row['b']/row['B'])}"
Copy_Final_DataFrame_ES.loc[:,'Enrichmentscore']= Copy_Final_DataFrame_ES.apply(calculate_Enrichment_Score,axis=1)
Copy_Final_DataFrame_ES
KEID | N | n | B | b | Enrichmentscore | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | 129 | 13 | 20411 | 5418 | 0.3796460835400803 |
1 | https://identifiers.org/aop.events/875 | 169 | 44 | 20411 | 5418 | 0.9808243833288556 |
2 | https://identifiers.org/aop.events/2007 | 184 | 40 | 20411 | 5418 | 0.818968976198501 |
3 | https://identifiers.org/aop.events/1495 | 253 | 54 | 20411 | 5418 | 0.8040786311767101 |
4 | https://identifiers.org/aop.events/105 | 165 | 54 | 20411 | 5418 | 1.2329205678042887 |
... | ... | ... | ... | ... | ... | ... |
88 | https://identifiers.org/aop.events/1820 | 57 | 8 | 20411 | 5418 | 0.5287378653351725 |
89 | https://identifiers.org/aop.events/896 | 82 | 17 | 20411 | 5418 | 0.7810167553502777 |
90 | https://identifiers.org/aop.events/1549 | 101 | 28 | 20411 | 5418 | 1.0443881597462072 |
91 | https://identifiers.org/aop.events/357 | 21 | 8 | 20411 | 5418 | 1.4351456344811826 |
92 | https://identifiers.org/aop.events/352 | 398 | 100 | 20411 | 5418 | 0.9465470579178654 |
93 rows × 6 columns
Step 52. The following for loop will be used to calculate the hypergeometric p-value for individual Key Events and save the result as a separate column into the dataframe. This requires some in between steps for manipulation of the dataframe.
p_value_dataframe3=[]
for index, row in Copy_Final_DataFrame_ES.iterrows():
M = row['B']
n = row['b']
N = row['N']
k = row['n']
hpd = ss.hypergeom(M, n, N)
p = hpd.pmf(k)
p_value_dataframe3.append(p)
Hypergeometricpvalue_dataframe3=pd.DataFrame(p_value_dataframe3)
Hypergeometricpvalue_dataframe3.columns= ['Hypergeometric p-value']
Hypergeometricpvalue_dataframe3
Hypergeometric p-value | |
---|---|
0 | 0.000002 |
1 | 0.069282 |
2 | 0.022696 |
3 | 0.009569 |
4 | 0.013944 |
... | ... |
88 | 0.011034 |
89 | 0.051084 |
90 | 0.085499 |
91 | 0.090912 |
92 | 0.037620 |
93 rows × 1 columns
merged_finaltable_AgNp_24h=pd.concat([Copy_Final_DataFrame_ES,Hypergeometricpvalue_dataframe3],axis=1)
Section 7.4. Filtering the results for significant KEs
In this section, the results will be filtered to only include significant KEs. Significant KEs have an enrichment score above 1 and a hypergeometric p-value below 0.05.
Step 53. Lastly, we filter the results to showcase the significant KEs for the comparison: Bisphenol A 1uM.
filteredversion_C3= merged_finaltable_AgNp_24h[(merged_finaltable_AgNp_24h['Enrichmentscore']>str(1))& (merged_finaltable_AgNp_24h['Hypergeometric p-value'] < 0.05)]
filteredversion_C3
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | |
---|---|---|---|---|---|---|---|
4 | https://identifiers.org/aop.events/105 | 165 | 54 | 20411 | 5418 | 1.2329205678042887 | 1.394378e-02 |
5 | https://identifiers.org/aop.events/1816 | 165 | 54 | 20411 | 5418 | 1.2329205678042887 | 1.394378e-02 |
7 | https://identifiers.org/aop.events/244 | 417 | 159 | 20411 | 5418 | 1.436436233073342 | 5.042479e-08 |
8 | https://identifiers.org/aop.events/1814 | 251 | 87 | 20411 | 5418 | 1.3057824074686857 | 9.176109e-04 |
9 | https://identifiers.org/aop.events/41 | 275 | 108 | 20411 | 5418 | 1.4795046813651465 | 1.138895e-06 |
13 | https://identifiers.org/aop.events/1539 | 170 | 62 | 20411 | 5418 | 1.3739408941871323 | 1.107682e-03 |
14 | https://identifiers.org/aop.events/201 | 36 | 18 | 20411 | 5418 | 1.8836286452565523 | 1.494639e-03 |
19 | https://identifiers.org/aop.events/389 | 36 | 18 | 20411 | 5418 | 1.8836286452565523 | 1.494639e-03 |
20 | https://identifiers.org/aop.events/177 | 495 | 162 | 20411 | 5418 | 1.2329205678042887 | 3.310284e-04 |
21 | https://identifiers.org/aop.events/2013 | 100 | 34 | 20411 | 5418 | 1.2808674787744556 | 2.162301e-02 |
22 | https://identifiers.org/aop.events/2006 | 216 | 72 | 20411 | 5418 | 1.2557524301710348 | 4.943939e-03 |
25 | https://identifiers.org/aop.events/1669 | 400 | 112 | 20411 | 5418 | 1.0548320413436694 | 3.601934e-02 |
26 | https://identifiers.org/aop.events/1115 | 34 | 16 | 20411 | 5418 | 1.772826960241461 | 5.165562e-03 |
27 | https://identifiers.org/aop.events/202 | 186 | 58 | 20411 | 5418 | 1.1747361443535487 | 2.328591e-02 |
28 | https://identifiers.org/aop.events/1917 | 166 | 72 | 20411 | 5418 | 1.6339911139574912 | 1.054454e-06 |
30 | https://identifiers.org/aop.events/1392 | 102 | 48 | 20411 | 5418 | 1.772826960241461 | 4.162876e-06 |
31 | https://identifiers.org/aop.events/1815 | 58 | 26 | 20411 | 5418 | 1.6887705095403573 | 1.191886e-03 |
32 | https://identifiers.org/aop.events/386 | 372 | 100 | 20411 | 5418 | 1.0127035727185765 | 4.653079e-02 |
34 | https://identifiers.org/aop.events/1582 | 51 | 21 | 20411 | 5418 | 1.5512235902112783 | 8.720191e-03 |
35 | https://identifiers.org/aop.events/1896 | 205 | 92 | 20411 | 5418 | 1.6906715645229542 | 6.062187e-09 |
37 | https://identifiers.org/aop.events/68 | 64 | 30 | 20411 | 5418 | 1.7659018549280179 | 2.319552e-04 |
39 | https://identifiers.org/aop.events/265 | 268 | 80 | 20411 | 5418 | 1.1245544150785385 | 2.549116e-02 |
47 | https://identifiers.org/aop.events/890 | 34 | 16 | 20411 | 5418 | 1.772826960241461 | 5.165562e-03 |
55 | https://identifiers.org/aop.events/249 | 34 | 16 | 20411 | 5418 | 1.772826960241461 | 5.165562e-03 |
57 | https://identifiers.org/aop.events/209 | 617 | 233 | 20411 | 5418 | 1.4226433528193734 | 1.684377e-10 |
64 | https://identifiers.org/aop.events/381 | 199 | 66 | 20411 | 5418 | 1.2494421164515823 | 6.983122e-03 |
68 | https://identifiers.org/aop.events/1945 | 1218 | 328 | 20411 | 5418 | 1.014499500236698 | 2.530235e-02 |
74 | https://identifiers.org/aop.events/887 | 116 | 39 | 20411 | 5418 | 1.266577882155268 | 1.886815e-02 |
75 | https://identifiers.org/aop.events/1585 | 35 | 15 | 20411 | 5418 | 1.6145388387913304 | 1.550428e-02 |
77 | https://identifiers.org/aop.events/1271 | 58 | 23 | 20411 | 5418 | 1.4939123738241622 | 1.010091e-02 |
79 | https://identifiers.org/aop.events/1538 | 34 | 16 | 20411 | 5418 | 1.772826960241461 | 5.165562e-03 |
82 | https://identifiers.org/aop.events/459 | 132 | 41 | 20411 | 5418 | 1.170132946295737 | 3.836310e-02 |
83 | https://identifiers.org/aop.events/1670 | 88 | 35 | 20411 | 5418 | 1.498340967817712 | 2.266502e-03 |
85 | https://identifiers.org/aop.events/1090 | 459 | 143 | 20411 | 5418 | 1.173677107937634 | 3.422925e-03 |
# Ensure numeric types
filteredversion_C3['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C3['Hypergeometric p-value'], errors='coerce')
filteredversion_C3['Enrichmentscore'] = pd.to_numeric(filteredversion_C3['Enrichmentscore'], errors='coerce')
filteredversion_C3['combined_score'] = -np.log10(filteredversion_C3['Hypergeometric p-value']) * filteredversion_C3['Enrichmentscore']
# Sort by combined score (highest first)
C3_sorted = filteredversion_C3.sort_values(by='combined_score', ascending=False)
C3_sorted
# Show top rows
#C3_sorted.to_excel('ConsistentKE-Cadmium-T1.xlsx')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\1426103197.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C3['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C3['Hypergeometric p-value'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\1426103197.py:3: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C3['Enrichmentscore'] = pd.to_numeric(filteredversion_C3['Enrichmentscore'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\1426103197.py:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C3['combined_score'] = -np.log10(filteredversion_C3['Hypergeometric p-value']) * filteredversion_C3['Enrichmentscore']
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | combined_score | |
---|---|---|---|---|---|---|---|---|
57 | https://identifiers.org/aop.events/209 | 617 | 233 | 20411 | 5418 | 1.422643 | 1.684377e-10 | 13.904291 |
35 | https://identifiers.org/aop.events/1896 | 205 | 92 | 20411 | 5418 | 1.690672 | 6.062187e-09 | 13.892875 |
7 | https://identifiers.org/aop.events/244 | 417 | 159 | 20411 | 5418 | 1.436436 | 5.042479e-08 | 10.482186 |
28 | https://identifiers.org/aop.events/1917 | 166 | 72 | 20411 | 5418 | 1.633991 | 1.054454e-06 | 9.766319 |
30 | https://identifiers.org/aop.events/1392 | 102 | 48 | 20411 | 5418 | 1.772827 | 4.162876e-06 | 9.538884 |
9 | https://identifiers.org/aop.events/41 | 275 | 108 | 20411 | 5418 | 1.479505 | 1.138895e-06 | 8.793460 |
37 | https://identifiers.org/aop.events/68 | 64 | 30 | 20411 | 5418 | 1.765902 | 2.319552e-04 | 6.418340 |
14 | https://identifiers.org/aop.events/201 | 36 | 18 | 20411 | 5418 | 1.883629 | 1.494639e-03 | 5.322124 |
19 | https://identifiers.org/aop.events/389 | 36 | 18 | 20411 | 5418 | 1.883629 | 1.494639e-03 | 5.322124 |
31 | https://identifiers.org/aop.events/1815 | 58 | 26 | 20411 | 5418 | 1.688771 | 1.191886e-03 | 4.937568 |
20 | https://identifiers.org/aop.events/177 | 495 | 162 | 20411 | 5418 | 1.232921 | 3.310284e-04 | 4.290730 |
13 | https://identifiers.org/aop.events/1539 | 170 | 62 | 20411 | 5418 | 1.373941 | 1.107682e-03 | 4.060799 |
26 | https://identifiers.org/aop.events/1115 | 34 | 16 | 20411 | 5418 | 1.772827 | 5.165562e-03 | 4.054247 |
47 | https://identifiers.org/aop.events/890 | 34 | 16 | 20411 | 5418 | 1.772827 | 5.165562e-03 | 4.054247 |
55 | https://identifiers.org/aop.events/249 | 34 | 16 | 20411 | 5418 | 1.772827 | 5.165562e-03 | 4.054247 |
79 | https://identifiers.org/aop.events/1538 | 34 | 16 | 20411 | 5418 | 1.772827 | 5.165562e-03 | 4.054247 |
8 | https://identifiers.org/aop.events/1814 | 251 | 87 | 20411 | 5418 | 1.305782 | 9.176109e-04 | 3.966107 |
83 | https://identifiers.org/aop.events/1670 | 88 | 35 | 20411 | 5418 | 1.498341 | 2.266502e-03 | 3.962578 |
34 | https://identifiers.org/aop.events/1582 | 51 | 21 | 20411 | 5418 | 1.551224 | 8.720191e-03 | 3.194705 |
77 | https://identifiers.org/aop.events/1271 | 58 | 23 | 20411 | 5418 | 1.493912 | 1.010091e-02 | 2.981311 |
75 | https://identifiers.org/aop.events/1585 | 35 | 15 | 20411 | 5418 | 1.614539 | 1.550428e-02 | 2.921586 |
22 | https://identifiers.org/aop.events/2006 | 216 | 72 | 20411 | 5418 | 1.255752 | 4.943939e-03 | 2.895673 |
85 | https://identifiers.org/aop.events/1090 | 459 | 143 | 20411 | 5418 | 1.173677 | 3.422925e-03 | 2.893821 |
64 | https://identifiers.org/aop.events/381 | 199 | 66 | 20411 | 5418 | 1.249442 | 6.983122e-03 | 2.693735 |
4 | https://identifiers.org/aop.events/105 | 165 | 54 | 20411 | 5418 | 1.232921 | 1.394378e-02 | 2.287831 |
5 | https://identifiers.org/aop.events/1816 | 165 | 54 | 20411 | 5418 | 1.232921 | 1.394378e-02 | 2.287831 |
74 | https://identifiers.org/aop.events/887 | 116 | 39 | 20411 | 5418 | 1.266578 | 1.886815e-02 | 2.183923 |
21 | https://identifiers.org/aop.events/2013 | 100 | 34 | 20411 | 5418 | 1.280867 | 2.162301e-02 | 2.132752 |
27 | https://identifiers.org/aop.events/202 | 186 | 58 | 20411 | 5418 | 1.174736 | 2.328591e-02 | 1.918235 |
39 | https://identifiers.org/aop.events/265 | 268 | 80 | 20411 | 5418 | 1.124554 | 2.549116e-02 | 1.792102 |
82 | https://identifiers.org/aop.events/459 | 132 | 41 | 20411 | 5418 | 1.170133 | 3.836310e-02 | 1.657009 |
68 | https://identifiers.org/aop.events/1945 | 1218 | 328 | 20411 | 5418 | 1.014500 | 2.530235e-02 | 1.619992 |
25 | https://identifiers.org/aop.events/1669 | 400 | 112 | 20411 | 5418 | 1.054832 | 3.601934e-02 | 1.522612 |
32 | https://identifiers.org/aop.events/386 | 372 | 100 | 20411 | 5418 | 1.012704 | 4.653079e-02 | 1.349184 |
Section 7.5. Calculation of percent gene overlap to ORA
Section 7.5.1 Creation of the significant KEs table
In this section, you merge the dataframes to retrieve the genes connected to only the significant KEs.
Step 54. The significant KE table is created using the significan KEs from the previous merggeddataframe_final.
significantKEID_genetable3=mergeddataframe_final2[(mergeddataframe_final2['KEID'] == 'https://identifiers.org/aop.events/105')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1816') | (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/244')|(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1814')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/41')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1539')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/201')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/389')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/177')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2013')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2006')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1669')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1115')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/202')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1917')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1392')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1815')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/386')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1582')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1896')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/68')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/265')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/890')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/249')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/209')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/381')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1945')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/887')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1585')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1271')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1538')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/459')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1670')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1090')]
significantKEIDgenetable3=significantKEID_genetable3.drop(columns={'WPtitle','ID'})
significantKEIDgenetable3
KEID | gene | Entrez.Gene | |
---|---|---|---|
735 | https://identifiers.org/aop.events/105 | SDHB | 6390 |
736 | https://identifiers.org/aop.events/105 | ATP5PD | 10476 |
737 | https://identifiers.org/aop.events/105 | ATP5MG | 10632 |
738 | https://identifiers.org/aop.events/105 | COX15 | 1355 |
739 | https://identifiers.org/aop.events/105 | ATP5PO | 539 |
... | ... | ... | ... |
20172 | https://identifiers.org/aop.events/1090 | SETD5 | 55209 |
20173 | https://identifiers.org/aop.events/1090 | CTNNA3 | 29119 |
20174 | https://identifiers.org/aop.events/1090 | MAD1L1 | 8379 |
20175 | https://identifiers.org/aop.events/1090 | CD44 | 960 |
20176 | https://identifiers.org/aop.events/1090 | CDH10 | 1008 |
7256 rows × 3 columns
Section 7.5.2 Significant ORA pathway table plus splitting
In this section, the significant ORA pathway table is created.
Step 55. The significant ORA pathway table is created using the significant enriched patwhays identified from the ORA analysis. This requires data manipulation to restructure the table in a way that the individual genes for the enriched pathways are placed on individual rows.
datafile_ORA3 = pd.read_csv("C:/Users/shaki/Downloads/EMEXP-2599_ORApathwaytable/Comparison 3-Cadmium-timepoint1.txt", sep='\t')
datafileORA3=pd.DataFrame(datafile_ORA3)
filtereddatafileORA_3=datafileORA3[datafileORA3['Adjusted P-value'] < 0.05]
filtereddatafileORA_3
Gene_set | Term | P-value | Adjusted P-value | Old P-value | Old adjusted P-value | Odds Ratio | Combined Score | Genes | |
---|---|---|---|---|---|---|---|---|---|
0 | WikiPathways_2024_Human | Retinoblastoma Gene In Cancer WP2446 | 5.091424e-21 | 4.154602e-18 | 0 | 0 | 8.952987 | 418.343800 | TOP2A;CDKN1A;CDKN1B;MCM7;SUV39H1;HMGB2;SMC2;CC... |
1 | WikiPathways_2024_Human | DNA Repair Pathways Full Network WP4946 | 2.079615e-17 | 8.484830e-15 | 0 | 0 | 5.137071 | 197.324000 | H2AX;FEN1;DCLRE1C;MRE11;WDR48;CCNH;MPG;CETN2;B... |
2 | WikiPathways_2024_Human | DNA IR Damage And Cellular Response Via ATR WP... | 4.199721e-15 | 1.142324e-12 | 0 | 0 | 6.418160 | 212.465200 | H2AX;DCLRE1A;MDC1;FEN1;MRE11;CEP164;UBE2D3;BRC... |
3 | WikiPathways_2024_Human | Cell Cycle WP179 | 4.142647e-14 | 8.450999e-12 | 0 | 0 | 4.172387 | 128.571500 | CDKN1C;GSK3B;CDKN1A;CDKN1B;MCM7;CCNH;CDC14B;CD... |
4 | WikiPathways_2024_Human | Ciliary Landscape WP4352 | 1.388601e-10 | 2.198580e-08 | 0 | 0 | 2.464009 | 55.926970 | DYNC2I2;DGKE;IFT172;UBE2D2;SMC4;DCAF7;PSMD7;MA... |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
72 | WikiPathways_2024_Human | Wnt Signaling WP363 | 3.296962e-03 | 3.685371e-02 | 0 | 0 | 2.349591 | 13.427330 | GSK3B;TCF7L2;CTBP1;PRKCB;RYK;CSNK1A1;LRP5;TSC2... |
73 | WikiPathways_2024_Human | FBXL10 Enhancement Of MAP ERK Signaling In DLB... | 3.496942e-03 | 3.856088e-02 | 0 | 0 | 3.287355 | 18.592840 | H2AX;SUZ12;H2AZ1;KDM2B;EED;MACROH2A2;RNF2;BCL6... |
74 | WikiPathways_2024_Human | Non Small Cell Lung Cancer WP4255 | 3.700015e-03 | 4.025616e-02 | 0 | 0 | 1.979546 | 11.084310 | CDKN1A;TGFA;STK4;RXRB;NRAS;RXRA;CCND1;ERBB2;E2... |
75 | WikiPathways_2024_Human | Prolactin Signaling WP2037 | 4.016661e-03 | 4.312625e-02 | 0 | 0 | 1.939389 | 10.700200 | GSK3B;PXN;IRS2;CBL;SOCS2;SOCS3;MAPK8;ERBB2;EIF... |
76 | WikiPathways_2024_Human | Metabolic Epileptic Disorders WP5355 | 4.391496e-03 | 4.653845e-02 | 0 | 0 | 1.823440 | 9.897786 | SLC25A1;GCDH;ECHS1;GLDC;GLS2;SHMT2;SHMT1;SLC2A... |
77 rows × 9 columns
dropped_datafileORA_df3=filtereddatafileORA_3.drop(['Adjusted P-value','Odds Ratio','Old P-value','Gene_set','P-value','Old adjusted P-value','Combined Score'],axis=1)
droppeddatafileORAdf3=dropped_datafileORA_df3.copy()
droppeddatafileORAdf3['Genes']= droppeddatafileORAdf3['Genes'].replace({';':','},regex=True)
df3_ORApathwaytable=droppeddatafileORAdf3.copy()
df3_ORApathwaytable['Genes'] = df3_ORApathwaytable['Genes'].astype(str)
df3_ORApathwaytable['Genes'] = df3_ORApathwaytable['Genes'].str.split(',')
exploded_df3_ORApathwaytable = df3_ORApathwaytable.explode('Genes', ignore_index=True)
Section 7.5.3 For loop to get overlapping genes
In this section, the number of overlapping genes between the significant enrichment score-based Key Events and enriched pathways from ORA are calculated.
Step 56. Next, two sets are created by converting the significant KE table and ORA pathway table into dictionaries where the values of the genes are grouped together per key. This is followed by running a for loop to calculate the number of overlapping genes along with the symbols.
ORA_gene_sets3 = exploded_df3_ORApathwaytable.groupby('Term')['Genes'].apply(set).to_dict()
SignificantKE_gene_sets3 = significantKEIDgenetable3.groupby('KEID')['gene'].apply(set).to_dict()
overlapping_genes_betweenORA_and_significantKEs3 = {}
for term, ORA_genes in ORA_gene_sets3.items():
for KEID, KEID_genes in SignificantKE_gene_sets3.items():
overlap = ORA_genes.intersection(KEID_genes)
print(f"{term} x {KEID}: {len(overlap)} overlaps")
overlapping_genes_betweenORA_and_significantKEs3[(term, KEID)] = {
'overlapping genes': overlap,
'number of genes that overlap': len(overlap)
}
if overlapping_genes_betweenORA_and_significantKEs3:
print("\ntitle of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:")
for (term, KEID), result in overlapping_genes_betweenORA_and_significantKEs3.items():
print(f"Term: {term}, KEID: {KEID}, Title of overlapping gene(s): {result['overlapping genes']}, number: {result['number of genes that overlap']}")
else:
print("No overlapping genes")
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/105: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1090: 6 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1115: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1271: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1392: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1538: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1539: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1582: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1585: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1669: 9 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1670: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/177: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1814: 9 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1815: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1816: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1896: 9 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1917: 1 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/1945: 6 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/2006: 9 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/201: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/2013: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/202: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/209: 12 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/244: 10 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/249: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/265: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/381: 5 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/386: 5 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/389: 2 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/41: 5 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/459: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/68: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/887: 0 overlaps
ATM Signaling In Development And Disease WP3878 x https://identifiers.org/aop.events/890: 2 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/105: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1090: 6 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1115: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1271: 1 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1392: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1538: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1539: 2 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1582: 2 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1585: 2 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1669: 18 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1670: 3 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/177: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1814: 19 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1815: 2 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1816: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1896: 17 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1917: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/1945: 6 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/2006: 18 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/201: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/2013: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/202: 1 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/209: 14 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/244: 19 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/249: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/265: 1 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/381: 1 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/386: 1 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/389: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/41: 3 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/459: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/68: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/887: 0 overlaps
ATM Signaling WP2516 x https://identifiers.org/aop.events/890: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/105: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1090: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1115: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1271: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1392: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1538: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1539: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1582: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1585: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1669: 4 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1670: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/177: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1814: 4 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1815: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1816: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1896: 6 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1917: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/1945: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/2006: 4 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/201: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/2013: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/202: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/209: 5 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/244: 4 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/249: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/265: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/381: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/386: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/389: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/41: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/459: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/68: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/887: 0 overlaps
ATR Signaling WP3875 x https://identifiers.org/aop.events/890: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/105: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1090: 20 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1115: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1271: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1392: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1538: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1539: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1582: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1585: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1669: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1670: 10 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/177: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1814: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1815: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1816: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1896: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1917: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1945: 18 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2006: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/201: 6 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2013: 8 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/202: 7 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/209: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/244: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/249: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/265: 10 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/381: 14 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/386: 14 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/389: 6 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/41: 7 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/459: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/68: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/887: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/890: 1 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/105: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1090: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1115: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1271: 2 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1392: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1538: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1539: 8 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1582: 4 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1585: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1669: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1670: 3 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/177: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1814: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1815: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1816: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1896: 4 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1917: 2 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/1945: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/2006: 7 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/201: 1 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/2013: 3 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/202: 2 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/209: 6 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/244: 8 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/249: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/265: 5 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/381: 5 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/386: 5 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/389: 1 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/41: 3 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/459: 1 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/68: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/887: 0 overlaps
Androgen Receptor Signaling WP138 x https://identifiers.org/aop.events/890: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/105: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1090: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1115: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1271: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1392: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1538: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1539: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1582: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1585: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1669: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1670: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/177: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1814: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1815: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1816: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1896: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1917: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1945: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2006: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/201: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2013: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/202: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/209: 10 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/244: 9 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/249: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/265: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/381: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/386: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/389: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/41: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/459: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/68: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/887: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/890: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/105: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1090: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1115: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1271: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1392: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1538: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1539: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1582: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1585: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1669: 6 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1670: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/177: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1814: 8 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1815: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1816: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1896: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1917: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1945: 9 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2006: 6 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/201: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2013: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/202: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/209: 6 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/244: 11 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/249: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/265: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/381: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/386: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/389: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/41: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/459: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/68: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/887: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/890: 3 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/105: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1090: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1115: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1271: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1392: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1538: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1539: 1 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1582: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1585: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1669: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1670: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/177: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1814: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1815: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1816: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1896: 20 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1917: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1945: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/2006: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/201: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/2013: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/202: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/209: 20 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/244: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/249: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/265: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/381: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/386: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/389: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/41: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/459: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/68: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/887: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/890: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/105: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 65 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1115: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1271: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1392: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1538: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1539: 24 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1582: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1585: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1669: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1670: 30 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/177: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1814: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1815: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1816: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1896: 26 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1917: 20 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1945: 70 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2006: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/201: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2013: 13 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/202: 8 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 58 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 54 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/249: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/265: 29 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/381: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/386: 34 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/389: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/41: 27 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/459: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/68: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/887: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/890: 5 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/105: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1090: 13 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1115: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1271: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1392: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1538: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1539: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1582: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1585: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1669: 29 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1670: 11 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/177: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1814: 28 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1815: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1816: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1896: 27 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1917: 4 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1945: 14 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2006: 28 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/201: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2013: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/202: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/209: 18 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/244: 30 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/249: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/265: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/381: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/386: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/389: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/41: 9 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/459: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/68: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/887: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/890: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/105: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1090: 4 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1115: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1271: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1392: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1538: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1539: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1582: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1585: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1669: 4 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1670: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/177: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1814: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1815: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1816: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1896: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1917: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1945: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2006: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/201: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2013: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/202: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/209: 6 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/244: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/249: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/265: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/381: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/386: 4 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/389: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/41: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/459: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/68: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/887: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/890: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/105: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1090: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1115: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1271: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1392: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1538: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1539: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1582: 3 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1585: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1669: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1670: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/177: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1814: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1815: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1816: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1896: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1917: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1945: 5 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/2006: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/201: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/2013: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/202: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/209: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/244: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/249: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/265: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/381: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/386: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/389: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/41: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/459: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/68: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/887: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/890: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/105: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1090: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1115: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1271: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1392: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1538: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1539: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1582: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1585: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1669: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1670: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/177: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1814: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1815: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1816: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1896: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1917: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1945: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/2006: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/201: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/2013: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/202: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/209: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/244: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/249: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/265: 5 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/381: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/386: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/389: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/41: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/459: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/68: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/887: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/890: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1090: 11 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1539: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1582: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1585: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1669: 40 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1670: 11 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1814: 40 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1815: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1896: 40 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1945: 14 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2006: 40 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/201: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2013: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/202: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/209: 24 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/244: 40 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/265: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/381: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/386: 2 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/389: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/41: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/459: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/887: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/890: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/105: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1090: 6 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1539: 2 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1582: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1585: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1669: 16 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1670: 2 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/177: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1814: 16 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1815: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1896: 31 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1945: 3 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2006: 16 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/201: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/202: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/209: 26 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/244: 16 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/249: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/265: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/381: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/386: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/389: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/41: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/459: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/68: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/887: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/890: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/105: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1090: 4 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1539: 3 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1582: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1585: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1669: 14 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1670: 3 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/177: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1814: 14 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1815: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1896: 19 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1945: 3 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/2006: 14 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/201: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/202: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/209: 14 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/244: 14 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/249: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/265: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/381: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/386: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/389: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/41: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/459: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/68: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/887: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1090: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1669: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1814: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1896: 17 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1945: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2006: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/201: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/209: 17 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/244: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/265: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/389: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/41: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/459: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/887: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1090: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1539: 2 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1669: 9 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1670: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1814: 9 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1896: 78 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1917: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1945: 2 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2006: 9 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/201: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/209: 78 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/244: 10 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/265: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/381: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/386: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/389: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/41: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/459: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/887: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/105: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1090: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1669: 3 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/177: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1814: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1896: 12 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1945: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2006: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/201: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/209: 12 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/244: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/265: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/389: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/41: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/459: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/887: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/890: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/105: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1090: 11 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1115: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1271: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1392: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1538: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1539: 2 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1582: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1585: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1669: 7 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1670: 4 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/177: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1814: 7 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1815: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1816: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1896: 5 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1917: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1945: 13 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/2006: 7 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/201: 2 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/2013: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/202: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/209: 9 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/244: 7 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/249: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/265: 1 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/381: 3 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/386: 4 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/389: 2 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/41: 4 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/459: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/68: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/887: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/890: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/105: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1090: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1115: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1271: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1392: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1538: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1539: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1582: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1585: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1669: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1670: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/177: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1814: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1815: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1816: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1896: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1917: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/1945: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/2006: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/201: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/2013: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/202: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/209: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/244: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/249: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/265: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/381: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/386: 2 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/389: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/41: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/459: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/68: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/887: 0 overlaps
Disorders Of Folate Metabolism And Transport WP4259 x https://identifiers.org/aop.events/890: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/105: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1090: 18 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1115: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1271: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1392: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1538: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1539: 70 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1582: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1585: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1669: 12 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1670: 14 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/177: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1814: 12 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1815: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1816: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1896: 5 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1917: 2 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1945: 22 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/2006: 12 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/201: 8 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/2013: 10 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/202: 11 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/209: 8 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/244: 13 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/249: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/265: 16 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/381: 23 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/386: 25 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/389: 8 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/41: 5 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/459: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/68: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/887: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/890: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/105: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1090: 20 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1115: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1271: 2 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1392: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1538: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1539: 15 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1582: 4 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1585: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1669: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1670: 15 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/177: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1814: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1815: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1816: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1896: 2 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1917: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1945: 34 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/2006: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/201: 8 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/2013: 6 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/202: 4 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/209: 6 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/244: 9 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/249: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/265: 14 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/381: 16 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/386: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/389: 8 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/41: 6 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/459: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/68: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/887: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/890: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/105: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1090: 4 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1115: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1271: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1392: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1538: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1539: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1582: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1585: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1669: 2 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1670: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/177: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1814: 2 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1815: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1816: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1896: 1 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1917: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/1945: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/2006: 2 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/201: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/2013: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/202: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/209: 1 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/244: 2 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/249: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/265: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/381: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/386: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/389: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/41: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/459: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/68: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/887: 0 overlaps
FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553 x https://identifiers.org/aop.events/890: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/105: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1090: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1115: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1271: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1392: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1538: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1539: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1582: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1585: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1669: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1670: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/177: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1814: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1815: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1816: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1896: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1917: 8 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1945: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2006: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/201: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2013: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/202: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/209: 12 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/244: 9 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/249: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/265: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/381: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/386: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/389: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/41: 9 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/459: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/68: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/887: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/890: 3 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/105: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1090: 10 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1115: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1271: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1392: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1538: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1539: 2 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1582: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1585: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1669: 20 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1670: 9 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/177: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1814: 19 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1815: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1816: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1896: 23 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1917: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1945: 12 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2006: 19 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/201: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2013: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/202: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/209: 15 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/244: 19 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/249: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/265: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/381: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/386: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/389: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/41: 4 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/459: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/68: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/887: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/890: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/105: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1090: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1115: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1271: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1392: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1538: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1539: 2 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1582: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1669: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1670: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/177: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1814: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1816: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1896: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1917: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1945: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2006: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/201: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2013: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/202: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/209: 4 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/244: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/249: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/265: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/381: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/386: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/389: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/41: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/459: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/887: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/890: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/105: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1090: 1 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1115: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1271: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1392: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1538: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1539: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1582: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1585: 1 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1669: 2 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1670: 1 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/177: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1814: 2 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1815: 1 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1816: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1896: 5 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1917: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1945: 2 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/2006: 2 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/201: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/2013: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/202: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/209: 3 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/244: 2 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/249: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/265: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/381: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/386: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/389: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/41: 1 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/459: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/887: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/890: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/105: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1090: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1115: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1271: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1392: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1538: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1539: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1582: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1585: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1669: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1670: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/177: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1814: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1815: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1816: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1896: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1917: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/1945: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/2006: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/201: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/2013: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/202: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/209: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/244: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/249: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/265: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/381: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/386: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/389: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/41: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/459: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/68: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/887: 0 overlaps
Genes Related To Primary Cilium Development Based On CRISPR WP4536 x https://identifiers.org/aop.events/890: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/105: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1090: 21 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1115: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1271: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1392: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1538: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1539: 15 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1582: 2 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1585: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1669: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1670: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/177: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1814: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1815: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1816: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1896: 14 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1917: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1945: 24 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/2006: 17 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/201: 6 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/2013: 4 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/202: 7 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/209: 11 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/244: 18 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/249: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/265: 8 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/381: 9 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/386: 9 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/389: 6 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/41: 5 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/459: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/68: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/887: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/890: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/105: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1090: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1115: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1271: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1392: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1538: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1539: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1582: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1585: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1669: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1670: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/177: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1814: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1815: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1816: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1896: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1917: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1945: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2006: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/201: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2013: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/202: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/209: 5 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/244: 4 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/249: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/265: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/381: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/386: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/389: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/41: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/459: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/68: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/887: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/890: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/105: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1090: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1115: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1271: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1392: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1538: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1539: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1582: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1585: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1669: 3 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1670: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/177: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1814: 3 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1815: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1816: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1896: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1917: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/1945: 12 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/2006: 3 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/201: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/2013: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/202: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/209: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/244: 3 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/249: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/265: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/381: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/386: 2 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/389: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/41: 3 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/459: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/68: 1 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/887: 0 overlaps
Glycogen Synthesis And Degradation WP500 x https://identifiers.org/aop.events/890: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/105: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 17 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1115: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1271: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1392: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1538: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1539: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1582: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1585: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1669: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1670: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/177: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1814: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1815: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1816: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1896: 8 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1917: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1945: 20 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2006: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/201: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2013: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/202: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/209: 13 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/249: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/265: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/381: 8 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/386: 8 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/389: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/41: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/459: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/68: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/887: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/890: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/105: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1090: 17 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1115: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1271: 5 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1392: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1538: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1539: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1582: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1585: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1669: 10 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1670: 6 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/177: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1814: 10 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1815: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1816: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1896: 5 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1917: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1945: 15 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/2006: 10 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/201: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/2013: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/202: 6 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/209: 9 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/244: 10 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/249: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/265: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/381: 8 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/386: 11 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/389: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/41: 5 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/459: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/68: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/887: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/890: 2 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/105: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1090: 25 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1115: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1271: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1392: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1538: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1539: 25 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1582: 3 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1585: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1669: 11 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1670: 8 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/177: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1814: 12 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1815: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1816: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1896: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1917: 4 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1945: 26 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2006: 11 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/201: 7 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2013: 10 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/202: 13 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/209: 10 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/244: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/249: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/265: 15 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/381: 26 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/386: 29 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/389: 7 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/41: 12 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/459: 2 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/68: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/887: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/890: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/105: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1090: 9 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1115: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1271: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1392: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1538: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1539: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1582: 2 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1585: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1669: 14 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1670: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/177: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1814: 14 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1815: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1816: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1896: 16 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1917: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1945: 8 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2006: 14 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/201: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2013: 2 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/202: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/209: 11 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/244: 14 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/249: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/265: 2 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/381: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/386: 2 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/389: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/41: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/459: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/68: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/887: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/890: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/105: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1090: 9 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1115: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1271: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1392: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1538: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1539: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1582: 2 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1585: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1669: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1670: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/177: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1814: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1815: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1816: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1896: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1917: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1945: 11 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/2006: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/201: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/2013: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/202: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/209: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/244: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/249: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/265: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/381: 5 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/386: 9 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/389: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/41: 2 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/459: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/68: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/887: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/890: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/105: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1090: 3 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1115: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1271: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1392: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1538: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1539: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1582: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1585: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1669: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1670: 1 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/177: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1814: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1815: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1816: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1896: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1917: 1 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/1945: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/2006: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/201: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/2013: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/202: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/209: 1 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/244: 1 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/249: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/265: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/381: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/386: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/389: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/41: 1 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/459: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/68: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/887: 0 overlaps
Kleefstra Syndrome WP5351 x https://identifiers.org/aop.events/890: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/105: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1090: 10 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1115: 1 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1271: 1 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1392: 1 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1538: 1 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1539: 10 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1582: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1585: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1669: 5 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1670: 7 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/177: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1814: 5 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1815: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1816: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1896: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1917: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1945: 6 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/2006: 5 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/201: 4 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/2013: 4 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/202: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/209: 2 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/244: 5 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/249: 1 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/265: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/381: 10 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/386: 7 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/389: 4 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/41: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/459: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/68: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/887: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/890: 1 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/105: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1090: 30 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1115: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1271: 5 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1392: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1538: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1539: 15 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1582: 3 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1585: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1669: 8 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1670: 7 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/177: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1814: 9 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1815: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1816: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1896: 5 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1917: 4 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/1945: 18 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/2006: 8 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/201: 5 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/2013: 6 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/202: 10 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/209: 14 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/244: 10 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/249: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/265: 12 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/381: 16 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/386: 22 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/389: 5 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/41: 8 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/459: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/68: 2 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/887: 0 overlaps
Macrophage Stimulating Protein MSP Signaling WP5353 x https://identifiers.org/aop.events/890: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/105: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1090: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1115: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1271: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1392: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1538: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1582: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/177: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1816: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1917: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/201: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2013: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/209: 5 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/244: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/249: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/265: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/386: 8 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/389: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/41: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/459: 4 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/68: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/887: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/890: 1 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/105: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1090: 19 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1115: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1271: 4 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1392: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1538: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1539: 9 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1582: 3 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1585: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1669: 5 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1670: 6 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/177: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1814: 5 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1815: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1816: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1896: 1 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1917: 3 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1945: 14 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/2006: 5 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/201: 3 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/2013: 9 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/202: 9 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/209: 14 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/244: 5 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/249: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/265: 11 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/381: 11 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/386: 18 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/389: 3 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/41: 5 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/459: 1 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/68: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/887: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/890: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/105: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1090: 9 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1115: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1271: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1392: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1538: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1539: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1582: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1585: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1669: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1670: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/177: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1814: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1815: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1816: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1896: 10 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1917: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1945: 8 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2006: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/201: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2013: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/202: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/209: 9 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/244: 6 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/249: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/265: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/381: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/386: 4 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/389: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/41: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/459: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/68: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/887: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/890: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/105: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1090: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1115: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1271: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1392: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1538: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1539: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1582: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1585: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1669: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1670: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/177: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1814: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1815: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1816: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1896: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1917: 14 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1945: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/2006: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/201: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/2013: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/202: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/209: 10 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/244: 14 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/249: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/265: 4 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/381: 3 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/386: 4 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/389: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/41: 14 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/459: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/68: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/887: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/890: 3 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/105: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1090: 6 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1115: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1271: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1392: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1538: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1539: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1582: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1585: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1669: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1670: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/177: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1814: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1815: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1816: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1896: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1917: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1945: 11 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/2006: 1 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/201: 2 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/2013: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/202: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/209: 6 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/244: 2 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/249: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/265: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/381: 2 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/386: 2 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/389: 2 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/41: 4 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/459: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/68: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/887: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/890: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/105: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1090: 7 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1115: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1271: 3 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1392: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1538: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1539: 10 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1582: 1 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1585: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1669: 4 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1670: 5 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/177: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1814: 4 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1815: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1816: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1896: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1917: 3 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1945: 11 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/2006: 4 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/201: 1 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/2013: 5 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/202: 7 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/209: 11 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/244: 6 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/249: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/265: 9 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/381: 7 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/386: 15 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/389: 1 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/41: 3 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/459: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/68: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/887: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/890: 2 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/105: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1090: 13 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1115: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1271: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1392: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1538: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1539: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1582: 3 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1585: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1669: 17 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1670: 32 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/177: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1814: 17 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1815: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1816: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1896: 11 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1917: 3 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1945: 17 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/2006: 17 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/201: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/2013: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/202: 4 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/209: 9 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/244: 20 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/249: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/265: 9 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/381: 10 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/386: 9 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/389: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/41: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/459: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/68: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/887: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/890: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/105: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1090: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1115: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1271: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1392: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1538: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1539: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1582: 2 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1585: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1669: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1670: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/177: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1814: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1815: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1816: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1896: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1917: 51 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1945: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2006: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/201: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2013: 2 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/202: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/209: 58 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/244: 58 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/249: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/265: 13 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/381: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/386: 13 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/389: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/41: 58 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/459: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/68: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/887: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/890: 7 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/105: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1090: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1115: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1271: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1392: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1538: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1539: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1582: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1669: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1670: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/177: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1814: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1816: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1896: 30 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1917: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1945: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/2006: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/201: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/2013: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/202: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/209: 30 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/244: 4 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/249: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/265: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/381: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/386: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/389: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/41: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/459: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/887: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/890: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/105: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1090: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1115: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1271: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1392: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1538: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1539: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1582: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1669: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1670: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/177: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1814: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1816: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1896: 26 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1917: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1945: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2006: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/201: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2013: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/202: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/209: 26 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/244: 3 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/249: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/265: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/381: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/386: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/389: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/41: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/459: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/887: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/890: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/105: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1090: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1115: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1271: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1392: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1538: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1539: 17 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1582: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1585: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1669: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1670: 8 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/177: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1814: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1815: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1816: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1896: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1917: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1945: 16 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2006: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/201: 4 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2013: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/202: 7 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/209: 7 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/244: 8 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/249: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/265: 11 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/381: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/386: 16 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/389: 4 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/41: 5 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/459: 1 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/68: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/887: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/890: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/105: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1090: 8 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1115: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1271: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1392: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1538: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1539: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1582: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1585: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1669: 7 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1670: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/177: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1814: 7 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1815: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1816: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1896: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1917: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1945: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/2006: 7 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/201: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/2013: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/202: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/209: 9 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/244: 9 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/249: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/265: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/381: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/386: 6 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/389: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/41: 6 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/459: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/68: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/887: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/890: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/105: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1090: 13 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1115: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1271: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1392: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1538: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1539: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1582: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1585: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1669: 14 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1670: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/177: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1814: 13 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1815: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1816: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1896: 20 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1917: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1945: 11 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2006: 13 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/201: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2013: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/202: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/209: 54 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/244: 15 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/249: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/265: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/381: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/386: 7 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/389: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/41: 7 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/459: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/68: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/887: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/890: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/105: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1090: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1115: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1271: 5 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1392: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1538: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1539: 16 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1582: 3 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1585: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1669: 19 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1670: 20 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/177: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1814: 19 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1815: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1816: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1896: 13 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1917: 5 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1945: 22 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/2006: 19 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/201: 4 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/2013: 7 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/202: 6 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/209: 13 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/244: 22 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/249: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/265: 13 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/381: 12 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/386: 15 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/389: 4 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/41: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/459: 1 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/68: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/887: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/890: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/105: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1090: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1115: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1271: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1392: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1538: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1539: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1582: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1585: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1669: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1670: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/177: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1814: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1815: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1816: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1896: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1917: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1945: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/2006: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/201: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/2013: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/202: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/209: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/244: 3 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/249: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/265: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/381: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/386: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/389: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/41: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/459: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/68: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/887: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/890: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1090: 5 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1115: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1271: 1 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1392: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1538: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1539: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1585: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1669: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1670: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1814: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1815: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1896: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1917: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1945: 5 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/2006: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/201: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/2013: 1 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/202: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/209: 5 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/244: 5 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/249: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/265: 1 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/381: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/386: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/389: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/41: 4 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/459: 1 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/68: 1 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/887: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/890: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1090: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1115: 4 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1271: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1392: 4 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1538: 4 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1539: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1585: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1669: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1670: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1814: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1815: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1917: 8 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1945: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2006: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/201: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2013: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/202: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/209: 10 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/244: 9 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/249: 4 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/265: 5 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/381: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/386: 3 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/389: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/41: 9 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/459: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/887: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/890: 4 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1090: 2 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1115: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1271: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1392: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1538: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1539: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1585: 7 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1669: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1670: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1814: 7 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1815: 7 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1917: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1945: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/2006: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/201: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/2013: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/202: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/209: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/244: 7 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/249: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/265: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/381: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/386: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/389: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/41: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/459: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/887: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/890: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/105: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1090: 159 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1115: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1271: 4 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1392: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1538: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1539: 18 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1582: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1585: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1669: 28 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1670: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/177: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1814: 30 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1815: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1816: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1896: 11 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1917: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1945: 63 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2006: 28 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/201: 8 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2013: 8 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/202: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/209: 46 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/244: 33 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/249: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/265: 11 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/381: 24 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/386: 29 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/389: 8 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/41: 15 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/459: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/68: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/887: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/890: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/105: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1090: 14 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1115: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1271: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1392: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1538: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1539: 5 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1582: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1585: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1669: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1670: 3 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/177: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1814: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1815: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1816: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1896: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1917: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1945: 11 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/2006: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/201: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/2013: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/202: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/209: 8 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/244: 5 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/249: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/265: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/381: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/386: 5 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/389: 2 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/41: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/459: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/68: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/887: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/890: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/105: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1090: 13 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1115: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1271: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1392: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1538: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1539: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1582: 3 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1585: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1669: 7 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1670: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/177: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1814: 7 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1815: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1816: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1896: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1917: 3 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1945: 12 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2006: 7 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/201: 5 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2013: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/202: 9 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/209: 6 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/244: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/249: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/265: 12 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/381: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/386: 19 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/389: 5 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/41: 7 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/459: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/68: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/887: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/890: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/105: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1090: 13 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1115: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1271: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1392: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1538: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1539: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1582: 1 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1585: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1669: 5 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1670: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/177: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1814: 5 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1815: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1816: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1896: 3 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1917: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1945: 13 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/2006: 5 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/201: 8 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/2013: 4 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/202: 3 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/209: 7 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/244: 5 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/249: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/265: 7 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/381: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/386: 7 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/389: 8 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/41: 4 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/459: 1 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/68: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/887: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/890: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/105: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1090: 10 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1115: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1271: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1392: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1538: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1539: 5 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1582: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1585: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1669: 19 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1670: 8 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/177: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1814: 18 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1815: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1816: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1896: 28 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1917: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1945: 12 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2006: 18 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/201: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2013: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/202: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/209: 18 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/244: 18 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/249: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/265: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/381: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/386: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/389: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/41: 4 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/459: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/68: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/887: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/890: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/105: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1090: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1115: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1271: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1392: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1538: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1539: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1582: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1585: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1669: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1670: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/177: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1814: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1815: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1816: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1896: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1917: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1945: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/2006: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/201: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/2013: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/202: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/209: 5 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/244: 4 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/249: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/265: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/381: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/386: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/389: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/41: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/459: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/68: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/887: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/890: 2 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/105: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1090: 9 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1115: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1271: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1392: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1538: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1539: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1582: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1585: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1669: 9 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1670: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/177: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1814: 9 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1815: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1816: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1896: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1917: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1945: 7 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/2006: 9 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/201: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/2013: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/202: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/209: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/244: 10 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/249: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/265: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/381: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/386: 7 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/389: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/41: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/459: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/68: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/887: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/890: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/105: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1090: 24 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1115: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1271: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1392: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1538: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1539: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1582: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1585: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1669: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1670: 14 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/177: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1814: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1815: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1816: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1896: 15 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1917: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1945: 27 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2006: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/201: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2013: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/202: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 9 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 17 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/249: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/265: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/381: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/386: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/389: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/41: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/459: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/68: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/887: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/890: 1 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/105: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1090: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1115: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1271: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1392: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1538: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1539: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1582: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1585: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1669: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1670: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/177: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1814: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1815: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1816: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1896: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1917: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/1945: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/2006: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/201: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/2013: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/202: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/209: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/244: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/249: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/265: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/381: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/386: 1 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/389: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/41: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/459: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/68: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/887: 0 overlaps
Spina Bifida WP5150 x https://identifiers.org/aop.events/890: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/105: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1090: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1115: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1271: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1392: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1538: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1539: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1582: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1585: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1669: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1670: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/177: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1814: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1815: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1816: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1896: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1917: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1945: 1 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2006: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/201: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2013: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/202: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/209: 6 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/244: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/249: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/265: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/381: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/386: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/389: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/41: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/459: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/68: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/887: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/890: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/105: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1090: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1115: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1271: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1392: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1538: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1539: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1582: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1585: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1669: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1670: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/177: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1814: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1815: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1816: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1896: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1917: 11 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1945: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2006: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/201: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2013: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/202: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/209: 8 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/244: 11 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/249: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/265: 3 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/381: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/386: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/389: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/41: 11 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/459: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/68: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/887: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/890: 3 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/105: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1090: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1115: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1271: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1392: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1538: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1539: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1582: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1585: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1669: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1670: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/177: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1814: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1815: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1816: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1896: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1917: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1945: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/2006: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/201: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/2013: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/202: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/209: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/244: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/249: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/265: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/381: 5 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/386: 4 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/389: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/41: 3 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/459: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/68: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/887: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/890: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/105: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1090: 7 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1115: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1271: 2 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1392: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1538: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1539: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1582: 1 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1585: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1669: 3 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1670: 2 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/177: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1814: 3 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1815: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1816: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1896: 2 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1917: 5 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1945: 3 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/2006: 3 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/201: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/2013: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/202: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/209: 7 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/244: 7 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/249: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/265: 2 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/381: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/386: 3 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/389: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/41: 6 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/459: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/68: 1 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/887: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/890: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/105: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1090: 3 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1115: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1271: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1392: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1538: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1539: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1582: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1585: 16 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1669: 3 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1670: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/177: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1814: 16 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1815: 16 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1816: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1896: 3 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1917: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1945: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2006: 3 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/201: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2013: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/202: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/209: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/244: 16 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/249: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/265: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/381: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/386: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/389: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/41: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/459: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/68: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/887: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/890: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/105: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 28 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1115: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1271: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1392: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1538: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1539: 29 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1582: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1585: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1669: 8 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1670: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/177: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1814: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1815: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1816: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1896: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1917: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1945: 28 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2006: 8 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/201: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2013: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/202: 13 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 21 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 19 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/249: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/265: 18 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/381: 24 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/386: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/389: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/41: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/459: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/68: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/887: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/890: 3 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/105: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1090: 16 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1115: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1271: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1392: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1538: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1539: 5 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1582: 4 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1585: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1669: 10 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1670: 5 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/177: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1814: 10 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1815: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1816: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1896: 3 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1917: 3 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/1945: 9 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/2006: 10 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/201: 3 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/2013: 1 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/202: 2 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/209: 18 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/244: 11 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/249: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/265: 4 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/381: 6 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/386: 8 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/389: 3 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/41: 6 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/459: 1 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/68: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/887: 0 overlaps
Wnt Signaling WP363 x https://identifiers.org/aop.events/890: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/105: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1090: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1115: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1271: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1392: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1538: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1539: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1582: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1585: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1669: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1670: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/177: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1814: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1815: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1816: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1896: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1917: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1945: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2006: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/201: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2013: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/202: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/209: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/244: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/249: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/265: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/381: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/386: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/389: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/41: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/459: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/68: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/887: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/890: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/105: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1090: 10 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1115: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1271: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1392: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1538: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1539: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1582: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1585: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1669: 40 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1670: 10 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/177: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1814: 39 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1815: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1816: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1896: 39 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1917: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1945: 13 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2006: 39 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/201: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2013: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/202: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/209: 25 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/244: 39 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/249: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/265: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/381: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/386: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/389: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/41: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/459: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/68: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/887: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/890: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/105: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1090: 6 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1115: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1271: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1392: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1538: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1539: 2 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1582: 1 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1585: 1 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1669: 11 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1670: 5 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/177: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1814: 11 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1815: 1 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1816: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1896: 11 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1917: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/1945: 8 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/2006: 11 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/201: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/2013: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/202: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/209: 6 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/244: 11 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/249: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/265: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/381: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/386: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/389: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/41: 2 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/459: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/68: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/887: 0 overlaps
miRNAs Involved In DNA Damage Response WP1545 x https://identifiers.org/aop.events/890: 0 overlaps
title of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2', 'CDK2', 'TP53', 'NFKB1'}, number: 6
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAPK14'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AURKB'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'ATR', 'CDC25A', 'RAD50', 'CDK2', 'CHEK1', 'MRE11', 'CDK5', 'TP53', 'NFKB1'}, number: 9
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ATR', 'CDC25A', 'RAD50', 'CDK2', 'CHEK1', 'MRE11', 'CDK5', 'TP53', 'NFKB1'}, number: 9
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'ATR', 'CDC25A', 'RAD50', 'CDK2', 'CHEK1', 'MRE11', 'CDK5', 'DCLRE1C', 'TP53'}, number: 9
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'G6PD'}, number: 1
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'TSC2', 'CDK2', 'STK11', 'TP53', 'NFKB1'}, number: 6
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'ATR', 'CDC25A', 'RAD50', 'CDK2', 'CHEK1', 'MRE11', 'CDK5', 'TP53', 'NFKB1'}, number: 9
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'ATR', 'CDC25A', 'TSC2', 'RAD50', 'G6PD', 'CDK2', 'CHEK1', 'MRE11', 'DCLRE1C', 'NFKB1'}, number: 12
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ATR', 'CDC25A', 'RAD50', 'G6PD', 'CDK2', 'CHEK1', 'MRE11', 'CDK5', 'TP53', 'NFKB1'}, number: 10
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2', 'CDK5', 'NFKB1'}, number: 5
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'TSC2', 'CDK5', 'NFKB1'}, number: 5
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TSC2', 'G6PD', 'STK11', 'TP53'}, number: 5
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling In Development And Disease WP3878, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1', 'CDK2', 'CDKN1A', 'TP53', 'JUN', 'CCNE1'}, number: 6
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'ABL1'}, number: 2
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'CDK1'}, number: 2
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53', 'CASP2'}, number: 2
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDC25C', 'CDC25A', 'CDK1', 'CCNB1', 'BRCA1', 'RAD50', 'ABL1', 'CDK2', 'CHEK1', 'PIDD1', 'JUN', 'CDKN1A', 'MRE11', 'RAD51', 'TP53', 'H2AX', 'CCNE1', 'GADD45A'}, number: 18
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53', 'CDKN1A', 'GADD45A'}, number: 3
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCNB1', 'CASP2', 'H2AX', 'CCNE1', 'CDK1', 'CHEK1', 'PIDD1', 'RAD50', 'CDK2', 'MRE11', 'RAD51', 'TP53', 'JUN', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'ABL1', 'CDKN1A'}, number: 19
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53', 'CASP2'}, number: 2
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDC25C', 'CDC25A', 'CDK1', 'CCNB1', 'BRCA1', 'RAD50', 'ABL1', 'CDK2', 'CHEK1', 'PIDD1', 'CDKN1A', 'MRE11', 'RAD51', 'TP53', 'H2AX', 'CCNE1', 'GADD45A'}, number: 17
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'ABL1', 'CDK2', 'CDKN1A', 'TP53', 'CCNE1'}, number: 6
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDC25C', 'CDC25A', 'CDK1', 'CCNB1', 'BRCA1', 'RAD50', 'ABL1', 'CDK2', 'CHEK1', 'PIDD1', 'JUN', 'CDKN1A', 'MRE11', 'RAD51', 'TP53', 'H2AX', 'CCNE1', 'GADD45A'}, number: 18
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN'}, number: 1
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25C', 'CDC25A', 'BRCA1', 'RAD50', 'H2AX', 'CDK2', 'CHEK1', 'JUN', 'CDKN1A', 'MRE11', 'RAD51', 'PIDD1', 'CCNE1', 'GADD45A'}, number: 14
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCNB1', 'CASP2', 'H2AX', 'CCNE1', 'CDK1', 'CHEK1', 'PIDD1', 'RAD50', 'CDK2', 'MRE11', 'RAD51', 'TP53', 'JUN', 'GADD45A', 'CDC25C', 'CDC25A', 'BRCA1', 'ABL1', 'CDKN1A'}, number: 19
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUN'}, number: 1
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN'}, number: 1
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN'}, number: 1
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'CDKN1A', 'CCNB1'}, number: 3
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: ATM Signaling WP2516, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'RAD1', 'ATR', 'CHEK1'}, number: 4
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'RAD1', 'ATR', 'CHEK1'}, number: 4
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'ATR', 'RPA2', 'RPA1', 'CHEK1', 'RPA3', 'RAD1'}, number: 6
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'RAD1', 'ATR', 'CHEK1'}, number: 4
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ATR', 'RPA2', 'RPA1', 'CHEK1', 'RPA3'}, number: 5
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2', 'RAD1', 'ATR', 'CHEK1'}, number: 4
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: ATR Signaling WP3875, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BARD1', 'CDK4', 'NDRG1', 'TSC2', 'RAF1', 'JAK1', 'MAPK8', 'MTOR', 'CDK2', 'EIF4EBP1', 'CCND1', 'TP53', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1', 'BRCA1', 'E2F1', 'SOS1'}, number: 20
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3', 'JAK1'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'RICTOR', 'MAP2K2', 'MAPK14', 'AKT1', 'MAP2K1', 'E2F1', 'SOS1', 'RAF1', 'EIF4EBP1', 'RAP1A', 'RASA1', 'PTPN11', 'JUN', 'STAT3', 'JAK1', 'MAPK8'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'STAT3', 'CDK1'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'SOS1', 'CDK2', 'CHEK1', 'MRE11', 'CCND1', 'TP53', 'JUN', 'MAPK8'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'AKT1', 'E2F1', 'SOS1', 'RAF1', 'CCND1', 'TP53', 'STAT3', 'MAP2K1'}, number: 10
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'SOS1', 'CDK2', 'CHEK1', 'MRE11', 'CCND1', 'TP53', 'JUN', 'MAPK8'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'MSH6', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'CHEK1', 'MSH2', 'MRE11', 'RAP1A', 'CCND1', 'TP53'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'CDK4', 'MAP2K2', 'AKT1', 'TSC2', 'MAP2K1', 'BRCA1', 'SOS1', 'CDK2', 'RAF1', 'EIF4EBP1', 'RAP1A', 'CCND1', 'RASA1', 'PTPN11', 'TP53', 'JAK1', 'MAPK8'}, number: 18
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'SOS1', 'CDK2', 'CHEK1', 'MRE11', 'CCND1', 'TP53', 'JUN', 'MAPK8'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1', 'TSC2', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 6
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'SOS1', 'JAK1', 'PTPN11', 'STAT3', 'MAP2K1'}, number: 8
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'PTPN11', 'JUN', 'MAP2K1', 'MAPK8'}, number: 7
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK14', 'ATR', 'CDC25A', 'TSC2', 'MSH6', 'BRCA1', 'RAD50', 'CDK2', 'CHEK1', 'MSH2', 'MMP1', 'MRE11', 'RAP1A', 'CCND1', 'JUN', 'MAPK8'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'SOS1', 'CDK2', 'CHEK1', 'MRE11', 'CCND1', 'TP53', 'JUN', 'MAPK8'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'MAP2K1', 'SOS1', 'RAF1', 'PXN', 'RAP1A', 'JUN', 'STAT3', 'JAK1'}, number: 10
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'MAPK14', 'AKT1', 'TSC2', 'SOS1', 'RAF1', 'EIF4EBP1', 'RAP1A', 'PTPN11', 'JUN', 'STAT3', 'MAP2K1', 'MAPK8'}, number: 14
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'MAPK14', 'AKT1', 'TSC2', 'MAP2K1', 'RAF1', 'EIF4EBP1', 'RAP1A', 'PTPN11', 'JUN', 'STAT3', 'JAK1', 'MAPK8'}, number: 14
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1', 'TSC2', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 6
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'AKT1', 'TSC2', 'FKBP5', 'EIF4EBP1', 'TP53', 'MAPK8'}, number: 7
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'BRCA1', 'CCND1', 'JUN', 'CCNE1'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3'}, number: 2
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PIAS3', 'AKT1', 'LIMK2', 'CDC42', 'CAV1', 'NCOA3', 'JUN', 'STAT3'}, number: 8
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'CDC42', 'STAT3', 'GSK3B'}, number: 4
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'BRCA1', 'CDC42', 'CCND1', 'JUN', 'CCNE1'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT3', 'CCND1', 'AKT1'}, number: 3
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'BRCA1', 'CDC42', 'CCND1', 'JUN', 'CCNE1'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BRCA1', 'CCNE1', 'CCND1', 'AKT1'}, number: 4
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSK3B', 'PRDX1'}, number: 2
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'BRCA1', 'CDC42', 'CCND1', 'CCNE1'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'BRCA1', 'CDC42', 'CCND1', 'JUN', 'CCNE1'}, number: 7
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'FLNA', 'STAT3', 'AKT1'}, number: 3
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSK3B', 'BRCA1', 'PRDX1', 'CCND1', 'JUN', 'CCNE1'}, number: 6
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'BRCA1', 'CDC42', 'PRDX1', 'CCND1', 'JUN', 'CCNE1'}, number: 8
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CDC42', 'JUN', 'STAT3'}, number: 5
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CDC42', 'JUN', 'STAT3'}, number: 5
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CDC42', 'JUN', 'STAT3'}, number: 5
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GSK3B', 'PRDX1', 'AKT1'}, number: 3
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Signaling WP138, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'IL6', 'MMP3', 'CCL2', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'NFKB1'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NQO1', 'HMOX1', 'RXRA', 'KEAP1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'IKBKB', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'IKBKB', 'NFKB1'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'CCL2', 'IKBKB', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NQO1', 'CCL2', 'MMP1', 'HMOX1', 'RXRA', 'KEAP1', 'NFKB1'}, number: 10
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'IL1B', 'GCLM', 'GCLC', 'NQO1', 'HMOX1', 'RXRA', 'KEAP1', 'NFKB1'}, number: 9
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GCLC', 'IKBKB', 'HMOX1', 'NQO1', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'IKBKB', 'NFKB1'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'IL6', 'IL12A', 'IKBKB', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NQO1', 'HMOX1', 'RXRA', 'KEAP1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CUL1', 'AKT1', 'PAK2', 'CDKN1A', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUND', 'ABL1', 'AKT1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'AKT1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'ERN1', 'TNFRSF10B', 'HSPA5'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 6
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ERN1', 'AKT1', 'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A', 'HSPA5', 'NFKB1'}, number: 8
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'ERN1', 'TNFRSF10B', 'HSPA5'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NQO1', 'GCLC', 'SQSTM1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ETS1', 'AKT1', 'ABL1', 'IL7R', 'CDKN1B', 'CDKN1A', 'PAK2', 'PKN1', 'NFKB1'}, number: 9
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'ABL1', 'TNFRSF10B', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 6
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'SOCS3', 'BIRC5', 'AKT1', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'GCLC', 'TNFRSF10B', 'CDKN1A', 'NQO1', 'NFKB1'}, number: 6
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'ERN1', 'AKT1', 'GCLC', 'TNFRSF10B', 'ABL1', 'CDKN1B', 'CDKN1A', 'HSPA5', 'NQO1', 'NFKB1'}, number: 11
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NQO1', 'AKT1', 'GCLC', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'SOCS3', 'AKT1', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'GCLC', 'CDKN1A', 'NQO1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'GCLC', 'NFKB1'}, number: 3
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'APEX2', 'MBD4', 'SMUG1', 'FEN1', 'MPG', 'PARP2', 'POLD1', 'UNG', 'PARP1', 'POLE3', 'APEX1', 'MUTYH', 'POLE', 'NTHL1', 'XRCC1', 'PNKP', 'POLD3', 'LIG1', 'PCNA'}, number: 20
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'APEX2', 'MBD4', 'SMUG1', 'FEN1', 'MPG', 'PARP2', 'POLD1', 'UNG', 'PARP1', 'POLE3', 'APEX1', 'MUTYH', 'POLE', 'NTHL1', 'XRCC1', 'PNKP', 'POLD3', 'LIG1', 'PCNA'}, number: 20
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CUL1', 'COL4A4', 'CCND2', 'COL4A2', 'CTBP2', 'TGFB1', 'SLC2A1', 'LAMB2', 'CTBP1', 'VEGFA', 'PDGFRB', 'LAMC3', 'LAMB3', 'CCNE1', 'LAMA2', 'CCND3', 'DVL2', 'MMP3', 'NFKB1', 'CDK4', 'LRP5', 'PDGFA', 'FGFR4', 'KITLG', 'FGFR3', 'COL4A1', 'RAF1', 'TGFA', 'VEGFC', 'MAX', 'COL4A3', 'MAPK8', 'MTOR', 'JAK1', 'GSK3B', 'ITGA2', 'MET', 'TCF7L2', 'IGF1R', 'CDK2', 'FZD1', 'LRP6', 'CCND1', 'FRAT1', 'CDKN2A', 'LAMB1', 'TP53', 'JUN', 'MAP2K1', 'LAMA5', 'APC', 'MAP2K2', 'DVL3', 'LAMC2', 'IL6', 'WNT5B', 'COL4A5', 'AKT1', 'E2F1', 'SOS1', 'RPS6KA5', 'CDKN1A', 'FGFR2', 'ITGA3', 'FZD2'}, number: 65
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'TGFB1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'BRAF', 'SOS2', 'RAF1', 'STAT5A', 'STAT3', 'JAK1', 'MAPK8', 'MTOR', 'RALA', 'PLCG1', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'PLD1', 'E2F1', 'ERBB2', 'SOS1', 'ABL1', 'RPS6KA5', 'NCOA3', 'CBL'}, number: 24
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'AKT1', 'ABL1', 'STAT3', 'APC'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'CCND2', 'TGFB1', 'SOS2', 'CCNE1', 'CCND3', 'NFKB1', 'CDK4', 'DVL2', 'PMAIP1', 'CDKN1B', 'CDK6', 'MAPK8', 'GSK3B', 'RAC2', 'TCF7L2', 'CDK2', 'RAD51', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'CCNE2', 'GADD45A', 'APC', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'E2F1', 'ERBB2', 'ABL1', 'SOS1', 'GADD45G', 'CDKN1A'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRB', 'NRAS', 'GADD45B', 'PRKCA', 'E2F3', 'BRAF', 'SOS2', 'CDK4', 'RAF1', 'STAT5A', 'TGFA', 'CDK6', 'STAT3', 'PLCG1', 'CCND1', 'RXRA', 'CDKN2A', 'TP53', 'MAP2K1', 'GADD45A', 'MAP2K2', 'DDB2', 'EML4', 'PRKCB', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'GADD45G', 'CDKN1A'}, number: 30
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'CCND2', 'TGFB1', 'SOS2', 'CCNE1', 'CCND3', 'NFKB1', 'CDK4', 'DVL2', 'PMAIP1', 'CDKN1B', 'CDK6', 'MAPK8', 'GSK3B', 'RAC2', 'TCF7L2', 'CDK2', 'RAD51', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'CCNE2', 'GADD45A', 'APC', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'E2F1', 'ERBB2', 'ABL1', 'SOS1', 'GADD45G', 'CDKN1A'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'MLH1', 'CCND2', 'RBX1', 'MSH2', 'MSH3', 'CCNE1', 'CCND3', 'CDK4', 'PMAIP1', 'CDKN1B', 'CDK6', 'MSH6', 'CDK2', 'RAD51', 'CCND1', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'AKT1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'BRCA2'}, number: 26
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'RBX1', 'TGFB1', 'SLC2A1', 'KEAP1', 'MGST2', 'HMOX1', 'TGFA', 'NQO1', 'MAPK8', 'TXNRD1', 'GSTM3', 'TGFB2', 'GSK3B', 'HSP90AB1', 'TGFBR2', 'TXNRD3', 'GSTA4', 'RXRA', 'HSP90AA1'}, number: 20
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'COL4A4', 'CCND2', 'COL4A2', 'GNG5', 'SOS2', 'LAMB2', 'LAMC3', 'PDGFRB', 'LAMB3', 'CCNE1', 'LAMA2', 'VEGFA', 'CCND3', 'NFKB1', 'CDK4', 'PDGFA', 'FGFR4', 'KITLG', 'HSP90B1', 'FGFR3', 'COL4A1', 'RAF1', 'PRKACB', 'CDKN1B', 'TGFA', 'VEGFC', 'CDK6', 'LPAR6', 'COL4A3', 'IL6R', 'MAPK8', 'MTOR', 'JAK1', 'GSK3B', 'RALA', 'ITGA2', 'LPAR3', 'MET', 'HSP90AB1', 'RAC2', 'IGF1R', 'CDK2', 'BCL2L1', 'GNG4', 'PLCG1', 'CCND1', 'LAMB1', 'TP53', 'CCNE2', 'MAP2K1', 'LAMA5', 'MAP2K2', 'ETS1', 'LAMC2', 'PRKCB', 'IL6', 'COL4A5', 'AKT1', 'HSP90AA1', 'GNB2', 'PLD1', 'ABL1', 'SOS1', 'IL7R', 'IKBKB', 'CDKN1A', 'FGFR2', 'ITGA3'}, number: 70
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'CCND2', 'TGFB1', 'SOS2', 'CCNE1', 'CCND3', 'NFKB1', 'CDK4', 'DVL2', 'PMAIP1', 'CDKN1B', 'CDK6', 'MAPK8', 'GSK3B', 'RAC2', 'TCF7L2', 'CDK2', 'RAD51', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'CCNE2', 'GADD45A', 'APC', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'ABL1', 'GADD45G', 'CDKN1A'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'BRAF', 'SOS1', 'PLCG1', 'MAP2K1'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'BIRC5', 'AKT1', 'MAP2K1', 'IKBKB', 'SOS1', 'STAT6', 'STAT5A', 'CEBPA', 'CBL', 'STAT3', 'JAK1', 'NFKB1'}, number: 13
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'IKBKB', 'PLCG1', 'NFKB1', 'JUN', 'MAP2K1', 'MAPK8'}, number: 8
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRB', 'PRKCA', 'CAMK2G', 'NOTCH1', 'MLH1', 'CCND2', 'RBX1', 'CTBP2', 'MSH2', 'TGFB1', 'SLC2A1', 'MSH3', 'CTBP1', 'KEAP1', 'CCNE1', 'CCND3', 'NFKB1', 'CAMK2D', 'DVL2', 'LRP5', 'MGST2', 'PMAIP1', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'MAPK8', 'MTOR', 'GSTM3', 'TGFB2', 'GSK3B', 'MGST1', 'MSH6', 'HSP90AB1', 'TGFBR2', 'TCF7L2', 'CDK2', 'TXNRD3', 'GSTA4', 'MMP1', 'RAD51', 'LRP6', 'FZD1', 'RXRA', 'FRAT1', 'PPARG', 'CCND1', 'JUN', 'GADD45A', 'APC', 'DVL3', 'DDB2', 'PRKCB', 'WNT5B', 'HSP90AA1', 'CDKN1A', 'BRCA2', 'FZD2'}, number: 58
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'PRKCA', 'CCND2', 'RBX1', 'TGFB1', 'SOS2', 'SLC2A1', 'KEAP1', 'CCNE1', 'CCND3', 'NFKB1', 'CDK4', 'DVL2', 'MGST2', 'PMAIP1', 'HMOX1', 'CDKN1B', 'TGFA', 'NQO1', 'CDK6', 'TXNRD1', 'MAPK8', 'GSTM3', 'TGFB2', 'GSK3B', 'RAC2', 'HSP90AB1', 'TGFBR2', 'TCF7L2', 'CDK2', 'TXNRD3', 'GSTA4', 'RAD51', 'CCND1', 'RXRA', 'FRAT1', 'CDKN2A', 'TP53', 'CCNE2', 'JUN', 'GADD45A', 'APC', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'HSP90AA1', 'E2F1', 'ERBB2', 'ABL1', 'SOS1', 'GADD45G', 'CDKN1A'}, number: 54
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'GNAI2', 'BRAF', 'GNG5', 'ADCY6', 'TGFB1', 'SOS2', 'ADCY9', 'NFKB1', 'RAF1', 'HMOX1', 'PRKACB', 'NQO1', 'STAT3', 'JAK1', 'TXNRD1', 'GSK3B', 'MGST1', 'RAC2', 'TGFBR2', 'GNG4', 'ADCY3', 'JUN', 'MAP2K1', 'PRKCB', 'GNB2', 'AKT1', 'SOS1', 'IKBKB'}, number: 29
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'BRAF', 'BMP2', 'NFKB1', 'RAF1', 'STAT5A', 'STAT3', 'MAPK8', 'MTOR', 'GSK3B', 'PLCG1', 'JUN', 'MAP2K1', 'APC', 'MAP2K2', 'AKT1', 'SOS1', 'IKBKB', 'RPS6KA5'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'CAMK2G', 'BMP2', 'TRAF5', 'TGFB1', 'SLC2A1', 'IFNGR1', 'NFKB1', 'CAMK2D', 'STAT6', 'RAF1', 'STAT5A', 'STAT3', 'JAK1', 'MAPK8', 'IL6R', 'MTOR', 'TGFB2', 'GSK3B', 'TGFBR2', 'IL12A', 'PLCG1', 'ADCY3', 'IFNGR2', 'JUN', 'IL6ST', 'MAP2K1', 'APC', 'MAP2K2', 'PRKCB', 'IL6', 'AKT1', 'IKBKB', 'RPS6KA5'}, number: 34
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'BRAF', 'SOS1', 'PLCG1', 'MAP2K1'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'RBX1', 'TGFB1', 'SLC2A1', 'CCNA1', 'KEAP1', 'MGST2', 'HMOX1', 'PRKACB', 'TGFA', 'NQO1', 'MAPK8', 'MTOR', 'CCNA2', 'TXNRD1', 'TGFB2', 'GSK3B', 'GSTM3', 'HSP90AB1', 'TGFBR2', 'TXNRD3', 'GSTA4', 'RXRA', 'TP53', 'AKT1', 'HSP90AA1', 'CDKN1A'}, number: 27
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKACB', 'AKT1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1', 'FGFR4', 'SLC2A1'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MGST1', 'HMOX1', 'NFKB1', 'NQO1', 'TXNRD1'}, number: 5
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CUL1', 'GSK3B', 'CCND2', 'E2F1', 'CDK2', 'TGFB1', 'CDKN1A', 'CCND1', 'CDKN2A', 'TP53', 'CCNE1', 'CCND3'}, number: 13
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFB1'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'E2F1', 'ABL1'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B', 'ABL1', 'CDK1'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'TGFB1', 'RBL2', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'MCM7', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'GSK3B', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A'}, number: 29
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'E2F3', 'TP53', 'E2F1', 'GADD45G', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'GADD45A'}, number: 11
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'TGFB1', 'RBL2', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'GSK3B', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A'}, number: 28
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'RBX1', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'ATR', 'CDK2', 'CCNH', 'CCND1', 'TP53', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'E2F1', 'ABL1', 'PCNA', 'GADD45G', 'CDKN1A'}, number: 27
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1', 'TGFB2', 'TGFB1', 'GSK3B'}, number: 4
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'TP53', 'GSK3B', 'CCND2', 'ABL1', 'CDK2', 'CDKN1B', 'CDKN1A', 'RBL2', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 14
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'TGFB1', 'RBL2', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'GSK3B', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A'}, number: 28
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SFN', 'TGFB2', 'GSK3B', 'ATR', 'CDC25C', 'CCND2', 'CDC25A', 'CDK2', 'RBX1', 'CHEK1', 'CCNH', 'GADD45A', 'TGFB1', 'PCNA', 'CCND1', 'CDKN1A', 'CCNE1', 'CCND3'}, number: 18
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'RBX1', 'TGFB1', 'RBL2', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'TGFB2', 'GSK3B', 'ATR', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25C', 'CDC25A', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A'}, number: 30
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFB1', 'GSK3B'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFB2', 'TGFB1', 'GSK3B'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'TGFB2', 'GSK3B', 'CCNB1', 'RBX1', 'TGFB1', 'CDKN1A', 'CCNA1', 'CCNA2'}, number: 9
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'COX6C'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CTBP2', 'NFKB1', 'DVL3', 'APC'}, number: 4
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'APC'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'NFKB1', 'MCM7', 'APC'}, number: 4
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'COX6C'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'NFKB1', 'APC'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'COX6C'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'MSH2'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EXOC2', 'CALM1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'NFKB1', 'APC'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'GDI1', 'CALM1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DVL3', 'ACSL3', 'CTBP2', 'MSH2', 'NFKB1', 'APC'}, number: 6
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'NFKB1', 'APC'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKB1', 'RANBP9', 'APC'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NFKB1', 'RANBP9', 'CALM1', 'APC'}, number: 4
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'ACSL3', 'ECHS1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'APC'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AURKB', 'APC', 'CDK1'}, number: 3
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'APC', 'CDK1'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'APC', 'CDK1'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK1'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5B', 'PPP2R5A', 'PPP2R5E', 'PPP2CB'}, number: 5
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'APC', 'CDK1'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APC'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'APC', 'CDK1'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'APC'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'APC'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'SCO1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CCND1', 'TP53', 'JUN', 'APC'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'GSK3B', 'APC'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CCND1', 'TP53', 'JUN', 'APC'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53', 'CCND1', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'SCO1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CCND1', 'TP53', 'JUN', 'APC'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'SCO1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'TP53', 'CCND1', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TP53', 'GSK3B', 'CCND1', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CCND1', 'TP53', 'JUN', 'APC'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSK3B', 'SOD1', 'MT1X', 'CCND1', 'JUN', 'APC'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CCND1', 'TP53', 'JUN', 'APC'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'SOD1', 'MT1X', 'JUN'}, number: 5
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1', 'JUN', 'GSK3B', 'APC'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1', 'JUN', 'GSK3B', 'APC'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'GSK3B', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'SOD1', 'MT1X'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'AKT1', 'CCND2', 'BRCA1', 'E2F1', 'CDK2', 'CDKN1A', 'CCND1', 'TP53', 'CCNE1', 'CCND3'}, number: 11
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'ABL1', 'AKT1'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'ABL1', 'CDK1'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 40
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'GADD45G', 'CDKN1A', 'CCND1', 'CDK6', 'GADD45A'}, number: 11
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 40
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 40
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'TP53', 'AKT1', 'CCND2', 'BRCA1', 'ABL1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 14
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 40
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND2', 'H2AX', 'CCNE1', 'CCND3', 'SFN', 'RRM2B', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'CDKN1A'}, number: 24
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 40
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1', 'CDK5'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1', 'CDK5'}, number: 2
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1', 'TP53', 'CDKN1A', 'CCNB1'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1', 'E2F1', 'FOXM1', 'CDK2', 'BARD1', 'TP53'}, number: 6
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'E2F1'}, number: 2
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CDK1'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'RAD1', 'CHEK1', 'BCL6', 'MRE11', 'RAD51', 'RAD17', 'TP53', 'H2AX'}, number: 16
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53', 'E2F1'}, number: 2
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'RAD1', 'CHEK1', 'BCL6', 'MRE11', 'RAD51', 'RAD17', 'TP53', 'H2AX'}, number: 16
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'FANCA', 'BRIP1', 'MLH1', 'FEN1', 'RPA1', 'MSH2', 'PARP1', 'H2AX', 'PALB2', 'CDK1', 'RPA2', 'EXO1', 'FANCI', 'WRN', 'CHEK1', 'XPA', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'RAD51', 'RAD17', 'TP53', 'CDC25C', 'BRCA1', 'E2F1', 'USP1', 'PCNA', 'XRCC5', 'RAD1', 'BRCA2'}, number: 31
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'TP53', 'CDK2'}, number: 3
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'RAD1', 'CHEK1', 'BCL6', 'MRE11', 'RAD51', 'RAD17', 'TP53', 'H2AX'}, number: 16
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FANCA', 'BRIP1', 'MLH1', 'FEN1', 'RPA1', 'MSH2', 'PARP1', 'H2AX', 'PALB2', 'RPA2', 'EXO1', 'FANCI', 'WRN', 'CHEK1', 'XPA', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'RAD51', 'CDC25C', 'BRCA1', 'USP1', 'PCNA', 'XRCC5', 'BRCA2'}, number: 26
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDC25C', 'ATR', 'CDK1', 'RPA2', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'RAD1', 'CHEK1', 'BCL6', 'MRE11', 'RAD51', 'RAD17', 'TP53', 'H2AX'}, number: 16
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'E2F1', 'CDKN2A', 'TP53', 'BRCA1'}, number: 4
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'E2F1', 'ABL1'}, number: 3
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDC25C', 'ATR', 'BRCA1', 'E2F1', 'RAD50', 'ABL1', 'CHEK1', 'MRE11', 'RAD51', 'CDK5', 'RAD17', 'CDKN2A', 'TP53', 'H2AX'}, number: 14
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN2A', 'TP53', 'E2F1'}, number: 3
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDC25C', 'ATR', 'BRCA1', 'E2F1', 'RAD50', 'ABL1', 'CHEK1', 'MRE11', 'RAD51', 'CDK5', 'RAD17', 'CDKN2A', 'TP53', 'H2AX'}, number: 14
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PARP1', 'CDK5', 'H2AX', 'EXO1', 'CHEK1', 'ATR', 'RAD50', 'MRE11', 'RAD51', 'RAD17', 'DCLRE1C', 'TP53', 'CDC25C', 'BRCA1', 'E2F1', 'ABL1', 'TERF2', 'PCNA', 'BRCA2'}, number: 19
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'TP53', 'ABL1'}, number: 3
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDC25C', 'ATR', 'BRCA1', 'E2F1', 'RAD50', 'ABL1', 'CHEK1', 'MRE11', 'RAD51', 'CDK5', 'RAD17', 'CDKN2A', 'TP53', 'H2AX'}, number: 14
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25C', 'ATR', 'BRCA1', 'EXO1', 'RAD50', 'TERF2', 'PCNA', 'CHEK1', 'MRE11', 'PARP1', 'RAD51', 'DCLRE1C', 'H2AX', 'BRCA2'}, number: 14
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDC25C', 'ATR', 'BRCA1', 'E2F1', 'RAD50', 'ABL1', 'CHEK1', 'MRE11', 'RAD51', 'CDK5', 'RAD17', 'CDKN2A', 'TP53', 'H2AX'}, number: 14
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLD3', 'POLE2', 'RFC2', 'LIG1', 'MLH1', 'RFC3', 'RPA2', 'MSH6', 'EXO1', 'RPA1', 'POLD1', 'PCNA', 'MSH2', 'RPA3', 'POLE', 'POLE3', 'RFC4'}, number: 17
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLD3', 'POLE2', 'RFC2', 'LIG1', 'MLH1', 'RFC3', 'RPA2', 'MSH6', 'EXO1', 'RPA1', 'POLD1', 'PCNA', 'MSH2', 'RPA3', 'POLE', 'POLE3', 'RFC4'}, number: 17
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'RAP1A'}, number: 2
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DDB2', 'ATR', 'RPA2', 'BRCA1', 'RAD50', 'CHEK1', 'MRE11', 'RAD51', 'H2AX'}, number: 9
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DDB2', 'ATR', 'RPA2', 'BRCA1', 'RAD50', 'CHEK1', 'MRE11', 'RAD51', 'H2AX'}, number: 9
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BRIP1', 'RBX1', 'UNG', 'PARP1', 'MSH3', 'H2AX', 'APEX1', 'RPA2', 'REV3L', 'WDR48', 'EXO1', 'CHEK1', 'MUTYH', 'POLE', 'RAD54B', 'FANCG', 'MSH6', 'RAD50', 'CCNH', 'ERCC3', 'PNKP', 'GTF2H1', 'CENPS', 'POLD3', 'RFC2', 'PCNA', 'FANCA', 'MPG', 'FANCF', 'FANCI', 'GTF2H4', 'XPC', 'RAD23A', 'NTHL1', 'MRE11', 'RAD51', 'FAAP24', 'USP1', 'TERF2', 'RAD23B', 'POLH', 'FAN1', 'POLM', 'SMUG1', 'FEN1', 'POLD1', 'POLE3', 'PALB2', 'RFC3', 'XRCC4', 'RAP1A', 'ATR', 'RFC4', 'DDB2', 'LIG1', 'FANCL', 'FANCC', 'BRCA2', 'POLE2', 'CENPX', 'APEX2', 'MLH1', 'MBD4', 'PARP2', 'RPA1', 'MSH2', 'ERCC8', 'FAAP100', 'FANCE', 'WRN', 'XPA', 'XRCC1', 'CETN2', 'RPA3', 'DCLRE1C', 'BRCA1', 'XRCC5', 'ERCC2'}, number: 78
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'RAP1A'}, number: 2
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DDB2', 'ATR', 'RPA2', 'BRCA1', 'RAD50', 'CHEK1', 'MRE11', 'RAD51', 'H2AX'}, number: 9
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BRIP1', 'RBX1', 'UNG', 'PARP1', 'MSH3', 'H2AX', 'APEX1', 'RPA2', 'REV3L', 'WDR48', 'EXO1', 'CHEK1', 'MUTYH', 'POLE', 'RAD54B', 'FANCG', 'MSH6', 'RAD50', 'CCNH', 'ERCC3', 'PNKP', 'GTF2H1', 'CENPS', 'POLD3', 'RFC2', 'PCNA', 'FANCA', 'MPG', 'FANCF', 'FANCI', 'GTF2H4', 'XPC', 'RAD23A', 'NTHL1', 'MRE11', 'RAD51', 'FAAP24', 'USP1', 'TERF2', 'RAD23B', 'POLH', 'FAN1', 'POLM', 'SMUG1', 'FEN1', 'POLD1', 'POLE3', 'PALB2', 'RFC3', 'XRCC4', 'RAP1A', 'ATR', 'RFC4', 'DDB2', 'LIG1', 'FANCL', 'FANCC', 'BRCA2', 'POLE2', 'CENPX', 'APEX2', 'MLH1', 'MBD4', 'PARP2', 'RPA1', 'MSH2', 'ERCC8', 'FAAP100', 'FANCE', 'WRN', 'XPA', 'XRCC1', 'CETN2', 'RPA3', 'DCLRE1C', 'BRCA1', 'XRCC5', 'ERCC2'}, number: 78
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DDB2', 'ATR', 'RPA2', 'BRCA1', 'RAD50', 'RBX1', 'CHEK1', 'MRE11', 'RAD51', 'H2AX'}, number: 10
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RAP1A'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'MCM7', 'CDK2'}, number: 3
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'POLD3', 'RFC2', 'RFC3', 'RPA2', 'RPA1', 'POLD1', 'CDK2', 'PCNA', 'RPA3', 'POLE', 'RFC4'}, number: 12
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'POLD3', 'RFC2', 'RFC3', 'RPA2', 'RPA1', 'POLD1', 'CDK2', 'PCNA', 'RPA3', 'POLE', 'RFC4'}, number: 12
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'CDK4', 'GSK3B', 'TSC2', 'MLST8', 'FGF2', 'AKT1S1', 'CCND1', 'CSNK1A1', 'TP53', 'DEPTOR'}, number: 11
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'DNM1'}, number: 2
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'TP53', 'GSK3B', 'CDKN1B', 'RBL2', 'CCND1', 'CDK6'}, number: 7
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'TP53', 'CDK6', 'CCND1'}, number: 4
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'TP53', 'GSK3B', 'CDKN1B', 'RBL2', 'CCND1', 'CDK6'}, number: 7
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDK6', 'CDKN1B', 'CCND1', 'TP53'}, number: 5
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'CDK4', 'TP53', 'GSK3B', 'TSC2', 'MLST8', 'FGF2', 'AKT1S1', 'CDKN1B', 'RBL2', 'CCND1', 'CDK6', 'DEPTOR'}, number: 13
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'TP53', 'GSK3B', 'CDKN1B', 'RBL2', 'CCND1', 'CDK6'}, number: 7
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'GSK3B', 'NOTCH1', 'TSC2', 'MLST8', 'AKT1S1', 'CCND1', 'CSNK1A1', 'DEPTOR'}, number: 9
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'TP53', 'GSK3B', 'CDKN1B', 'RBL2', 'CCND1', 'CDK6'}, number: 7
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'TSC2', 'MTOR', 'GSK3B'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TSC2', 'FGF2', 'MTOR', 'GSK3B'}, number: 4
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC2', 'TP53', 'MTOR', 'GSK3B'}, number: 4
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SHMT1', 'SHMT2'}, number: 2
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Folate Metabolism And Transport WP4259, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'RPS6KA3', 'MAPK14', 'RPS6KA1', 'AKT1', 'MAP2K1', 'E2F1', 'SOS1', 'MAP3K4', 'RPS6KA5', 'MAP3K1', 'RAF1', 'EIF4EBP1', 'MAP3K2', 'JUN', 'JAK1', 'MAPK8'}, number: 18
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3', 'JAK1'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AP2B1', 'PRKCA', 'JUND', 'BRAF', 'CDC42', 'ERRFI1', 'SOS2', 'AP2S1', 'FOSB', 'CSK', 'RAB5A', 'RICTOR', 'RPS6KA3', 'CAV2', 'PRKCD', 'STAM', 'MAP3K4', 'INPPL1', 'GRB10', 'RAF1', 'STAT5A', 'RAP1A', 'PIK3C2B', 'GJA1', 'REPS2', 'JAK1', 'MAPK8', 'STAT3', 'MTOR', 'DNM1', 'PIAS3', 'NEDD4', 'RALA', 'RPS6KA1', 'ITCH', 'PLCE1', 'MAP3K1', 'EIF4EBP1', 'PLCG1', 'NEDD8', 'MAP3K2', 'PTPN11', 'PTPRR', 'JUN', 'SH3KBP1', 'MAP2K1', 'RASA1', 'MAP2K2', 'PRKCZ', 'PRKCB', 'STMN1', 'MAPK14', 'AKT1', 'PXDN', 'ASAP1', 'LIMK2', 'PLD1', 'E2F1', 'SOS1', 'ERBB2', 'RPS6KA5', 'PCNA', 'NCOA3', 'EPS8', 'STAMBP', 'ABL1', 'CBL', 'PEBP1', 'CAV1', 'ATXN2'}, number: 70
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'STMN1', 'AKT1', 'CDC42', 'ABL1', 'STAT3'}, number: 6
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'E2F1', 'CDC42', 'SOS1', 'ERBB2', 'MAP3K4', 'ABL1', 'MAP3K1', 'SOS2', 'PIK3C2B', 'JUN', 'MAPK8'}, number: 12
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'BRAF', 'E2F1', 'SOS1', 'ERBB2', 'RAF1', 'STAT5A', 'SOS2', 'PLCG1', 'STAT3', 'MAP2K1'}, number: 14
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'E2F1', 'CDC42', 'SOS1', 'ERBB2', 'MAP3K4', 'ABL1', 'MAP3K1', 'SOS2', 'PIK3C2B', 'JUN', 'MAPK8'}, number: 12
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'E2F1', 'ABL1', 'PCNA', 'RAP1A'}, number: 5
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'MAPK8'}, number: 2
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'CDC42', 'SOS2', 'RAB5A', 'RAF1', 'RAP1A', 'JAK1', 'MAPK8', 'MTOR', 'RALA', 'PLCE1', 'EIF4EBP1', 'PLCG1', 'PTPN11', 'MAP2K1', 'RASA1', 'MAP2K2', 'PRKCB', 'AKT1', 'PLD1', 'SOS1', 'ABL1'}, number: 22
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'E2F1', 'CDC42', 'SOS1', 'ERBB2', 'MAP3K4', 'ABL1', 'MAP3K1', 'SOS2', 'PIK3C2B', 'JUN', 'MAPK8'}, number: 12
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'RPS6KA1', 'AKT1', 'BRAF', 'SOS1', 'EIF4EBP1', 'PLCG1', 'MAP2K1'}, number: 8
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'MAP2K1', 'SOS1', 'STAT5A', 'CBL', 'PTPN11', 'STAT3', 'JAK1'}, number: 10
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'MAP2K1', 'MAP3K1', 'MAP3K2', 'PLCG1', 'PTPN11', 'JUN', 'PRKCZ', 'MAPK8'}, number: 11
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'PRKCB', 'MAPK14', 'PCNA', 'RAP1A', 'JUN', 'MAPK8'}, number: 8
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'AKT1', 'E2F1', 'CDC42', 'SOS1', 'ERBB2', 'MAP3K4', 'ABL1', 'MAP3K1', 'SOS2', 'PIK3C2B', 'JUN', 'MAPK8'}, number: 13
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PRKCB', 'MAPK14', 'PRKCD', 'AKT1', 'MAP2K1', 'BRAF', 'CDC42', 'SOS1', 'PRKCZ', 'RAF1', 'SOS2', 'RAP1A', 'CSK', 'JUN', 'STAT3', 'JAK1'}, number: 16
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'BRAF', 'CDC42', 'RPS6KA3', 'PRKCD', 'RAF1', 'STAT5A', 'RAP1A', 'STAT3', 'MAPK8', 'MTOR', 'RPS6KA1', 'MAP3K1', 'EIF4EBP1', 'PLCG1', 'MAP3K2', 'PTPN11', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1', 'SOS1', 'RPS6KA5'}, number: 23
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AP2B1', 'PRKCA', 'CDC42', 'RPS6KA3', 'PRKCD', 'RAF1', 'STAT5A', 'RAP1A', 'STAT3', 'JAK1', 'MAPK8', 'MTOR', 'RPS6KA1', 'MAP3K1', 'EIF4EBP1', 'PLCG1', 'MAP3K2', 'PTPN11', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'MAPK14', 'AKT1', 'RPS6KA5'}, number: 25
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'RPS6KA1', 'AKT1', 'BRAF', 'SOS1', 'EIF4EBP1', 'PLCG1', 'MAP2K1'}, number: 8
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'AKT1', 'EIF4EBP1', 'MAPK8'}, number: 5
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'PDGFRB', 'PDGFA', 'FGFR3', 'RAF1', 'TGFA', 'JAK1', 'MTOR', 'GSK3B', 'MET', 'IGF1R', 'FGF2', 'EIF4EBP1', 'CCND1', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'SOS1', 'FGFR2'}, number: 20
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT3', 'JAK1'}, number: 2
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'MAP2K1', 'BRAF', 'ERBB2', 'SOS1', 'RAF1', 'SOS2', 'EIF4EBP1', 'PLCG1', 'STAT3', 'JAK1'}, number: 15
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'STAT3', 'AKT1'}, number: 4
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'SOS2', 'CCND1'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'BRAF', 'ERBB2', 'SOS1', 'RAF1', 'SOS2', 'CCND1', 'TGFA', 'PLCG1', 'STAT3', 'MAP2K1'}, number: 15
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'SOS2', 'CCND1'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND1', 'AKT1'}, number: 2
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'TGFA'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'EIF4E', 'PRKCA', 'SHC2', 'SOS2', 'VEGFA', 'PDGFRB', 'SHC4', 'MRAS', 'PDGFA', 'FGFR3', 'RAF1', 'TGFA', 'JAK1', 'IL6R', 'MTOR', 'GSK3B', 'MET', 'IGF1R', 'RRAS2', 'FGF2', 'NF1', 'BCL2L1', 'EIF4EBP1', 'CCND1', 'PLCG1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'IL6', 'AKT1', 'SOS1', 'SHC3', 'FGFR2'}, number: 34
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'SOS2', 'CCND1'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'BRAF', 'SOS1', 'EIF4EBP1', 'PLCG1', 'MAP2K1'}, number: 8
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'SOS1', 'JAK1', 'STAT3', 'MAP2K1'}, number: 6
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K1', 'PLCG1', 'AKT1'}, number: 4
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'PRKCB', 'CCND1', 'TGFA'}, number: 6
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'SOS2', 'CCND1', 'TGFA'}, number: 9
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'SHC4', 'GSK3B', 'PRKCB', 'AKT1', 'SHC2', 'MAP2K1', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'SHC3', 'STAT3', 'JAK1'}, number: 14
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'SHC4', 'EIF4E', 'MTOR', 'GSK3B', 'MAP2K2', 'AKT1', 'SHC2', 'BRAF', 'SOS1', 'RAF1', 'EIF4EBP1', 'PLCG1', 'SHC3', 'STAT3', 'MAP2K1'}, number: 16
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EIF4E', 'PRKCA', 'SHC2', 'SHC4', 'RAF1', 'STAT3', 'JAK1', 'IL6R', 'MTOR', 'GSK3B', 'FGF2', 'EIF4EBP1', 'PLCG1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'IL6', 'AKT1', 'SHC3'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'BRAF', 'SOS1', 'EIF4EBP1', 'PLCG1', 'MAP2K1'}, number: 8
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'AKT1', 'EIF4EBP1', 'TGFA'}, number: 6
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'RNF2', 'EZH2', 'EED', 'SUZ12'}, number: 4
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BCL6', 'H2AX'}, number: 2
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL6', 'H2AX'}, number: 2
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL6', 'H2AX'}, number: 2
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'H2AX'}, number: 1
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL6', 'H2AX'}, number: 2
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TP53', 'SLC3A2'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'SLC39A14', 'HMOX1', 'FTL', 'FTH1', 'TXNRD1'}, number: 8
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TP53', 'ATG5', 'MAP1LC3B'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX4', 'FTH1', 'SLC7A11', 'GSS', 'ACSL3', 'GCLC', 'SLC39A14', 'GCLM', 'HMOX1', 'FTL', 'SAT1', 'TXNRD1'}, number: 12
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'SLC39A14', 'FTL', 'HMOX1', 'TP53', 'FTH1', 'TXNRD1'}, number: 9
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SLC38A1'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'SLC39A14', 'FTL', 'HMOX1', 'TP53', 'FTH1', 'TXNRD1'}, number: 9
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'ACSL3'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CCND2', 'E2F1', 'CDK2', 'CDKN1A', 'CCND1', 'CDKN2A', 'TP53', 'CCNE1', 'CCND3'}, number: 10
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'E2F1'}, number: 2
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CDK1'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCNB1', 'CCND2', 'CCNE1', 'CCND3', 'CDK4', 'MCM7', 'CDK1', 'RPA2', 'CCNG2', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25A', 'E2F1', 'CDKN1A'}, number: 20
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'E2F3', 'TP53', 'E2F1', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'GADD45A'}, number: 9
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCNB1', 'CCND2', 'CCNE1', 'CCND3', 'CDK4', 'CDK1', 'RPA2', 'CCNG2', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25A', 'E2F1', 'CDKN1A'}, number: 19
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CCNB1', 'CCND2', 'RPA1', 'CCNE1', 'CCND3', 'CDK4', 'CDK1', 'RPA2', 'CDKN1B', 'POLE', 'CDK6', 'CDK2', 'CCNH', 'RPA3', 'CCND1', 'TP53', 'CCNE2', 'GADD45A', 'CDC25A', 'E2F1', 'PCNA', 'CDKN1A'}, number: 23
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'TP53', 'CCND2', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CREB3L4', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 12
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCNB1', 'CCND2', 'CCNE1', 'CCND3', 'CDK4', 'CDK1', 'RPA2', 'CCNG2', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25A', 'E2F1', 'CDKN1A'}, number: 19
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'CDC25A', 'CCND2', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'CCNH', 'RPA3', 'GADD45A', 'CDKN1A', 'CCND1', 'POLE', 'CCNE1', 'CCND3'}, number: 15
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCNB1', 'CCND2', 'CCNE1', 'CCND3', 'CDK4', 'CDK1', 'RPA2', 'CCNG2', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'CCNE2', 'GADD45A', 'CDC25A', 'E2F1', 'CDKN1A'}, number: 19
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'CCNA1', 'CDKN1A', 'CCNB1'}, number: 4
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MYBL2', 'AURKA'}, number: 2
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'E2F7', 'AURKA', 'APC', 'NOTCH1'}, number: 4
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'APC'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CCNA1'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'TP53', 'RAD17'}, number: 2
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'TP53', 'RAD17'}, number: 2
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RFC3', 'FANCI', 'RAD17', 'TP53', 'RFC4'}, number: 5
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL9A1', 'TP53'}, number: 2
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'TP53', 'RAD17'}, number: 2
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RFC3', 'FANCI', 'RFC4'}, number: 3
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'RAD17'}, number: 2
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Genes Related To Primary Cilium Development Based On CRISPR WP4536, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND2', 'PDGFRB', 'CCNE1', 'MAP2K6', 'CDK4', 'TSC2', 'RAF1', 'MET', 'IGF1R', 'CDK2', 'CCND1', 'CDKN2A', 'TP53', 'MAP2K1', 'MAP2K2', 'AKT1', 'BRCA1', 'E2F1', 'CDKN1A', 'MAP2K3', 'FGFR2'}, number: 21
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'PRKCD', 'AKT1', 'MAP2K1', 'BRAF', 'E2F1', 'ERBB2', 'ERRFI1', 'RAF1', 'PLCG1', 'CBL', 'PIK3C2B', 'PRKCZ'}, number: 15
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'AKT1'}, number: 2
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'CCND2', 'BRCA1', 'E2F1', 'ERBB2', 'CDK2', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3C2B', 'CCNE1', 'PIK3C2A'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'CDK4', 'PRKCA', 'TP53', 'MAP2K2', 'PRKCB', 'AKT1', 'BRAF', 'E2F1', 'ERBB2', 'RAF1', 'CDKN1A', 'CCND1', 'PLCG1', 'CDKN2A', 'CDK6', 'MAP2K1'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'CCND2', 'BRCA1', 'E2F1', 'ERBB2', 'CDK2', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3C2B', 'CCNE1', 'PIK3C2A'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'TP53', 'AKT1', 'CCND2', 'MSH6', 'BRCA1', 'E2F1', 'BRCA2', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE1'}, number: 14
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'CCND2', 'CCNE1', 'PDGFRB', 'CDK4', 'TSC2', 'RAF1', 'CDKN1B', 'CDK6', 'MET', 'IGF1R', 'CDK2', 'NF1', 'CCND1', 'PLCG1', 'TP53', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'BRCA1', 'CDKN1A', 'FGFR2'}, number: 24
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'CCND2', 'BRCA1', 'E2F1', 'ERBB2', 'CDK2', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3C2B', 'CCNE1', 'PIK3C2A'}, number: 17
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'AKT1', 'TSC2', 'BRAF', 'PLCG1', 'MAP2K1'}, number: 6
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'CBL', 'MAP2K1', 'AKT1'}, number: 4
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'AKT1', 'PRKCZ', 'MAP2K3', 'PLCG1', 'MAP2K1'}, number: 7
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'CCND2', 'MSH6', 'TSC2', 'BRCA1', 'BRCA2', 'CDK2', 'CDKN1A', 'CCND1', 'CCNE1'}, number: 11
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'CDK4', 'PRKCA', 'TP53', 'AKT1', 'CCND2', 'BRCA1', 'E2F1', 'ERBB2', 'CDK2', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3C2B', 'CCNE1', 'PIK3C2A'}, number: 18
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'PRKCB', 'PRKCD', 'AKT1', 'MAP2K1', 'BRAF', 'RAF1', 'PRKCZ'}, number: 8
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCD', 'TSC2', 'AKT1', 'BRAF', 'RAF1', 'PLCG1', 'MAP2K1'}, number: 9
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'PRKCD', 'TSC2', 'AKT1', 'RAF1', 'PLCG1', 'MAP2K1'}, number: 9
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'AKT1', 'TSC2', 'BRAF', 'PLCG1', 'MAP2K1'}, number: 6
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'AKT1', 'TSC2', 'CDKN1A', 'TP53'}, number: 5
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCL2', 'JUN', 'CUL1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR3', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA', 'GADD45B'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA', 'HSP90AA1'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HSP90AA1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HSP90AA1', 'CCL2', 'RXRA', 'ANGPTL4', 'JUN'}, number: 5
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RXRA', 'GADD45B', 'JUN', 'HSP90AA1'}, number: 4
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR3', 'JUN', 'CCL20'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFBR3', 'LRRC8A', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA', 'HSP90AA1'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'GSK3B'}, number: 3
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'GSK3B'}, number: 3
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CALM3', 'GSK3B', 'GYS1', 'GYS2', 'CALM1', 'PPP2R5C', 'PPP2R5A', 'PPP2R3A', 'PPP2R5B', 'PPP2R5E', 'PPP2CB', 'PPP2R3B'}, number: 12
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'GSK3B'}, number: 3
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CALM1'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PPP2R5C', 'PPP2R5E', 'GSK3B'}, number: 3
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'GSK3B'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CALM1', 'GSK3B'}, number: 2
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GYS1', 'GSK3B', 'GYS2'}, number: 3
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'UGP2'}, number: 1
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Glycogen Synthesis And Degradation WP500, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'CDK4', 'PRKAA2', 'AKT1', 'TSC2', 'E2F1', 'IGF1R', 'FGFR3', 'MLST8', 'CDKN1A', 'EIF4EBP1', 'CCND1', 'FGFR2', 'CDKN2A', 'TP53', 'VEGFA', 'NFKB1'}, number: 17
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FKBP1A', 'TGFBR2', 'NFKB1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'RICTOR', 'AKT1', 'E2F1', 'ERBB2', 'EIF4EBP1'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'SESN1', 'E2F1', 'ERBB2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'E2F1', 'ERBB2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'SESN1', 'E2F1', 'ERBB2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'AKT1', 'SESN1', 'E2F1', 'CDK6', 'CDKN1A', 'CCND1', 'TP53'}, number: 8
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2', 'KEAP1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'EIF4E', 'VEGFA', 'DDIT4', 'NFKB1', 'CDK4', 'TSC2', 'FGFR3', 'MLST8', 'CDK6', 'MTOR', 'PRKAA2', 'IGF1R', 'STK11', 'EIF4EBP1', 'CCND1', 'TP53', 'AKT1', 'CDKN1A', 'FGFR2'}, number: 20
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'SESN1', 'E2F1', 'ERBB2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'TSC2', 'EIF4EBP1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'NFKB1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1', 'NFKB1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKAA2', 'NOTCH1', 'SESN1', 'TSC2', 'TGFBR2', 'MLST8', 'SESN2', 'CDKN1A', 'CCND1', 'KEAP1', 'DDIT4', 'NFKB1'}, number: 13
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'CDK4', 'TP53', 'AKT1', 'SESN1', 'TGFBR2', 'E2F1', 'ERBB2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'KEAP1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'AKT1', 'TGFBR2', 'FKBP1A', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MTOR', 'EIF4E', 'PRKAA2', 'AKT1', 'TSC2', 'EIF4EBP1', 'NFKB1'}, number: 8
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'EIF4E', 'PRKAA2', 'AKT1', 'TSC2', 'TGFBR2', 'EIF4EBP1', 'NFKB1'}, number: 8
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'TSC2', 'EIF4EBP1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKAA2', 'AKT1', 'TSC2', 'TGFBR2', 'STK11', 'CDKN1A', 'EIF4EBP1', 'TP53', 'KEAP1'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKAA2', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK8', 'PODXL', 'MAPK14', 'IL6', 'AKT1', 'BRCA1', 'COL4A2', 'SOS1', 'CD44', 'JUN', 'TGFB1', 'CDKN1A', 'CCND1', 'TP53', 'VEGFA', 'JAK1', 'NFKB1'}, number: 17
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFB1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 5
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'SOS1', 'PTPN11', 'JUN', 'STAT3', 'JAK1', 'MAPK8'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'BRCA1', 'SOS1', 'TGFB1', 'CDKN1A', 'CCND1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 10
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'AKT1', 'SOS1', 'CDKN1A', 'CCND1', 'TP53', 'STAT3'}, number: 6
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'BRCA1', 'SOS1', 'TGFB1', 'CDKN1A', 'CCND1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 10
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'BRCA1', 'CDKN1A', 'CCND1', 'TP53'}, number: 5
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB1', 'MAPK8'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAPK8', 'IL6', 'AKT1', 'BRCA1', 'COL4A2', 'SOS1', 'BCL2L1', 'CDKN1A', 'CCND1', 'NFKB1', 'PTPN11', 'TP53', 'VEGFA', 'JAK1', 'IL6R'}, number: 15
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'BRCA1', 'SOS1', 'TGFB1', 'CDKN1A', 'CCND1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 10
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'SOS1', 'AKT1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'BIRC5', 'MAPK14', 'AKT1', 'SOS1', 'PTPN11', 'STAT3', 'JAK1', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'NFKB1', 'PTPN11', 'JUN', 'MAPK8'}, number: 6
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAPK14', 'BRCA1', 'MMP1', 'TGFB1', 'CDKN1A', 'CCND1', 'NFKB1', 'JUN', 'MAPK8'}, number: 9
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'BRCA1', 'SOS1', 'TGFB1', 'CDKN1A', 'CCND1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 10
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'SOS1', 'TGFB1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAPK14', 'AKT1', 'SOS1', 'NFKB1', 'PTPN11', 'JUN', 'STAT3', 'MAPK8'}, number: 8
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK8', 'MAPK14', 'IL6', 'AKT1', 'TGFB1', 'NFKB1', 'PTPN11', 'JUN', 'STAT3', 'JAK1', 'IL6R'}, number: 11
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'SOS1', 'AKT1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1', 'CDKN1A', 'TGFB1', 'TP53', 'MAPK8'}, number: 5
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP3K9', 'SLC2A1', 'MAP2K6', 'RPS6KA3', 'TSC2', 'MAP3K4', 'RAF1', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'RPS6KA1', 'IGF1R', 'MAP3K1', 'EIF4EBP1', 'MAP3K2', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'MINK1', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3'}, number: 25
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'SOS2', 'RPS6KA3', 'PRKCD', 'MAP3K4', 'INPPL1', 'GRB10', 'RAF1', 'MAPK8', 'MTOR', 'RPS6KA1', 'MAP3K1', 'EIF4EBP1', 'MAP3K2', 'PTPN11', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'PRKCB', 'MAPK14', 'AKT1', 'SOS1', 'RPS6KA5', 'CBL'}, number: 25
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'AKT1'}, number: 3
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'XBP1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'RAC2', 'SOS1', 'MAP3K4', 'MAP3K1', 'SOS2', 'JUN', 'PIK3R4', 'PIK3C2A', 'MAPK8'}, number: 11
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'SOS1', 'RAF1', 'SOS2', 'MAP2K1'}, number: 8
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'RAC2', 'SOS1', 'MAP3K4', 'MAP3K1', 'SOS2', 'XBP1', 'JUN', 'PIK3R4', 'PIK3C2A', 'MAPK8'}, number: 12
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'XBP1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'SLC2A1', 'MAPK8'}, number: 4
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'EIF4E', 'SHC2', 'SGK2', 'SOS2', 'TSC2', 'SGK1', 'RAF1', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'GYS2', 'RAC2', 'IGF1R', 'EIF4EBP1', 'PTPN11', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'IKBKB', 'SOS1', 'SHC3', 'GYS1', 'PIK3R4'}, number: 26
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'RAC2', 'SOS1', 'MAP3K4', 'MAP3K1', 'SOS2', 'JUN', 'PIK3R4', 'PIK3C2A', 'MAPK8'}, number: 11
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'RPS6KA1', 'TSC2', 'AKT1', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 7
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'SOCS3', 'IRS2', 'MAPK14', 'AKT1', 'IKBKB', 'SOS1', 'CBL', 'PTPN11', 'MAP2K1'}, number: 10
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAPK14', 'AKT1', 'MAP2K1', 'IKBKB', 'MAP3K1', 'MAP2K3', 'MAP3K2', 'PTPN11', 'JUN', 'PRKCZ', 'MAPK8'}, number: 13
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'PRKAA2', 'PRKCB', 'MAPK14', 'TSC2', 'SLC2A1', 'JUN', 'MAPK8'}, number: 10
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'AKT1', 'RAC2', 'SOS1', 'MAP3K4', 'MAP3K1', 'SOS2', 'XBP1', 'SLC2A1', 'JUN', 'PIK3R4', 'PIK3C2A', 'MAPK8'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B', 'PRKCB', 'MAPK14', 'PRKCD', 'RAC2', 'SHC2', 'AKT1', 'IKBKB', 'SOS1', 'PRKCZ', 'RAF1', 'SOS2', 'SHC3', 'JUN', 'MAP2K1'}, number: 15
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF4E', 'SHC2', 'RPS6KA3', 'PRKCD', 'TSC2', 'RAF1', 'MAPK8', 'PTPRF', 'MTOR', 'IRS2', 'GSK3B', 'PRKAA2', 'RPS6KA1', 'MAP3K1', 'EIF4EBP1', 'MAP3K2', 'PTPN11', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1', 'IKBKB', 'SOS1', 'RPS6KA5', 'SHC3'}, number: 26
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SOCS3', 'PRKCA', 'EIF4E', 'SHC2', 'SLC2A1', 'RPS6KA3', 'PRKCD', 'TSC2', 'RAF1', 'MAPK8', 'PTPRF', 'MTOR', 'IRS2', 'GSK3B', 'PRKAA2', 'RPS6KA1', 'MAP3K1', 'EIF4EBP1', 'MAP3K2', 'PTPN11', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'MAPK14', 'AKT1', 'IKBKB', 'RPS6KA5', 'SHC3'}, number: 29
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'RPS6KA1', 'TSC2', 'AKT1', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 7
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'IRS2', 'GSK3B', 'PRKAA2', 'GYS2', 'TSC2', 'AKT1', 'EIF4EBP1', 'SLC2A1', 'GYS1', 'MAPK8'}, number: 12
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKAA2', 'AKT1'}, number: 2
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BRCA1', 'E2F1', 'CDK2', 'BARD1', 'CDKN1A', 'TP53', 'JAK1'}, number: 9
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JAK1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'CDK1'}, number: 2
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'MRE11', 'TP53'}, number: 14
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'AKT1', 'E2F1', 'CDKN1A', 'TP53'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'MRE11', 'TP53'}, number: 14
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'MSH6', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'CHEK1', 'MSH2', 'CDKN1B', 'MRE11', 'CDKN1A', 'TP53'}, number: 16
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BRCA1', 'CDK2', 'CDKN1B', 'CDKN1A', 'TP53', 'JAK1'}, number: 8
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'MRE11', 'TP53'}, number: 14
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'JAK1', 'AKT1'}, number: 2
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ATR', 'CDC25A', 'MSH6', 'BRCA1', 'RAD50', 'CDK2', 'CHEK1', 'MSH2', 'MMP1', 'MRE11', 'CDKN1A'}, number: 11
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'ATR', 'CDC25A', 'CDK1', 'AKT1', 'BRCA1', 'E2F1', 'RAD50', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'MRE11', 'TP53'}, number: 14
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JAK1', 'AKT1'}, number: 2
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JAK1', 'AKT1'}, number: 2
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'CDKN1A', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'CDK4', 'IL6', 'AKT1', 'CCND2', 'FOXM1', 'MLST8', 'AKT1S1', 'CCND3'}, number: 9
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'CDK4', 'AKT1', 'CCND2', 'CCND3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'CDK4', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'CDK4', 'AKT1', 'CCND2', 'CCND3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND2', 'CDK4', 'AKT1', 'CCND3'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'CDK4', 'MTOR', 'IL6', 'AKT1', 'CCND2', 'MLST8', 'AKT1S1', 'GHR', 'IL6R', 'CCND3'}, number: 11
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'CDK4', 'AKT1', 'CCND2', 'CCND3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'SOCS3', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'CCND2', 'MLST8', 'AKT1S1', 'CCND3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'CDK4', 'AKT1', 'CCND2', 'CCND3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'STAT3', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'SOCS3', 'IL6', 'AKT1', 'STAT5A', 'IFNGR1', 'IFNGR2', 'STAT3', 'IL6R'}, number: 9
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'AKT1'}, number: 2
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'WDR5', 'BAP1', 'ASXL1'}, number: 3
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Kleefstra Syndrome WP5351, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAPK14', 'SOS1', 'MAP3K1', 'RAF1', 'MAP2K3', 'MAP3K2', 'JUN', 'MAP2K1'}, number: 10
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'BRAF', 'SOS1', 'MAP3K1', 'RAF1', 'SOS2', 'MAP3K2', 'JUN', 'MAP2K1'}, number: 10
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'SOS1', 'MAP3K1', 'SOS2', 'JUN'}, number: 5
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'NRAS', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'MAP2K1'}, number: 7
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'SOS1', 'MAP3K1', 'SOS2', 'JUN'}, number: 5
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'NRAS', 'SOS1', 'RAF1', 'SOS2', 'MAP2K1'}, number: 6
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'SOS1', 'MAP3K1', 'SOS2', 'JUN'}, number: 5
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'BRAF', 'SOS1', 'MAP2K1'}, number: 4
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'SOS1', 'MAP2K1'}, number: 4
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAPK14', 'MAP3K1', 'MAP2K3', 'MAP3K2', 'JUN', 'MAP2K1'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'MAPK14'}, number: 2
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'SOS1', 'MAP3K1', 'SOS2', 'JUN'}, number: 5
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'MAPK14', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'JUN', 'MAP2K1'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'NRAS', 'MAPK14', 'BRAF', 'SOS1', 'MAP3K1', 'RAF1', 'MAP3K2', 'JUN', 'MAP2K1'}, number: 10
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'MAP3K1', 'RAF1', 'MAP3K2', 'JUN', 'MAP2K1'}, number: 7
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'BRAF', 'SOS1', 'MAP2K1'}, number: 4
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TGFB1', 'CSF2', 'CXCL5', 'SLC2A1', 'VEGFA', 'PDGFRB', 'NFKB1', 'IL1B', 'RPS6KA3', 'NDRG1', 'COL4A1', 'RAF1', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'ACTA2', 'CDH2', 'RPS6KA1', 'IGF1R', 'FZD1', 'TP53', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'IL6', 'AKT1', 'RPS6KA5', 'CCL2'}, number: 30
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD1', 'TGFB1', 'ZEB2', 'JUN', 'NFKB1'}, number: 5
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'RPS6KA3', 'PRKCB', 'MAPK14', 'RPS6KA1', 'AKT1', 'ABL1', 'RPS6KA5', 'PCNA', 'RAF1', 'PLCG1', 'JUN', 'MAP2K1', 'MAPK8'}, number: 15
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B', 'ABL1', 'AKT1'}, number: 3
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'TP53'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'ABL1', 'TGFB1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 8
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCB', 'AKT1', 'RAF1', 'PLCG1', 'TP53', 'MAP2K1'}, number: 7
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'GSK3B', 'AKT1', 'ABL1', 'TGFB1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 9
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'TP53'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'ABL1', 'PCNA', 'PARP1', 'TP53'}, number: 5
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSK3B', 'TGFB1', 'SLC2A1', 'MAPK8'}, number: 4
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'MAP2K2', 'GSK3B', 'PRKAA2', 'PRKCB', 'IL6', 'AKT1', 'IGF1R', 'ABL1', 'COL4A1', 'RAF1', 'PLCG1', 'TP53', 'VEGFA', 'PDGFRB', 'MAP2K1', 'NFKB1'}, number: 18
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'ABL1', 'TGFB1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 8
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KA1', 'PLCG1', 'MAP2K1'}, number: 5
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'SOCS3', 'MAPK14', 'AKT1', 'MAP2K1', 'NFKB1'}, number: 6
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'IL1B', 'MAPK14', 'AKT1', 'CCL2', 'PLCG1', 'NFKB1', 'JUN', 'MAP2K1', 'MAPK8'}, number: 10
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'GSK3B', 'PRKAA2', 'PRKCB', 'MAPK14', 'PCNA', 'CCL2', 'TGFB1', 'FZD1', 'SLC2A1', 'PARP1', 'JUN', 'NFKB1'}, number: 14
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IL1B', 'GSK3B', 'AKT1', 'ABL1', 'TGFB1', 'SLC2A1', 'NFKB1', 'TP53', 'JUN', 'MAPK8'}, number: 10
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B', 'SMAD1', 'PRKCB', 'MAPK14', 'AKT1', 'RAF1', 'TGFB1', 'CXCL5', 'ZEB2', 'JUN', 'MAP2K1', 'NFKB1'}, number: 12
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'RPS6KA3', 'GSK3B', 'PRKAA2', 'MAPK14', 'CDH2', 'RPS6KA1', 'AKT1', 'RPS6KA5', 'RAF1', 'PLCG1', 'NFKB1', 'JUN', 'MAP2K1', 'MAPK8'}, number: 16
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SOCS3', 'TGFB1', 'SLC2A1', 'NFKB1', 'IL1B', 'RPS6KA3', 'RAF1', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'CDH2', 'RPS6KA1', 'PLCG1', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'MAPK14', 'IL6', 'AKT1', 'RPS6KA5'}, number: 22
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1', 'RPS6KA1', 'PLCG1', 'MAP2K1'}, number: 5
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'GSK3B', 'PRKAA2', 'AKT1', 'TGFB1', 'SLC2A1', 'TP53', 'MAPK8'}, number: 8
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKAA2', 'AKT1'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1', 'SLC2A1'}, number: 2
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Macrophage Stimulating Protein MSP Signaling WP5353, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'SLC25A5'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'SLC25A5'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'SLC25A5'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GLS2', 'XDH', 'SLC2A1', 'SLC2A5', 'SLC2A3'}, number: 5
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS2', 'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'PDHA1', 'SLC2A3'}, number: 8
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'GCDH', 'HADH', 'ECHS1', 'PDHA1'}, number: 4
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1', 'PHGDH', 'SLC2A1'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'XDH'}, number: 1
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TGFB1', 'NFKB1', 'MAP2K6', 'LRP5', 'RAF1', 'MAPK8', 'MTOR', 'GSK3B', 'IGF1R', 'FGF2', 'FZD1', 'LRP6', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1', 'MAP2K3', 'FGFR2', 'FZD2'}, number: 19
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'LIF', 'TGFB1', 'STAT3', 'NFKB1'}, number: 4
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'PRKCB', 'MAPK14', 'AKT1', 'RAF1', 'STAT3', 'MAP2K1', 'MAPK8'}, number: 9
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B', 'STAT3', 'AKT1'}, number: 3
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'TGFB1', 'NFKB1', 'MAPK8'}, number: 5
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCB', 'AKT1', 'RAF1', 'STAT3', 'MAP2K1'}, number: 6
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'TGFB1', 'NFKB1', 'MAPK8'}, number: 5
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB1', 'GSK3B', 'MAPK8'}, number: 3
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'GSK3B', 'PRKCB', 'AKT1', 'CALM1', 'IGF1R', 'IKBKB', 'FGF2', 'RAF1', 'FGFR2', 'NFKB1', 'MAP2K1', 'MAPK8'}, number: 14
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'TGFB1', 'NFKB1', 'MAPK8'}, number: 5
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'MAP2K1', 'AKT1'}, number: 3
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MYLK', 'MAP2K2', 'MAPK14', 'AKT1', 'CALM1', 'IKBKB', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 9
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAPK14', 'AKT1', 'IKBKB', 'MAP2K3', 'NFKB1', 'MAP2K1', 'MAPK8'}, number: 9
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'LIF', 'LRP5', 'GSK3B', 'PRKCB', 'MAPK14', 'CAMK2D', 'PPP3CB', 'TGFB1', 'FZD1', 'LRP6', 'FZD2', 'NFKB1'}, number: 14
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'TGFB1', 'NFKB1', 'MAPK8'}, number: 5
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'LIF', 'GSK3B', 'PRKCB', 'MAPK14', 'AKT1', 'IKBKB', 'RAF1', 'TGFB1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 11
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'GSK3B', 'MAPK14', 'AKT1', 'IKBKB', 'RAF1', 'NFKB1', 'STAT3', 'MAP2K1', 'MAPK8'}, number: 11
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'MAP2K2', 'LIF', 'GSK3B', 'PRKCB', 'MAPK14', 'AKT1', 'CAMK2D', 'CALM1', 'IKBKB', 'FGF2', 'RAF1', 'TGFB1', 'IL6ST', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 18
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'MAP2K1', 'AKT1'}, number: 3
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'GSK3B', 'AKT1', 'TGFB1', 'MAPK8'}, number: 5
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MCL1', 'NGF', 'EED', 'SOS1', 'MAP3K1', 'RAF1', 'MAP3K2', 'CCNE1', 'SUZ12'}, number: 9
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'SOS1', 'PCNA', 'MAP3K1', 'RAF1', 'MAP3K2'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'RAD51', 'CCNE2', 'CCNE1'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RAF1', 'SOS1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'RAD51', 'CCNE2', 'CCNE1'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RFC2', 'ATR', 'RFC3', 'WDR48', 'USP1', 'PCNA', 'RAD51', 'CCNE2', 'CCNE1', 'RFC4'}, number: 10
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EXOC2', 'MCL1', 'NGF', 'SOS1', 'RAF1', 'NF1', 'CCNE2', 'CCNE1'}, number: 8
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'RAD51', 'CCNE2', 'CCNE1'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP3K1', 'MAP3K2'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RFC2', 'ATR', 'RFC3', 'WDR48', 'USP1', 'PCNA', 'RAD51', 'CCNE1', 'RFC4'}, number: 9
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ATR', 'SOS1', 'MAP3K1', 'RAD51', 'CCNE2', 'CCNE1'}, number: 6
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RAF1', 'SOS1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NGF', 'SOS1', 'MAP3K1', 'RAF1', 'MAP3K2'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NGF', 'RAF1', 'MAP3K1', 'MAP3K2'}, number: 4
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CCNA2'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'GSK3B', 'MAPK8'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'MAPK8'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'EPHB2'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'MAPK8'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GSK3B', 'MAPK8'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GSK3B', 'GCLC', 'GCLM', 'EPHB2', 'RBX1', 'MAF', 'HMOX1', 'NQO1', 'CEBPB', 'FYN', 'KEAP1', 'MAPK8'}, number: 14
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'MAPK8'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'MAPK8'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GSK3B', 'GCLM', 'GCLC', 'RBX1', 'HMOX1', 'NQO1', 'KEAP1', 'MAPK8'}, number: 10
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GSK3B', 'GCLC', 'GCLM', 'EPHB2', 'RBX1', 'MAF', 'HMOX1', 'NQO1', 'CEBPB', 'FYN', 'KEAP1', 'MAPK8'}, number: 14
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GSK3B', 'GCLC'}, number: 4
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'GSK3B', 'FYN', 'MAPK8'}, number: 3
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'FYN', 'MAPK8'}, number: 4
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GSK3B', 'GCLC', 'GCLM', 'EPHB2', 'RBX1', 'MAF', 'HMOX1', 'NQO1', 'CEBPB', 'FYN', 'KEAP1', 'MAPK8'}, number: 14
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'TSC2', 'MLST8', 'RB1CC1', 'AKT1S1', 'DEPTOR'}, number: 6
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3R4'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R4'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'FTL'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'ATG5', 'WIPI2', 'TSC2', 'ATG12', 'MLST8', 'RB1CC1', 'AKT1S1', 'STK11', 'DEPTOR', 'PIK3R4'}, number: 11
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R4'}, number: 1
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'TSC2', 'MLST8', 'AKT1S1', 'FTL', 'DEPTOR'}, number: 6
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FTL', 'PIK3R4'}, number: 2
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC2', 'STK11', 'MTOR', 'FTL'}, number: 4
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK14', 'IL6', 'CCL2', 'NFKB1', 'JUN', 'JAK1', 'MAPK8'}, number: 7
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'JAK1', 'NFKB1'}, number: 3
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'MAPK14', 'PRKCD', 'PLCE1', 'CAV1', 'PRKCZ', 'JUN', 'JAK1', 'MAPK8'}, number: 10
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'MAPK8', 'JUN', 'NFKB1'}, number: 4
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRB', 'NRAS', 'PRKCA', 'PRKCB', 'RXRA'}, number: 5
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'MAPK8', 'JUN', 'NFKB1'}, number: 4
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA', 'PRKCA', 'MAPK8'}, number: 3
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'ETS1', 'PRKCA', 'PRKCB', 'IL6', 'TLR2', 'PLCE1', 'IKBKB', 'NFKB1', 'JAK1', 'MAPK8'}, number: 11
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'MAPK8', 'JUN', 'NFKB1'}, number: 4
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS'}, number: 1
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14', 'TYK2', 'IKBKB', 'JAK1', 'NFKB1'}, number: 5
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAPK14', 'IKBKB', 'CCL2', 'NFKB1', 'JUN', 'PRKCZ', 'MAPK8'}, number: 7
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRB', 'MAPK8', 'PRKCA', 'CAMK2G', 'PRKCB', 'MAPK14', 'CAMK2D', 'CCL2', 'RXRA', 'JUN', 'NFKB1'}, number: 11
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'NFKB1', 'RXRA', 'JUN', 'MAPK8'}, number: 6
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'PRKCB', 'MAPK14', 'PRKCD', 'IKBKB', 'PRKCZ', 'JUN', 'JAK1', 'NFKB1'}, number: 9
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MAPK14', 'PRKCD', 'IKBKB', 'NFKB1', 'JUN', 'MAPK8'}, number: 7
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAPK8', 'PRKCA', 'CAMK2G', 'PRKCB', 'MAPK14', 'IL6', 'PRKCD', 'CAMK2D', 'IKBKB', 'TNFRSF1A', 'IFNGR1', 'IFNGR2', 'JUN', 'JAK1', 'NFKB1'}, number: 15
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS'}, number: 1
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA', 'PRKCA', 'MAPK8'}, number: 3
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'AKT1', 'MAP2K1', 'E2F1', 'SOS1', 'RAF1', 'CDKN1A', 'CCND1', 'TGFA', 'CDKN2A', 'TP53', 'PDK1'}, number: 13
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'BRAF', 'E2F1', 'ERBB2', 'SOS1', 'RAF1', 'STAT5A', 'SOS2', 'PLCG1', 'STAT3', 'MAP2K1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'STAT3', 'AKT1'}, number: 3
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'GADD45G', 'SOS2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'PDK1', 'GADD45A'}, number: 17
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRB', 'NRAS', 'E2F3', 'PRKCA', 'GADD45B', 'BRAF', 'SOS2', 'PDK1', 'CDK4', 'RAF1', 'STAT5A', 'TGFA', 'CDK6', 'STAT3', 'CCND1', 'PLCG1', 'RXRA', 'CDKN2A', 'TP53', 'MAP2K1', 'GADD45A', 'MAP2K2', 'DDB2', 'EML4', 'STK4', 'PRKCB', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'GADD45G', 'CDKN1A'}, number: 32
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'GADD45G', 'SOS2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'PDK1', 'GADD45A'}, number: 17
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'GADD45G', 'CDKN1A', 'CCND1', 'CDK6', 'GADD45A'}, number: 11
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA', 'PRKCA', 'TGFA'}, number: 3
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'CDK4', 'PRKCA', 'TP53', 'MAP2K2', 'STK4', 'PRKCB', 'AKT1', 'SOS1', 'RAF1', 'SOS2', 'CDKN1A', 'CCND1', 'TGFA', 'PLCG1', 'CDK6', 'MAP2K1'}, number: 17
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'GADD45G', 'SOS2', 'CDKN1A', 'CCND1', 'CDKN2A', 'CDK6', 'PDK1', 'GADD45A'}, number: 17
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'AKT1', 'BRAF', 'SOS1', 'PLCG1', 'MAP2K1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'SOS1', 'STAT5A', 'STAT3', 'MAP2K1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K1', 'PLCG1', 'AKT1'}, number: 4
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRB', 'DDB2', 'PRKCA', 'PRKCB', 'CDKN1A', 'CCND1', 'TGFA', 'RXRA', 'GADD45A'}, number: 9
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'PRKCA', 'SOS2', 'PDK1', 'CDK4', 'TGFA', 'CDK6', 'CCND1', 'RXRA', 'CDKN2A', 'TP53', 'GADD45A', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'SOS1', 'GADD45G', 'CDKN1A'}, number: 20
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'PRKCB', 'AKT1', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'STAT3', 'MAP2K1'}, number: 9
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'AKT1', 'BRAF', 'SOS1', 'RAF1', 'STAT5A', 'PLCG1', 'STAT3', 'MAP2K1'}, number: 10
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'RAF1', 'STAT5A', 'PLCG1', 'STAT3', 'MAP2K1'}, number: 9
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'AKT1', 'BRAF', 'SOS1', 'PLCG1', 'MAP2K1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'AKT1', 'CDKN1A', 'TGFA', 'RXRA', 'TP53'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'CDK4', 'CUL1', 'CCL2', 'HBEGF', 'TGFB1', 'FGF19', 'SLC2A1', 'TGFA', 'SLC7A5', 'CCND1', 'JUN'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MGST1', 'GCLC', 'UGT1A6', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'TGFBR3', 'TGFB1', 'JUN', 'STAT3'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MGST1', 'GCLC', 'UGT1A6', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MGST1', 'GCLC', 'UGT1A6', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NCOA3', 'JUND', 'JUN', 'STAT3'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'CDK1'}, number: 2
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'CDK1', 'CDKN1B', 'TGFB1', 'CCND1', 'JUN'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'CCND1', 'TGFA', 'RXRA', 'STAT3'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'GADD45B', 'CDK4', 'CDK1', 'CDKN1B', 'TGFB1', 'CCND1', 'JUN'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'CDK1', 'CDKN1B', 'CCND1'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAFG', 'SLC6A6', 'G6PD', 'ABCC5', 'SLC39A14', 'HSPA1A', 'HBEGF', 'TGFB1', 'SLC2A1', 'SLC2A5', 'KEAP1', 'ME1', 'CES2', 'MGST2', 'BLVRB', 'GCLC', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'GSTM3', 'SQSTM1', 'TGFB2', 'SLC39A9', 'SLC2A11', 'SLC2A10', 'HSP90AB1', 'TGFBR2', 'UGT1A6', 'GCLM', 'SLC39A13', 'TXNRD3', 'GSTA4', 'MAFF', 'PRDX1', 'RXRA', 'FTL', 'SLC2A6', 'FTH1', 'CES4A', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'GSR', 'CBR1', 'SLC6A8', 'SLC5A6', 'ABCC2', 'TXN'}, number: 51
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'HSP90AA1', 'HSP90AB1', 'CDKN1B', 'FGF19', 'CCND1', 'TGFA'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'CDK1', 'CDKN1B', 'TGFB1', 'CCND1', 'JUN'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'IRS2', 'STAT3'}, number: 2
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'JUN', 'CCL2'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFG', 'SLC6A6', 'G6PD', 'ABCC5', 'SLC39A14', 'HSPA1A', 'HBEGF', 'CPT2', 'TGFB1', 'SLC2A1', 'SLC2A5', 'ANGPTL4', 'KEAP1', 'ME1', 'CES2', 'MGST2', 'BLVRB', 'GCLC', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'GSTM3', 'SQSTM1', 'TGFB2', 'SLC39A9', 'PLTP', 'MGST1', 'SLC2A11', 'SLC2A10', 'HSP90AB1', 'TGFBR2', 'UGT1A6', 'GCLM', 'SLC39A13', 'TXNRD3', 'GSTA4', 'MAFF', 'PRDX1', 'CCND1', 'RXRA', 'FTL', 'JUN', 'SLC2A6', 'FTH1', 'CES4A', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'GSR', 'CCL2', 'CBR1', 'SLC6A8', 'SLC5A6', 'ABCC2', 'TXN'}, number: 58
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFG', 'GADD45B', 'SLC6A6', 'G6PD', 'ABCC5', 'SLC39A14', 'HSPA1A', 'HBEGF', 'TGFB1', 'SLC2A1', 'SLC2A5', 'KEAP1', 'IL1B', 'ME1', 'CDK4', 'CES2', 'MGST2', 'CDK1', 'BLVRB', 'GCLC', 'HMOX1', 'CDKN1B', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'GSTM3', 'SQSTM1', 'TGFB2', 'SLC39A9', 'SLC2A11', 'SLC2A10', 'HSP90AB1', 'TGFBR2', 'UGT1A6', 'GCLM', 'SLC39A13', 'TXNRD3', 'GSTA4', 'MAFF', 'PRDX1', 'CCND1', 'RXRA', 'FTL', 'JUN', 'SLC2A6', 'FTH1', 'CES4A', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'GSR', 'CBR1', 'SLC6A8', 'SLC5A6', 'ABCC2', 'TXN'}, number: 58
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MGST1', 'GCLC', 'UGT1A6', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'MGST1', 'TGFBR2', 'UGT1A6', 'GCLC', 'GSR', 'TGFBR3', 'HMOX1', 'TGFB1', 'CCL20', 'NQO1', 'JUN', 'STAT3', 'TXNRD1'}, number: 13
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'IRS2', 'JUN', 'STAT3'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'IRS2', 'TGFB2', 'LRRC8A', 'TGFBR2', 'IL12A', 'TGFBR3', 'TGFB1', 'SLC2A1', 'JUN', 'STAT3', 'SLC2A3'}, number: 13
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MAFG', 'SLC6A6', 'G6PD', 'ABCC5', 'SLC39A14', 'HSPA1A', 'HBEGF', 'TGFB1', 'FGF19', 'SLC2A1', 'SLC2A5', 'KEAP1', 'ME1', 'CES2', 'MGST2', 'BLVRB', 'GCLC', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'SLC2A3', 'GSTM3', 'IRS2', 'TGFB2', 'SLC39A9', 'UGT2B4', 'SLC2A11', 'SQSTM1', 'SLC2A10', 'HSP90AB1', 'TGFBR2', 'UGT1A6', 'GCLM', 'SLC39A13', 'TXNRD3', 'SREBF1', 'GSTA4', 'FKBP5', 'MAFF', 'PRDX1', 'RXRA', 'FTL', 'SLC2A6', 'FTH1', 'IP6K3', 'CES4A', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'GSR', 'NR1H4', 'CBR1', 'SLC6A8', 'SLC5A6', 'ABCC2', 'TXN'}, number: 58
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'CPT2'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MGST1', 'GCLC', 'UGT1A6', 'GSR', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'DDB2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'DDB2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RPA1', 'POLD1', 'RBX1', 'PARP1', 'ERCC8', 'POLE3', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPC', 'XPA', 'RAD23A', 'XRCC1', 'CETN2', 'CCNH', 'ERCC3', 'RPA3', 'GTF2H1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'LIG1', 'BRCA1', 'PCNA', 'RAD23B', 'POLH', 'ERCC2'}, number: 30
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'DDB2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RPA1', 'POLD1', 'RBX1', 'PARP1', 'ERCC8', 'POLE3', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPC', 'XPA', 'RAD23A', 'XRCC1', 'CETN2', 'CCNH', 'ERCC3', 'RPA3', 'GTF2H1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'LIG1', 'BRCA1', 'PCNA', 'RAD23B', 'POLH', 'ERCC2'}, number: 30
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RBX1', 'RPA2', 'DDB2', 'BRCA1'}, number: 4
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'DDB2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'DDB2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RPA1', 'POLD1', 'RBX1', 'ERCC8', 'POLE3', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPC', 'XPA', 'RAD23A', 'CETN2', 'CCNH', 'ERCC3', 'RPA3', 'GTF2H1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'LIG1', 'PCNA', 'RAD23B', 'ERCC2'}, number: 26
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'DDB2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RPA1', 'POLD1', 'RBX1', 'ERCC8', 'POLE3', 'RFC3', 'RPA2', 'GTF2H4', 'POLE', 'XPC', 'XPA', 'RAD23A', 'CETN2', 'CCNH', 'ERCC3', 'RPA3', 'GTF2H1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'LIG1', 'PCNA', 'RAD23B', 'ERCC2'}, number: 26
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RBX1', 'RPA2', 'DDB2'}, number: 3
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'MAPK14', 'AKT1', 'MAP2K1', 'SOS1', 'CDK2', 'RAF1', 'NFKB1', 'VEGFA', 'JAK1', 'MAPK8'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT3', 'JAK1', 'NFKB1'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'RICTOR', 'PRKCA', 'PIAS3', 'JUND', 'MAP2K2', 'PRKCB', 'PRKCD', 'MAPK14', 'MAP2K1', 'AKT1', 'SOS1', 'RAF1', 'PTPN11', 'STAT3', 'JAK1', 'MAPK8'}, number: 17
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'STAT3', 'AKT1'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'MAPK8'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'SOS1', 'RAF1', 'STAT3', 'MAP2K1'}, number: 8
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'MAPK8'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'CDKN1B', 'CDK2'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'CEBPB', 'MAPK8'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'PRKCA', 'MAP2K2', 'PRKCB', 'AKT1', 'MAP2K1', 'SOS1', 'CDK2', 'OSMR', 'RAF1', 'CDKN1B', 'PTPN11', 'VEGFA', 'JAK1', 'NFKB1'}, number: 16
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'MAPK8'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'SOS1', 'MAP2K1', 'AKT1'}, number: 4
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'SOCS3', 'MAPK14', 'AKT1', 'TYK2', 'MAP2K1', 'SOS1', 'PTPN11', 'CEBPB', 'STAT3', 'JAK1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'NFKB1', 'PTPN11', 'MAP2K1', 'MAPK8'}, number: 7
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'PRKCB', 'MAPK14', 'CDK2', 'NFKB1', 'MAPK8'}, number: 7
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'AKT1', 'SOS1', 'CDK2', 'CDKN1B', 'NFKB1', 'CEBPB', 'MAPK8'}, number: 8
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PRKCB', 'MAPK14', 'PRKCD', 'AKT1', 'MAP2K1', 'SOS1', 'RAF1', 'PXN', 'STAT3', 'JAK1', 'NFKB1'}, number: 11
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'MAPK14', 'PRKCD', 'AKT1', 'SOS1', 'RAF1', 'NFKB1', 'PTPN11', 'STAT3', 'MAP2K1', 'MAPK8'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'SOCS3', 'PRKCA', 'MAPK8', 'MAP2K2', 'PRKCB', 'MAPK14', 'PRKCD', 'AKT1', 'MAP2K1', 'RAF1', 'IL6ST', 'PTPN11', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'SOS1', 'MAP2K1', 'AKT1'}, number: 4
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'AKT1', 'CEBPB', 'MAPK8'}, number: 5
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'GSK3B', 'E2F1', 'TCF7L2', 'TGFB1', 'CDKN1A', 'CSNK1A1', 'APC'}, number: 8
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SPP1', 'TGFB1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B', 'APC'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'GSK3B', 'E2F1', 'TCF7L2', 'TGFB1', 'CDKN1A', 'APC'}, number: 7
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'E2F1', 'CDKN1A'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'GSK3B', 'E2F1', 'TCF7L2', 'TGFB1', 'CDKN1A', 'APC'}, number: 7
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'E2F1', 'CDKN1A'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CEBPB', 'TGFB2', 'TGFB1', 'GSK3B'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A', 'CDK4', 'SPP1', 'GSK3B'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'GSK3B', 'E2F1', 'TCF7L2', 'TGFB1', 'CDKN1A', 'APC'}, number: 7
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB', 'CEBPA'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'GSK3B', 'NOTCH1', 'PPARG', 'TCF7L2', 'TGFB1', 'CDKN1A', 'CSNK1A1', 'APC'}, number: 9
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'TGFB2', 'GSK3B', 'E2F1', 'TCF7L2', 'TGFB1', 'CDKN1A', 'CEBPB', 'APC'}, number: 9
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SPP1', 'TGFB1', 'GSK3B'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SPP1', 'BMP2', 'APC', 'GSK3B'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFB2', 'GSK3B', 'SPP1', 'BMP2', 'TGFB1', 'APC'}, number: 6
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2', 'GSK3B', 'SREBF1', 'TGFB1', 'CDKN1A', 'CEBPB'}, number: 6
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'PRKAG2', 'PRKAA2', 'ULK2', 'TSC2', 'MLST8', 'CDK2', 'AKT1S1', 'CCL2', 'CDKN1A', 'SLC2A1', 'DEPTOR', 'CCNE1'}, number: 13
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'LIF', 'SERPINE1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'AURKA', 'PCNA'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1', 'TNFRSF10B'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'SESN1', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'PIDD1', 'CDKN1A', 'CCNG1', 'CCNE1', 'GADD45A'}, number: 14
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2', 'CDKN1A', 'GADD45A'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'SESN1', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'PIDD1', 'CCNE1', 'GADD45A'}, number: 13
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1', 'TNFRSF10B'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'MLH1', 'MSH2', 'CCNE1', 'SFN', 'RRM2B', 'SESN1', 'PMAIP1', 'TNFRSF10B', 'XPC', 'PIDD1', 'CDK2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'PCNA', 'XRCC5', 'CDKN1A', 'FANCC', 'POLH'}, number: 20
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'SLC2A1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'PRKAG2', 'PRKAA2', 'TSC2', 'MLST8', 'CDK2', 'AKT1S1', 'CDKN1A', 'DEPTOR', 'CCNE1', 'DDIT4'}, number: 11
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'SESN1', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'PIDD1', 'CCNE1', 'GADD45A'}, number: 13
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'CCL2'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MLH1', 'NOTCH1', 'FUCA1', 'MSH2', 'ADORA2B', 'DRAM1', 'SLC2A1', 'CX3CL1', 'CCNG1', 'CCNE1', 'DEPTOR', 'SAT1', 'DDIT4', 'E2F7', 'SFN', 'PRKAG2', 'RRM2B', 'TNFRSF10D', 'SESN1', 'TSC2', 'PMAIP1', 'MLST8', 'TNFRSF10B', 'XPC', 'PIDD1', 'MTOR', 'LIF', 'PRKAA2', 'NCF2', 'TP53I3', 'SCO2', 'CDK2', 'SESN2', 'SIVA1', 'SERPINE1', 'ZMAT3', 'GADD45A', 'SLC7A11', 'DDB2', 'CDC25C', 'CDC25A', 'ULK2', 'TP53INP1', 'ULBP2', 'GLS2', 'PCNA', 'AKT1S1', 'CCL2', 'XRCC5', 'CDKN1A', 'FANCC', 'BTG2', 'POLH', 'AURKA'}, number: 54
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'SESN1', 'PMAIP1', 'TNFRSF10B', 'CDK2', 'CDKN1A', 'SLC2A1', 'PIDD1', 'CCNE1', 'GADD45A'}, number: 15
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'LIF', 'SERPINE1', 'CX3CL1'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'TSC2', 'MTOR', 'PRKAA2', 'NCF2'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'LIF', 'PRKAA2', 'NCF2', 'TSC2', 'GLS2', 'SLC2A1'}, number: 7
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC2', 'MTOR'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'SLC7A11', 'PRKAG2', 'PRKAA2', 'TSC2', 'CDKN1A', 'SLC2A1'}, number: 7
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKAG2', 'PRKAA2'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'CDK4', 'MAPK8', 'MAP2K2', 'AKT1', 'MAP2K1', 'E2F1', 'RAF1', 'PAK2', 'TGFB1', 'CDKN1A', 'CCND1', 'TGFA', 'CDKN2A', 'TP53', 'VEGFA', 'JAK1', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'TGFB1', 'STAT3', 'JAK1', 'NFKB1'}, number: 5
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'RALA', 'PRKCD', 'AKT1', 'MAP2K1', 'BRAF', 'CDC42', 'PLD1', 'E2F1', 'ERBB2', 'RAF1', 'PEBP1', 'STAT3', 'JAK1', 'MAPK8'}, number: 16
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'CDC42', 'STAT3', 'AKT1'}, number: 3
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'CDC42', 'TGFB1', 'NFKB1', 'CDK4', 'CDK6', 'MAPK8', 'RAC2', 'RAD51', 'CCND1', 'CDKN2A', 'TP53', 'GADD45A', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'GADD45G', 'CDKN1A'}, number: 19
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'E2F3', 'GADD45B', 'BRAF', 'CDK4', 'RAF1', 'TGFA', 'CDK6', 'STAT3', 'CCND1', 'CDKN2A', 'TP53', 'MAP2K1', 'GADD45A', 'MAP2K2', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'GADD45G', 'CDKN1A'}, number: 20
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'CDC42', 'TGFB1', 'NFKB1', 'CDK4', 'CDK6', 'MAPK8', 'RAC2', 'RAD51', 'CCND1', 'CDKN2A', 'TP53', 'GADD45A', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'GADD45G', 'CDKN1A'}, number: 19
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'GADD45G', 'CDKN1A', 'RAD51', 'CCND1', 'CDK6', 'BRCA2', 'GADD45A'}, number: 13
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2', 'TGFBR2', 'TGFB1', 'TGFA', 'MAPK8'}, number: 5
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDC42', 'VEGFA', 'NFKB1', 'CDK4', 'RAF1', 'TGFA', 'CDK6', 'JAK1', 'MAPK8', 'MTOR', 'RALA', 'RAC2', 'BCL2L1', 'CCND1', 'TP53', 'MAP2K1', 'MAP2K2', 'AKT1', 'PLD1', 'IKBKB', 'PAK2', 'CDKN1A'}, number: 22
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'CDC42', 'TGFB1', 'NFKB1', 'CDK4', 'CDK6', 'MAPK8', 'RAC2', 'RAD51', 'CCND1', 'CDKN2A', 'TP53', 'GADD45A', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'GADD45G', 'CDKN1A'}, number: 19
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'BRAF', 'MAP2K1', 'AKT1'}, number: 4
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'IKBKB', 'JAK1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 7
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'IKBKB', 'NFKB1', 'MAP2K1', 'MAPK8'}, number: 6
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'DDB2', 'TGFB2', 'TGFBR2', 'GADD45A', 'TGFB1', 'RAD51', 'CCND1', 'TGFA', 'NFKB1', 'CDKN1A', 'BRCA2', 'MAPK8'}, number: 13
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'CDC42', 'TGFB1', 'NFKB1', 'CDK4', 'TGFA', 'CDK6', 'MAPK8', 'TGFB2', 'RAC2', 'TGFBR2', 'RAD51', 'CCND1', 'CDKN2A', 'TP53', 'GADD45A', 'DDB2', 'AKT1', 'E2F1', 'ERBB2', 'GADD45G', 'CDKN1A'}, number: 22
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PRKCD', 'RAC2', 'MAP2K1', 'AKT1', 'BRAF', 'CDC42', 'TGFBR2', 'IKBKB', 'RAF1', 'TGFB1', 'STAT3', 'JAK1', 'NFKB1'}, number: 13
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'MAP2K2', 'PRKCD', 'AKT1', 'BRAF', 'CDC42', 'IKBKB', 'RAF1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 12
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'MAP2K2', 'TGFB2', 'PRKCD', 'AKT1', 'MAP2K1', 'TGFBR2', 'CDC42', 'IKBKB', 'RAF1', 'TGFB1', 'STAT3', 'JAK1', 'NFKB1'}, number: 15
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'BRAF', 'MAP2K1', 'AKT1'}, number: 4
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'TGFB2', 'AKT1', 'TGFBR2', 'TGFB1', 'CDKN1A', 'TGFA', 'TP53', 'MAPK8'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CUL1', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCNE1', 'HSPA5'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCNE1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HSPA1A', 'CCNE1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HSPA1A', 'CCNE1', 'HSPA5'}, number: 3
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MCL1', 'SLC2A1', 'TGFA', 'TP53', 'VEGFA'}, number: 5
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53', 'TGFA'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A3', 'SLC2A1', 'TGFA'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MCL1', 'BCL2L1', 'TGFA', 'TP53', 'VEGFA'}, number: 5
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'TP53', 'PMAIP1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'BIRC5'}, number: 1
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1', 'SLC2A1', 'TGFA', 'SERPINE1', 'SLC2A3'}, number: 5
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PMAIP1', 'SLC2A1', 'TGFA', 'TP53', 'SLC2A3'}, number: 5
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PDHA1', 'SLC2A1', 'SLC2A3'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'SLC2A3', 'SLC2A1', 'TGFA'}, number: 4
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PDHA1'}, number: 1
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'MAPK14', 'MAPK8'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'MAPK14', 'GCLC'}, number: 4
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'MAPK14', 'GCLC'}, number: 4
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'MAPK14', 'GCLC'}, number: 4
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'MAPK14', 'MAPK8'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN', 'MAPK8'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN', 'MAPK8'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'HMOX1', 'NQO1', 'KEAP1', 'ABCC2', 'MAPK8'}, number: 8
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN', 'MAPK8'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAPK14'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'MAPK14', 'MAPK8'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAPK14', 'SRXN1', 'GCLM', 'GCLC', 'HMOX1', 'JUN', 'NQO1', 'KEAP1', 'ABCC2', 'MAPK8'}, number: 10
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'HMOX1', 'JUN', 'NQO1', 'KEAP1', 'ABCC2', 'MAPK8'}, number: 9
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'MAPK14', 'GCLC'}, number: 4
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'MAPK14', 'GCLC', 'HMOX1', 'NQO1', 'JUN'}, number: 5
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'MAPK14', 'MAPK8'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN', 'MAPK14', 'MAPK8'}, number: 3
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'HMOX1', 'NQO1', 'KEAP1', 'EPHX1', 'ABCC2', 'MAPK8'}, number: 9
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'MAPK14', 'GCLC'}, number: 4
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ATF3', 'DDIT3'}, number: 2
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PPP1R15A', 'ERN1', 'ATF6', 'DDIT3', 'XBP1', 'EIF2AK3', 'HSPA5'}, number: 7
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PPP1R15A', 'ERN1', 'ATF6', 'DDIT3', 'XBP1', 'EIF2AK3', 'HSPA5'}, number: 7
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PPP1R15A', 'ERN1', 'ATF6', 'DDIT3', 'XBP1', 'EIF2AK3', 'HSPA5'}, number: 7
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HSP90B1'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PPP1R15A', 'ERN1', 'ATF6', 'DDIT3', 'XBP1', 'EIF2AK3', 'HSPA5'}, number: 7
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'YY1', 'EED', 'RASSF6', 'CSF2', 'CTBP1', 'LAMB3', 'CCNE1', 'PDGFRB', 'PDK1', 'LAMA2', 'IL1B', 'RPS6KA3', 'PODXL', 'RASSF4', 'MAX', 'SUZ12', 'TEAD4', 'GSK3B', 'CDK2', 'EIF4G1', 'MAP2K1', 'SETDB1', 'WNT5B', 'COL4A5', 'AKT1', 'MINK1', 'CSNK2B', 'AKT1S1', 'BAP1', 'EFNA1', 'COL4A4', 'SLC2A1', 'CXCL5', 'DEPTOR', 'LAMC3', 'VEGFA', 'DVL2', 'LIN28B', 'TSC2', 'RNF2', 'TNIK', 'RASSF2', 'WWTR1', 'KITLG', 'EFNA5', 'MLST8', 'DDIT3', 'TGFA', 'NF2', 'SETD2', 'MAPK8', 'AMOT', 'CDH2', 'TTI1', 'MET', 'CTHRC1', 'FOXM1', 'CDH16', 'FGF2', 'MAP3K1', 'EZH2', 'EIF4EBP1', 'ATF3', 'LAMB1', 'JUN', 'LAMA5', 'LAMC2', 'CSF1', 'SOS1', 'RYK', 'FZD2', 'ITPR3', 'NGF', 'COL4A2', 'BARD1', 'CTBP2', 'TGFB1', 'STK38L', 'PRKAG2', 'MMP3', 'NDRG1', 'FGFR4', 'ACTG1', 'FGFR3', 'CD44', 'RAF1', 'COL4A3', 'MTOR', 'PRKAA2', 'ACTA2', 'CDH3', 'ITGA2', 'FOSL1', 'ITGA4', 'TCF7L2', 'CSNK2A1', 'AREG', 'CIT', 'LRP6', 'MAP3K2', 'FRAT1', 'CDKN2A', 'CSNK1A1', 'TP53', 'SLC3A2', 'APC', 'MAP2K2', 'CD274', 'DVL3', 'MAPK14', 'E2F1', 'CD47', 'RPS6KA5', 'SENP2', 'PAK2', 'CDKN1A', 'FGFR2', 'ITGA3', 'KIF23', 'CHD8', 'CUL1', 'MAP3K9', 'CCN2', 'BAG2', 'CCND2', 'BDNF', 'HBEGF', 'FGF19', 'LAMB2', 'CSNK2A2', 'DKK1', 'NFKB1', 'CCND3', 'MAP2K6', 'CDK4', 'LRP5', 'PDGFA', 'TNNT1', 'MAP3K4', 'COL4A1', 'TELO2', 'VEGFC', 'JAK1', 'ASXL1', 'MCL1', 'RPS6KA1', 'IGF1R', 'WDR5', 'CDH6', 'FZD1', 'CCND1', 'ACTC1', 'IL6', 'ULK2', 'BRCA1', 'RB1CC1', 'CCL2', 'MAP2K3', 'SLC7A5'}, number: 159
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'TGFB1', 'JAK1', 'NFKB1'}, number: 4
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'RPS6KA3', 'MAPK14', 'AKT1', 'RPS6KA1', 'E2F1', 'SOS1', 'RPS6KA5', 'MAP3K4', 'MAP3K1', 'RAF1', 'JAK1', 'EIF4EBP1', 'MAP3K2', 'JUN', 'MAP2K1', 'MAPK8'}, number: 18
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'GSK3B', 'APC'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'TP53', 'DDIT3'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCND2', 'TGFB1', 'CCNE1', 'PDK1', 'NFKB1', 'CCND3', 'CDK4', 'DVL2', 'MAP3K4', 'MAPK8', 'GSK3B', 'FOSL1', 'TCF7L2', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'APC', 'DVL3', 'WNT5B', 'AKT1', 'BRCA1', 'E2F1', 'SOS1', 'CDKN1A'}, number: 28
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'AKT1', 'MAP2K1', 'E2F1', 'SOS1', 'RAF1', 'CDKN1A', 'CCND1', 'TGFA', 'CDKN2A', 'TP53', 'PDK1'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND2', 'TGFB1', 'CCNE1', 'PDK1', 'NFKB1', 'CCND3', 'IL1B', 'CDK4', 'DVL2', 'MAP3K4', 'DDIT3', 'MAPK8', 'GSK3B', 'FOSL1', 'TCF7L2', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'APC', 'DVL3', 'WNT5B', 'AKT1', 'BRCA1', 'E2F1', 'SOS1', 'CDKN1A'}, number: 30
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'TP53', 'DDIT3'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'AKT1', 'CCND2', 'BRCA1', 'E2F1', 'CDK2', 'CDKN1A', 'CCND1', 'TP53', 'CCNE1', 'CCND3'}, number: 11
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSK3B', 'HBEGF', 'TGFB1', 'SLC2A1', 'TGFA', 'MAPK8'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A4', 'CCND2', 'NGF', 'BDNF', 'COL4A2', 'FGF19', 'LAMB2', 'DEPTOR', 'PDGFRB', 'VEGFA', 'LAMC3', 'LAMB3', 'CCNE1', 'LAMA2', 'NFKB1', 'PRKAG2', 'CCND3', 'CDK4', 'PDGFA', 'TSC2', 'FGFR4', 'KITLG', 'FGFR3', 'EFNA5', 'MLST8', 'COL4A1', 'RAF1', 'TGFA', 'VEGFC', 'COL4A3', 'MAPK8', 'MTOR', 'JAK1', 'MCL1', 'GSK3B', 'PRKAA2', 'ITGA2', 'MET', 'ITGA4', 'IGF1R', 'CDK2', 'FGF2', 'EIF4EBP1', 'CCND1', 'LAMB1', 'TP53', 'MAP2K1', 'LAMA5', 'MAP2K2', 'LAMC2', 'IL6', 'CSF1', 'COL4A5', 'AKT1', 'BRCA1', 'SOS1', 'AKT1S1', 'RB1CC1', 'PAK2', 'CDKN1A', 'EFNA1', 'FGFR2', 'ITGA3'}, number: 63
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND2', 'TGFB1', 'CCNE1', 'PDK1', 'NFKB1', 'CCND3', 'CDK4', 'DVL2', 'MAP3K4', 'MAPK8', 'GSK3B', 'FOSL1', 'TCF7L2', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'APC', 'DVL3', 'WNT5B', 'AKT1', 'BRCA1', 'E2F1', 'SOS1', 'CDKN1A'}, number: 28
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'RPS6KA1', 'TSC2', 'AKT1', 'BDNF', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'SOS1', 'ITPR3', 'JAK1', 'MAP2K1', 'NFKB1'}, number: 8
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'IL1B', 'MAPK14', 'AKT1', 'MAP3K1', 'CCL2', 'MAP2K3', 'MAP3K2', 'NFKB1', 'JUN', 'MAP2K1', 'MAPK8'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND2', 'CTBP2', 'HBEGF', 'TGFB1', 'SLC2A1', 'CSNK2A2', 'CTBP1', 'DEPTOR', 'CCNE1', 'DKK1', 'NFKB1', 'CCND3', 'DVL2', 'PRKAG2', 'LRP5', 'TSC2', 'MLST8', 'TGFA', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'FOSL1', 'TCF7L2', 'CSNK2A1', 'CDK2', 'CHD8', 'FZD1', 'LRP6', 'CCND1', 'FRAT1', 'CSNK1A1', 'JUN', 'APC', 'DVL3', 'MAPK14', 'WNT5B', 'ULK2', 'BRCA1', 'CSNK2B', 'RYK', 'AKT1S1', 'SENP2', 'CCL2', 'CDKN1A', 'FZD2'}, number: 46
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND2', 'HBEGF', 'TGFB1', 'SLC2A1', 'CCNE1', 'PDK1', 'NFKB1', 'CCND3', 'IL1B', 'CDK4', 'DVL2', 'MAP3K4', 'DDIT3', 'TGFA', 'MAPK8', 'GSK3B', 'FOSL1', 'TCF7L2', 'CDK2', 'MAP3K1', 'CCND1', 'FRAT1', 'CDKN2A', 'TP53', 'JUN', 'APC', 'DVL3', 'WNT5B', 'AKT1', 'BRCA1', 'E2F1', 'SOS1', 'CDKN1A'}, number: 33
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B', 'MAPK14', 'AKT1', 'SOS1', 'RAF1', 'TGFB1', 'JAK1', 'CXCL5', 'JUN', 'MAP2K1', 'NFKB1'}, number: 11
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NGF', 'BDNF', 'NFKB1', 'RPS6KA3', 'TSC2', 'RAF1', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'CDH2', 'RPS6KA1', 'CSNK2A1', 'MAP3K1', 'EIF4EBP1', 'MAP3K2', 'JUN', 'MAP2K1', 'APC', 'MAP2K2', 'MAPK14', 'AKT1', 'SOS1', 'RPS6KA5'}, number: 24
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NGF', 'BDNF', 'TGFB1', 'SLC2A1', 'NFKB1', 'IL1B', 'RPS6KA3', 'TSC2', 'RAF1', 'JAK1', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'CDH2', 'RPS6KA1', 'CSNK2A1', 'FGF2', 'MAP3K1', 'EIF4EBP1', 'MAP3K2', 'JUN', 'MAP2K1', 'APC', 'MAP2K2', 'MAPK14', 'IL6', 'AKT1', 'RPS6KA5'}, number: 29
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'RPS6KA1', 'TSC2', 'AKT1', 'BDNF', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'GSK3B', 'PRKAG2', 'PRKAA2', 'AKT1', 'TSC2', 'HBEGF', 'TGFB1', 'EIF4EBP1', 'SLC2A1', 'TGFA', 'CDKN1A', 'FGF19', 'TP53', 'MAPK8'}, number: 15
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKAA2', 'PRKAG2', 'AKT1'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR4', 'SLC2A1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PODXL', 'LRP5', 'COL4A4', 'COL4A5', 'CDH2', 'AKT1', 'TGFB1', 'CDKN1A', 'LAMB2', 'LRP6', 'ITGA3', 'DKK1', 'COL4A3', 'LAMA5'}, number: 14
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFB1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'DNM1', 'AKT1', 'PLCE1', 'PCNA', 'PLCG1'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'TGFB1', 'AKT1'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A', 'PLCG1', 'AKT1'}, number: 3
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'TGFB1', 'AKT1'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PCNA', 'CDKN1B', 'CDKN1A', 'AKT1'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB1', 'FYN'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A4', 'COL4A5', 'AKT1', 'PLCE1', 'CDKN1B', 'CDKN1A', 'ITGA3', 'LAMB2', 'PLCG1', 'LAMA5', 'COL4A3'}, number: 11
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'TGFB1', 'AKT1'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'PLCG1', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'PLCG1', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LRP5', 'NOTCH1', 'PCNA', 'TGFB1', 'CDKN1A', 'LRP6', 'DKK1', 'ILK'}, number: 8
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'CDKN1B', 'CDKN1A', 'TGFB1', 'FYN'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFB1', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1', 'FYN', 'PLCG1', 'CDH2'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1', 'CDH2', 'TGFB1', 'PLCG1', 'FYN'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'PLCG1', 'AKT1'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'TGFB1', 'FYN', 'AKT1'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'GSK3B', 'MAPK14', 'AKT1', 'MAP2K1', 'SOS1', 'RAF1', 'EIF4EBP1', 'NFKB1', 'JUN', 'JAK1', 'MAPK8'}, number: 13
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'PIAS3', 'MAPK14', 'AKT1', 'MAP2K1', 'ERBB2', 'SOS1', 'RAF1', 'STAT5A', 'EIF4EBP1', 'CBL', 'PTPN11', 'JUN', 'STAT3', 'JAK1', 'MAPK8'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'GSK3B', 'STAT3', 'AKT1'}, number: 3
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'NFKB1', 'JUN', 'MAPK8'}, number: 7
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'ERBB2', 'SOS1', 'RAF1', 'STAT5A', 'STAT3', 'MAP2K1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'NFKB1', 'JUN', 'MAPK8'}, number: 7
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'FYN', 'GSK3B', 'MAPK8'}, number: 3
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'GSK3B', 'AKT1', 'MAP2K1', 'SOS1', 'RAF1', 'EIF4EBP1', 'NFKB1', 'PTPN11', 'JAK1', 'MAPK8'}, number: 12
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'ERBB2', 'SOS1', 'NFKB1', 'JUN', 'MAPK8'}, number: 7
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'AKT1', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 5
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'SOCS3', 'IRS2', 'MAPK14', 'AKT1', 'MAP2K1', 'SOS1', 'STAT5A', 'JAK1', 'CBL', 'PTPN11', 'FLNA', 'STAT3', 'PTPN6', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAPK14', 'AKT1', 'NFKBIB', 'NFKB1', 'PTPN11', 'JUN', 'MAP2K1', 'MAPK8'}, number: 9
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'GSK3B', 'MAPK14', 'NFKB1', 'JUN', 'MAPK8'}, number: 6
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSK3B', 'FYN', 'AKT1', 'ERBB2', 'SOS1', 'NFKB1', 'JUN', 'MAPK8'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSK3B', 'MAPK14', 'AKT1', 'MAP2K1', 'SOS1', 'NFKBIB', 'RAF1', 'PXN', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 12
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'IRS2', 'MAP2K2', 'GSK3B', 'MAPK14', 'AKT1', 'SOS1', 'RAF1', 'STAT5A', 'JUN', 'EIF4EBP1', 'PTPN11', 'SIRPA', 'FYN', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SOCS3', 'FYN', 'NFKB1', 'RAF1', 'STAT5A', 'STAT3', 'JAK1', 'MAPK8', 'MTOR', 'IRS2', 'GSK3B', 'EIF4EBP1', 'PTPN11', 'SIRPA', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1'}, number: 19
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'AKT1', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 5
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'IRS2', 'GSK3B', 'AKT1', 'EIF4EBP1', 'FYN', 'MAPK8'}, number: 7
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'MAPK14', 'NFKB1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'AKT1', 'TSC2', 'MAP2K1', 'SOS1', 'MLST8', 'TELO2', 'RAF1', 'AKT1S1', 'EIF4EBP1', 'DEPTOR', 'PDK1'}, number: 13
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'RICTOR', 'MAP2K2', 'AKT1', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'EIF4EBP1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'AKT1', 'SOS1', 'SOS2', 'PDK1'}, number: 5
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'AKT1', 'MAP2K1', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'PDK1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'AKT1', 'SOS1', 'SOS2', 'PDK1'}, number: 5
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PARP2', 'PARP1', 'AKT1'}, number: 3
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'MTOR', 'MAP2K2', 'AKT1', 'TSC2', 'SOS1', 'MLST8', 'AKT1S1', 'RAF1', 'SOS2', 'EIF4EBP1', 'DEPTOR', 'MAP2K1'}, number: 13
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'AKT1', 'SOS1', 'SOS2', 'PDK1'}, number: 5
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'TSC2', 'BRAF', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'SOS1', 'MAP2K1', 'AKT1'}, number: 4
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K1', 'AKT1'}, number: 3
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'TSC2', 'PARP2', 'MLST8', 'AKT1S1', 'PARP1', 'DEPTOR'}, number: 7
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'AKT1', 'SOS1', 'SOS2', 'PDK1'}, number: 5
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'AKT1', 'BRAF', 'SOS1', 'RAF1', 'SOS2', 'MAP2K1'}, number: 7
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MTOR', 'MAP2K2', 'AKT1', 'TSC2', 'BRAF', 'SOS1', 'RAF1', 'EIF4EBP1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'MAP2K2', 'AKT1', 'TSC2', 'RAF1', 'EIF4EBP1', 'MAP2K1'}, number: 7
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'MTOR', 'AKT1', 'TSC2', 'BRAF', 'SOS1', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC2', 'MTOR', 'EIF4EBP1', 'AKT1'}, number: 4
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'E2F1', 'BARD1', 'CDK2', 'RAF1', 'CDKN1A', 'CCND1', 'TP53', 'CCNE1', 'CCND3'}, number: 10
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STMN1', 'E2F1', 'ABL1', 'PCNA', 'RAF1'}, number: 5
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'STMN1', 'CDK1'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCNB1', 'CCNB2', 'CCNE1', 'CCND3', 'CDK4', 'MCM7', 'CDK1', 'RPA2', 'CHEK1', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'TP53', 'CCNE2', 'CDC25A', 'E2F1', 'ABL1', 'CDKN1A'}, number: 19
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'E2F3', 'TP53', 'E2F1', 'RAF1', 'CDKN1A', 'CCND1', 'CDK6'}, number: 8
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'TP53', 'CDC25A', 'CCNB1', 'CDK1', 'RPA2', 'CCNB2', 'E2F1', 'ABL1', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 18
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CCNB1', 'CCNB2', 'RPA1', 'CCNE1', 'CCND3', 'CDK4', 'CDK1', 'RFC3', 'RPA2', 'CHEK1', 'CDKN1B', 'POLE', 'CDK6', 'FANCG', 'MSH6', 'CDK2', 'RPA3', 'CCND1', 'TP53', 'CCNE2', 'RFC4', 'POLD3', 'CDC25A', 'E2F1', 'ABL1', 'PCNA', 'CDKN1A'}, number: 28
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'TP53', 'ABL1', 'CDK2', 'RAF1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 12
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'TP53', 'CDC25A', 'CCNB1', 'CDK1', 'RPA2', 'CCNB2', 'E2F1', 'ABL1', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 18
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'POLD3', 'FANCG', 'RFC4', 'CDC25A', 'RFC3', 'RPA2', 'MSH6', 'RPA1', 'CDK2', 'PCNA', 'CHEK1', 'RPA3', 'CDKN1A', 'CCND1', 'POLE', 'CCNE1', 'CCND3'}, number: 18
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'TP53', 'CDC25A', 'CCNB1', 'CDK1', 'RPA2', 'CCNB2', 'E2F1', 'ABL1', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 18
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RAF1'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RAF1'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RAF1'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'CDKN1A', 'CCNA2', 'CCNB1'}, number: 4
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'TXNRD1', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'TXNRD1', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'TXNRD1', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXNRD3', 'TXNRD1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX4', 'TXNRD3', 'NFKB1', 'JUN', 'TXNRD1'}, number: 5
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD3', 'JUN', 'TXNRD1', 'NFKB1'}, number: 4
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'TXNRD1', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUN', 'TXNRD1', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN', 'CREM', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXNRD3', 'TXNRD1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'TXNRD1', 'NFKB1'}, number: 2
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'RPS6KA3', 'IL6', 'RPS6KA1', 'CDK2', 'CDKN1A', 'CDKN2A', 'JUN', 'NFKB1'}, number: 9
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA3', 'JUN', 'STAT3', 'RPS6KA1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'JUN', 'CDKN1A', 'CDKN2A', 'CDK6', 'H2AX', 'NFKB1'}, number: 9
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'CDKN2A', 'CDK6', 'STAT3'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'JUN', 'CDKN1A', 'CDKN2A', 'CDK6', 'H2AX', 'NFKB1'}, number: 9
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDK6', 'H2AX'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'IL6', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDK6', 'NFKB1'}, number: 7
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'JUN', 'CDKN1A', 'CDKN2A', 'CDK6', 'H2AX', 'NFKB1'}, number: 9
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1A', 'JUN', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'H2AX', 'CDK2', 'CDKN1A', 'JUN', 'NFKB1'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'H2AX', 'CDK2', 'CDKN1B', 'JUN', 'CDKN1A', 'CDKN2A', 'CDK6', 'CEBPB', 'NFKB1'}, number: 10
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUN', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RPS6KA3', 'RPS6KA1', 'JUN', 'STAT3', 'NFKB1'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RPS6KA3', 'IL6', 'RPS6KA1', 'IL1A', 'JUN', 'STAT3', 'NFKB1'}, number: 7
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNA1', 'CEBPB', 'CCNA2'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'COL4A4', 'COL4A2', 'LAMB2', 'LAMC3', 'LAMB3', 'CCNE1', 'NFKB1', 'LAMA2', 'CDK4', 'COL4A1', 'MAX', 'COL4A3', 'ITGA2', 'CDK2', 'CCND1', 'LAMB1', 'TP53', 'LAMA5', 'LAMC2', 'COL4A5', 'AKT1', 'E2F1', 'CDKN1A', 'ITGA3'}, number: 24
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'AKT1'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'CDK2', 'GADD45G', 'GADD45A', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RXRB', 'CDK4', 'E2F3', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'GADD45G', 'CDKN1A', 'CCND1', 'RXRA', 'CDK6', 'GADD45A'}, number: 14
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'CDK2', 'GADD45G', 'GADD45A', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'CDK2', 'GADD45G', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'GADD45A'}, number: 15
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A4', 'COL4A2', 'LAMB2', 'LAMC3', 'LAMB3', 'CCNE1', 'NFKB1', 'LAMA2', 'CDK4', 'COL4A1', 'CDKN1B', 'CDK6', 'COL4A3', 'ITGA2', 'CDK2', 'BCL2L1', 'CCND1', 'LAMB1', 'TP53', 'CCNE2', 'LAMA5', 'LAMC2', 'COL4A5', 'AKT1', 'IKBKB', 'CDKN1A', 'ITGA3'}, number: 27
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'CDK2', 'GADD45G', 'GADD45A', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'NFKB1'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'IKBKB', 'NFKB1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1', 'IKBKB', 'NFKBIB', 'NFKB1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRB', 'DDB2', 'CDK2', 'GADD45A', 'CDKN1A', 'CCND1', 'RXRA', 'CCNE1', 'NFKB1'}, number: 9
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'AKT1', 'E2F1', 'CDK2', 'GADD45G', 'GADD45A', 'CDKN1B', 'CDKN1A', 'CCND1', 'RXRA', 'CDK6', 'CCNE2', 'CCNE1', 'NFKB1'}, number: 17
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1', 'IKBKB', 'NFKBIB', 'NFKB1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1', 'IKBKB', 'NFKB1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TRAF5', 'AKT1', 'IKBKB', 'NFKB1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA', 'TP53', 'CDKN1A', 'AKT1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SHMT1'}, number: 1
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Spina Bifida WP5150, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GSR', 'SOD1', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GSR', 'SOD1', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GSR', 'SOD1', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'DNM1', 'PLD1'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GCLM', 'GSR', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PLD1'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX4', 'GSS', 'GCLM', 'GCLC', 'GSR', 'SOD1'}, number: 6
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'GSR', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GSR', 'SOD1', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSR', 'SOD1', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PSAT1', 'PHGDH', 'SHMT1', 'SHMT2'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GCLM', 'GSR', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1', 'PHGDH'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GSR', 'SOD1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'MAPK8'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'EPHB2'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'HMOX1', 'NQO1', 'CEBPB', 'KEAP1', 'MAPK8'}, number: 11
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'MAPK8'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'HMOX1', 'NQO1', 'KEAP1', 'MAPK8'}, number: 8
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'HMOX1', 'NQO1', 'CEBPB', 'KEAP1', 'MAPK8'}, number: 11
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAPK8'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'MAPK8'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'HMOX1', 'NQO1', 'CEBPB', 'KEAP1', 'MAPK8'}, number: 11
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC'}, number: 3
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EIF4G1', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EIF4EBP1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'EIF2AK3'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2AK3'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'EIF2AK3'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EIF4E', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'EEF2K', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2AK3'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF4E', 'EIF2S2', 'EEF2', 'EEF2K', 'EIF4EBP1'}, number: 5
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EEF2', 'EIF4E', 'EIF2S2', 'EIF4EBP1'}, number: 4
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'EEF2K', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EEF2', 'EEF2K', 'EIF4EBP1'}, number: 3
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DVL2', 'CDKN1A', 'TGFB1', 'SLC2A1', 'TGFA', 'VEGFA', 'SETD2'}, number: 7
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TFE3', 'TGFB1'}, number: 2
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'DIAPH1'}, number: 1
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A', 'DVL2', 'TGFB1'}, number: 3
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A', 'TGFA'}, number: 2
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'DVL2', 'TGFB1'}, number: 3
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RBX1', 'CDKN1A'}, number: 2
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2', 'RBX1', 'TGFB1', 'SLC2A1', 'TGFA'}, number: 5
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'TGFA'}, number: 3
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'DVL2', 'TGFB1'}, number: 3
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'DVL2', 'RBX1', 'TGFB1', 'CDKN1A', 'SLC2A1', 'TGFA'}, number: 7
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFB2', 'DVL2', 'RBX1', 'TGFB1', 'CDKN1A', 'SLC2A1', 'TGFA'}, number: 7
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TFE3', 'TGFB1'}, number: 2
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFB2', 'TGFB1', 'SLC2A1'}, number: 3
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2', 'RBX1', 'TGFB1', 'CDKN1A', 'SLC2A1', 'TGFA'}, number: 6
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'TP53', 'DDIT3'}, number: 3
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'PPP1R15A', 'RTCB', 'ERN1', 'EIF2AK3', 'TXNIP', 'TNFRSF10B', 'PMAIP1', 'DDIT3', 'HSPA5', 'XBP1', 'CASP2', 'MBTPS2', 'TP53', 'ATF6', 'MBTPS1'}, number: 16
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'PPP1R15A', 'RTCB', 'ERN1', 'EIF2AK3', 'TXNIP', 'TNFRSF10B', 'PMAIP1', 'DDIT3', 'HSPA5', 'XBP1', 'CASP2', 'MBTPS2', 'TP53', 'ATF6', 'MBTPS1'}, number: 16
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'PPP1R15A', 'RTCB', 'ERN1', 'EIF2AK3', 'TXNIP', 'TNFRSF10B', 'PMAIP1', 'DDIT3', 'HSPA5', 'XBP1', 'CASP2', 'MBTPS2', 'TP53', 'ATF6', 'MBTPS1'}, number: 16
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1', 'TNFRSF10B'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IL1B', 'PPP1R15A', 'RTCB', 'ERN1', 'EIF2AK3', 'TXNIP', 'TNFRSF10B', 'PMAIP1', 'DDIT3', 'HSPA5', 'XBP1', 'CASP2', 'MBTPS2', 'TP53', 'ATF6', 'MBTPS1'}, number: 16
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'HBEGF', 'VEGFA', 'DKK1', 'NFKB1', 'MAP2K6', 'NDRG1', 'ACTG1', 'MLST8', 'RAF1', 'MAPK8', 'TEAD4', 'MTOR', 'GSK3B', 'PRKAA2', 'AMOT', 'EIF4G1', 'CCND1', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1', 'RPS6KA5', 'AKT1S1', 'CCL2', 'PAK2', 'MAP2K3'}, number: 28
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'SOD2', 'MAPK14', 'NFKB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3', 'NFKB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'SOD2', 'MAPK14', 'NFKB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'SOD2', 'MAPK14', 'NFKB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'CDC42', 'AP2S1', 'CSK', 'RAB5A', 'RICTOR', 'PRKCD', 'STAM', 'GRB10', 'RAF1', 'RAP1A', 'GJA1', 'STAT3', 'MAPK8', 'MTOR', 'ITCH', 'PLCG1', 'PTPN11', 'JUN', 'MAP2K1', 'PRKCZ', 'MAP2K2', 'PRKCB', 'MAPK14', 'AKT1', 'ABL1', 'RPS6KA5', 'CBL', 'CAV1'}, number: 29
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'AKT1', 'CDC42', 'ABL1', 'EPHB2', 'STAT3'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'ATF6', 'TXNIP', 'ERN1', 'EIF2AK3'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CDC42', 'ABL1', 'CCND1', 'NFKB1', 'JUN', 'MAPK8'}, number: 8
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'PRKCB', 'AKT1', 'RAF1', 'CCND1', 'PLCG1', 'STAT3', 'MAP2K1'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ERN1', 'GSK3B', 'AKT1', 'CDC42', 'ABL1', 'TXNIP', 'ATF6', 'CCND1', 'NFKB1', 'JUN', 'EIF2AK3', 'MAPK8'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'ATF6', 'TXNIP', 'ERN1', 'EIF2AK3'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND1', 'ABL1', 'RAP1A', 'AKT1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'HSP90AA1', 'TXN', 'EPHB2', 'HSPA1A', 'HBEGF', 'FYN', 'MAPK8'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'EIF4E', 'SHC2', 'CDC42', 'RAB5A', 'VEGFA', 'NFKB1', 'MLST8', 'RAF1', 'RAP1A', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'BCL2L1', 'PLCG1', 'CCND1', 'PTPN11', 'MAP2K1', 'MAP2K2', 'ETS1', 'PRKCB', 'AKT1', 'HSP90AA1', 'ITGB5', 'ABL1', 'AKT1S1', 'PAK2'}, number: 28
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GSK3B', 'AKT1', 'CDC42', 'ABL1', 'CCND1', 'NFKB1', 'JUN', 'MAPK8'}, number: 8
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'MTOR', 'MAP2K1', 'PLCG1', 'AKT1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'BIRC5', 'MAPK14', 'AKT1', 'MAP2K1', 'STAT6', 'CBL', 'PTPN11', 'STAT3', 'PTPN6', 'NFKB1'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAPK14', 'AKT1', 'MAP2K1', 'CCL2', 'MAP2K3', 'PLCG1', 'NFKB1', 'PTPN11', 'JUN', 'PRKCZ', 'MAPK8'}, number: 13
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'HSPA1A', 'HBEGF', 'DKK1', 'NFKB1', 'MLST8', 'RAP1A', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'NCF2', 'CCND1', 'JUN', 'SOD2', 'PRKCB', 'MAPK14', 'HSP90AA1', 'AKT1S1', 'CCL2', 'TXN'}, number: 21
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'CDC42', 'EPHB2', 'HSPA1A', 'HBEGF', 'FYN', 'EIF2AK3', 'NFKB1', 'TXNIP', 'MAPK8', 'ERN1', 'GSK3B', 'CCND1', 'JUN', 'AKT1', 'HSP90AA1', 'ABL1', 'ATF6', 'TXN'}, number: 19
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'SOD2', 'MAPK14', 'NFKB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SOD2', 'GSK3B', 'PRKCB', 'MAPK14', 'AKT1', 'PRKCD', 'SHC2', 'CDC42', 'PRKCZ', 'RAF1', 'PXN', 'ARRB2', 'RAP1A', 'CSK', 'JUN', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 18
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF4E', 'SHC2', 'CDC42', 'BMP2', 'FYN', 'NFKB1', 'PRKCD', 'RAF1', 'RAP1A', 'STAT3', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'NCF2', 'PLCG1', 'PTPN11', 'JUN', 'MAP2K1', 'MAP2K2', 'MAPK14', 'AKT1', 'RPS6KA5', 'FRS2'}, number: 24
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'EIF4E', 'SHC2', 'CDC42', 'BMP2', 'FYN', 'NFKB1', 'PRKCD', 'STAT6', 'RAF1', 'RAP1A', 'STAT3', 'MAPK8', 'MTOR', 'GSK3B', 'PRKAA2', 'NCF2', 'PLCG1', 'PTPN11', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'MAPK14', 'AKT1', 'RPS6KA5', 'FRS2'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'MTOR', 'MAP2K1', 'PLCG1', 'AKT1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'PRKAA2', 'HSP90AA1', 'AKT1', 'TXN', 'EPHB2', 'HSPA1A', 'HBEGF', 'FYN', 'MAPK8'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'PRKAA2', 'AKT1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2', 'PLCG1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'SOD2', 'MAPK14', 'NFKB1'}, number: 3
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MTOR', 'DVL3', 'DVL2', 'LRP5', 'GSK3B', 'AKT1', 'TSC2', 'TCF7L2', 'RYK', 'LRP6', 'CCND1', 'FRAT1', 'CSNK1A1', 'CTBP1', 'APC', 'MAPK8'}, number: 16
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'PRKCB', 'AKT1', 'MAPK8'}, number: 5
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1', 'PRKCA', 'GSK3B', 'APC'}, number: 4
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'DVL2', 'GSK3B', 'AKT1', 'TCF7L2', 'CCND1', 'APC', 'FRAT1', 'CDK6', 'MAPK8'}, number: 10
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'CCND1', 'CDK6'}, number: 5
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'DVL2', 'GSK3B', 'AKT1', 'TCF7L2', 'CCND1', 'APC', 'FRAT1', 'CDK6', 'MAPK8'}, number: 10
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK6', 'CCND1', 'AKT1'}, number: 3
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'GSK3B', 'MAPK8'}, number: 3
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'PRKCB', 'AKT1', 'TSC2', 'CCND1', 'CDK6', 'MAPK8'}, number: 9
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'DVL2', 'GSK3B', 'AKT1', 'TCF7L2', 'CCND1', 'APC', 'FRAT1', 'CDK6', 'MAPK8'}, number: 10
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC2', 'MTOR', 'AKT1'}, number: 3
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1', 'MAPK8'}, number: 2
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MTOR', 'DVL3', 'PRKCA', 'DVL2', 'LRP5', 'GSK3B', 'PRKCB', 'TSC2', 'PPARG', 'TCF7L2', 'RYK', 'LRP6', 'CCND1', 'FRAT1', 'CSNK1A1', 'CTBP1', 'APC', 'MAPK8'}, number: 18
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'PRKCA', 'DVL2', 'GSK3B', 'AKT1', 'TCF7L2', 'CCND1', 'APC', 'FRAT1', 'CDK6', 'MAPK8'}, number: 11
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1', 'PRKCB', 'ARRB2', 'GSK3B'}, number: 4
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MTOR', 'MAPK8', 'GSK3B', 'AKT1', 'TSC2', 'APC'}, number: 6
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'PRKCB', 'AKT1', 'TSC2', 'APC', 'MAPK8'}, number: 8
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC2', 'MTOR', 'AKT1'}, number: 3
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MTOR', 'PRKCA', 'GSK3B', 'AKT1', 'TSC2', 'MAPK8'}, number: 6
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP363, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CCND2', 'BRCA1', 'E2F1', 'CDK2', 'CDKN1A', 'CCND1', 'TP53', 'CCNE1', 'CCND3'}, number: 10
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'ABL1'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1', 'CDK1'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'CCNG1', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 40
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'TP53', 'DDB2', 'E2F1', 'GADD45G', 'CDKN1A', 'CCND1', 'CDK6', 'GADD45A'}, number: 10
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 39
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53', 'PMAIP1', 'TNFRSF10B'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 39
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'TP53', 'CCND2', 'BRCA1', 'ABL1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'CCNE1', 'CCND3'}, number: 13
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 39
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND2', 'H2AX', 'CCNG1', 'CCNE1', 'CCND3', 'SFN', 'RRM2B', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'CDKN1A'}, number: 25
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCND2', 'CCNB2', 'CDK5', 'H2AX', 'CCNE1', 'CCND3', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'TNFRSF10B', 'CHEK1', 'CDKN1B', 'CDK6', 'PIDD1', 'ATR', 'RAD50', 'CDK2', 'MRE11', 'CCND1', 'RAD51', 'RAD17', 'TP53', 'CCNE2', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'E2F1', 'ABL1', 'GADD45G', 'CDKN1A', 'RAD1'}, number: 39
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CDK5'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'CDKN1A', 'CCNB1'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'E2F1', 'CDKN1A', 'CCND1', 'TP53', 'CCNE1', 'CCND3'}, number: 6
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'ABL1'}, number: 2
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'ABL1'}, number: 1
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TP53'}, number: 1
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDC25A', 'E2F1', 'ABL1', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'TP53', 'H2AX', 'CCNE1', 'CCND3'}, number: 11
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TP53', 'E2F1', 'CDKN1A', 'CCND1', 'CDK6'}, number: 5
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDC25A', 'E2F1', 'ABL1', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'TP53', 'H2AX', 'CCNE1', 'CCND3'}, number: 11
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TP53'}, number: 1
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDC25A', 'E2F1', 'ABL1', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'TP53', 'H2AX', 'CCNE1', 'CCND3'}, number: 11
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ABL1', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'TP53', 'CCNE1', 'CCND3'}, number: 8
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDC25A', 'E2F1', 'ABL1', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'TP53', 'H2AX', 'CCNE1', 'CCND3'}, number: 11
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25A', 'CDKN1A', 'CCND1', 'H2AX', 'CCNE1', 'CCND3'}, number: 6
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDC25A', 'E2F1', 'ABL1', 'CDK6', 'CDKN1B', 'CDKN1A', 'CCND1', 'TP53', 'H2AX', 'CCNE1', 'CCND3'}, number: 11
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'CDKN1A'}, number: 2
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: miRNAs Involved In DNA Damage Response WP1545, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Section 7.5.4 Tabulation gene overlap
In this section, a table is created that contains the number of overlapping genes and number of total genes in preparation for section 7.5.5.
final_geneoverlaptable_AGNP_24H=pd.DataFrame.from_dict(overlapping_genes_betweenORA_and_significantKEs3,orient='index')
Section 7.5.5 Percent overlap calculation
In this section, the percent overlap for the genesets are calculated.
Step 57. Lastly, the percent overlap is calculated and add the result as a column to the dataframe. This is first done by running a for loop to calculate the total number of genes belonging to the enriched pathways of ORA.
variable_count3= {}
for index, row in exploded_df3_ORApathwaytable.iterrows():
unique_KE = row['Term']
gene_expression_value = row['Genes']
if unique_KE not in variable_count3:
variable_count3[unique_KE] = 1
else:
variable_count3[unique_KE] += 1
print("The total number of genes: ")
print(variable_count3)
The total number of genes:
{'Retinoblastoma Gene In Cancer WP2446': 68, 'DNA Repair Pathways Full Network WP4946': 78, 'DNA IR Damage And Cellular Response Via ATR WP4016': 57, 'Cell Cycle WP179': 74, 'Ciliary Landscape WP4352': 106, 'VEGFA VEGFR2 Signaling WP3888': 182, 'P53 Transcriptional Gene Network WP4963': 54, 'G1 To S Cell Cycle Control WP45': 42, 'Photodynamic Therapy Induced Unfolded Protein Response WP3613': 20, 'miRNA Regulation Of DNA Damage Response WP1530': 40, 'DNA Damage Response WP707': 40, 'DNA Replication WP466': 28, 'ATM Signaling In Development And Disease WP3878': 28, 'Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525': 35, 'DNA Mismatch Repair WP531': 17, 'Gastric Cancer Network 1 WP2361': 18, 'Nucleotide Excision Repair WP4753': 26, 'Translation Factors WP107': 26, 'Glucocorticoid Receptor Pathway WP2880': 38, 'Parkin Ubiquitin Proteasomal System Pathway WP2359': 36, 'Ferroptosis WP4313': 33, 'Primary Focal Segmental Glomerulosclerosis FSGS WP2572': 37, 'Base Excision Repair WP4752': 20, 'Unfolded Protein Response WP4925': 16, 'Insulin Signaling WP481': 71, 'Copper Homeostasis WP3286': 27, 'Hepatitis C And Hepatocellular Carcinoma WP3646': 28, 'EGF EGFR Signaling WP437': 70, 'Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114': 34, 'Androgen Receptor Network In Prostate Cancer WP2263': 50, 'Senescence Associated Secretory Phenotype SASP WP3391': 43, 'Glioblastoma Signaling WP2261': 41, 'DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959': 29, 'Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864': 28, 'Kleefstra Syndrome WP5351': 18, 'mRNA Processing WP411': 54, 'Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612': 15, 'Transcriptional Activation By NRF2 In Response To Phytochemicals WP3': 11, 'Macrophage Stimulating Protein MSP Signaling WP5353': 48, 'Pleural Mesothelioma WP5087': 159, 'Nuclear Receptors Meta Pathway WP2882': 117, 'Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113': 18, 'Pancreatic Adenocarcinoma Pathway WP4263': 40, 'Genes Related To Primary Cilium Development Based On CRISPR WP4536': 46, 'DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180': 31, 'NF1 Copy Number Variation Syndrome WP5366': 42, 'miRNAs Involved In DNA Damage Response WP1545': 11, 'Gastric Cancer Network 2 WP2363': 17, 'EGFR Tyrosine Kinase Inhibitor Resistance WP4806': 39, 'Androgen Receptor Signaling WP138': 39, 'Glycogen Synthesis And Degradation WP500': 22, 'Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341': 35, 'ATM Signaling WP2516': 21, 'Selenium Metabolism And Selenoproteins WP28': 23, 'Integrated Cancer Pathway WP1971': 23, 'Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879': 27, 'NRF2 ARE Regulation WP4357': 14, 'Oncostatin M Signaling WP2374': 28, 'JAK STAT Signaling In The Regulation Of Beta Cells WP5358': 19, 'Cohesin Complex Cornelia De Lange Syndrome WP5117': 19, 'ATR Signaling WP3875': 8, 'Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577': 23, 'Spina Bifida WP5150': 9, 'Head And Neck Squamous Cell Carcinoma WP4674': 34, 'Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614': 19, 'Small Cell Lung Cancer WP4658': 40, 'Type 2 Papillary Renal Cell Carcinoma WP4241': 18, 'MAPK Cascade WP422': 18, 'Relevant Molecular Pathways And Targeted Agents In TNBC WP5215': 20, 'MicroRNAs In Cardiomyocyte Hypertrophy WP1544': 36, 'Disorders Of Folate Metabolism And Transport WP4259': 11, 'Cancer Pathways WP5434': 173, 'Wnt Signaling WP363': 23, 'FBXL10 Enhancement Of MAP ERK Signaling In DLBCL WP4553': 14, 'Non Small Cell Lung Cancer WP4255': 32, 'Prolactin Signaling WP2037': 33, 'Metabolic Epileptic Disorders WP5355': 38}
Step 58. The result is converted into a dataframe and added to the final dataframe. This is followed by some data manipulation prior to calculation of gene set overlap.
variable_count_df3=pd.DataFrame.from_dict(variable_count3,orient='index')
reset_variable_count_df3 = variable_count_df3.reset_index()
reset_variable_count_df3.columns = ['Term', 'Total number of genes']
Genesetoverlaptable_AGNP24H=final_geneoverlaptable_AGNP_24H.reset_index(level=[1])
Genesetoverlaptable_AGNP24H.reset_index(inplace=True)
Genesetoverlaptable_AGNP24H.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C3=pd.merge(reset_variable_count_df3,Genesetoverlaptable_AGNP24H, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_C3.loc[:,'Percent geneset overlap']= tabulation_C3.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_C3
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Retinoblastoma Gene In Cancer WP2446 | 68 | https://identifiers.org/aop.events/105 | {} | 0 | 0.0 |
1 | Retinoblastoma Gene In Cancer WP2446 | 68 | https://identifiers.org/aop.events/1090 | {CDK4, E2F1, BARD1, CDK2, RAF1, CDKN1A, CCND1,... | 10 | 14.705882352941178 |
2 | Retinoblastoma Gene In Cancer WP2446 | 68 | https://identifiers.org/aop.events/1115 | {} | 0 | 0.0 |
3 | Retinoblastoma Gene In Cancer WP2446 | 68 | https://identifiers.org/aop.events/1271 | {} | 0 | 0.0 |
4 | Retinoblastoma Gene In Cancer WP2446 | 68 | https://identifiers.org/aop.events/1392 | {} | 0 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
2613 | Metabolic Epileptic Disorders WP5355 | 38 | https://identifiers.org/aop.events/41 | {SLC2A5, SLC2A1, SLC2A3} | 3 | 7.894736842105263 |
2614 | Metabolic Epileptic Disorders WP5355 | 38 | https://identifiers.org/aop.events/459 | {GCDH, HADH, ECHS1, PDHA1} | 4 | 10.526315789473683 |
2615 | Metabolic Epileptic Disorders WP5355 | 38 | https://identifiers.org/aop.events/68 | {PSAT1, PHGDH, SLC2A1} | 3 | 7.894736842105263 |
2616 | Metabolic Epileptic Disorders WP5355 | 38 | https://identifiers.org/aop.events/887 | {} | 0 | 0.0 |
2617 | Metabolic Epileptic Disorders WP5355 | 38 | https://identifiers.org/aop.events/890 | {XDH} | 1 | 2.631578947368421 |
2618 rows × 6 columns
Section 8. Comparison 4: cadmium chloride timepoint 2
Section 8.1 Calculation of n variable
In this section, variable n will be calculated for the comparison:4.
Step 59. The table containing the differential expressed genes for comparison 4 is loaded with the filter for significance.
C4_DEG= pd.read_csv('topTable_X48_CdCl2_.5 - X48_vehicle...control_.0.TSV.tsv',sep='\t')
C_4_DEG= C4_DEG[C4_DEG['adj. p-value'] < 0.05]
Comparison_4_DEG= C_4_DEG.copy()
Comparison_4_DEG.rename(columns={Comparison_4_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison_4_DEG['Entrez.Gene'] = Comparison_4_DEG['Entrez.Gene'].astype(str)
Step 60. Here, the results of the DEG table are integrated into the mergeddataframe dataframe. This is followed by adjustment of the dataframe columns to remove non-relevant columns.
merged_dataframe_DEG_AgNP_48h= pd.merge(mergeddataframe,Comparison_4_DEG, on='Entrez.Gene')
merged_dataframe_DEG_AgNP_48h
KEID | WPtitle | WPID | Gene.Symbol | Entrez.Gene | N | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL20 | 6364 | 129 | 6.657684 | 0.575470 | 0.129108 | 1.250008e-04 | 0.008984 |
1 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | IL6ST | 3572 | 169 | 6.884082 | 0.498648 | 0.092268 | 1.267998e-05 | 0.001946 |
2 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | TGFBR3 | 7049 | 169 | 5.701143 | -0.281944 | 0.078201 | 1.032939e-03 | 0.037582 |
3 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | STAT6 | 6778 | 169 | 7.752970 | -0.277882 | 0.077119 | 1.038256e-03 | 0.037683 |
4 | https://identifiers.org/aop.events/875 | Neuroinflammation and glutamatergic signaling | WP5083 | PHGDH | 26227 | 169 | 8.304610 | 0.435296 | 0.083119 | 1.886086e-05 | 0.002493 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1015 | https://identifiers.org/aop.events/352 | Apoptosis | WP254 | BIRC5 | 332 | 398 | 7.296443 | -0.308069 | 0.078112 | 4.454538e-04 | 0.020882 |
1016 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | HRAS | 3265 | 398 | 7.027994 | -0.329096 | 0.086890 | 6.571095e-04 | 0.027444 |
1017 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | AKT1 | 207 | 398 | 7.379132 | -0.528683 | 0.069353 | 9.600194e-08 | 0.000065 |
1018 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | RPS6KA1 | 6195 | 398 | 6.892861 | -0.431869 | 0.092076 | 7.058310e-05 | 0.006179 |
1019 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | EIF4EBP1 | 1978 | 398 | 9.439758 | 0.455919 | 0.073124 | 1.870438e-06 | 0.000559 |
1020 rows × 11 columns
Step 61. The following for loop for the key events to retrieve the n variable. It is comparable to the for loop of N, but adds a condition to check for significance of genes by p adjusted value being smaller than 0.05.
variable_n_dictionary_count4= {}
for index, row in merged_dataframe_DEG_AgNP_48h.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['adj. p-value']
if gene_expression_value < 0.05:
if unique_KE not in variable_n_dictionary_count4:
variable_n_dictionary_count4[unique_KE] = 1
else:
variable_n_dictionary_count4[unique_KE] += 1
print("The total number of significant genes: ")
print(variable_n_dictionary_count4)
The total number of significant genes:
{'https://identifiers.org/aop.events/486': 1, 'https://identifiers.org/aop.events/875': 9, 'https://identifiers.org/aop.events/2007': 9, 'https://identifiers.org/aop.events/1495': 9, 'https://identifiers.org/aop.events/105': 3, 'https://identifiers.org/aop.events/1816': 3, 'https://identifiers.org/aop.events/1668 ': 6, 'https://identifiers.org/aop.events/244 ': 25, 'https://identifiers.org/aop.events/1814 ': 18, 'https://identifiers.org/aop.events/888': 1, 'https://identifiers.org/aop.events/1574': 1, 'https://identifiers.org/aop.events/41': 10, 'https://identifiers.org/aop.events/1270': 3, 'https://identifiers.org/aop.events/1086': 9, 'https://identifiers.org/aop.events/1539': 16, 'https://identifiers.org/aop.events/201': 4, 'https://identifiers.org/aop.events/457': 38, 'https://identifiers.org/aop.events/55': 18, 'https://identifiers.org/aop.events/188': 2, 'https://identifiers.org/aop.events/618': 12, 'https://identifiers.org/aop.events/389': 4, 'https://identifiers.org/aop.events/177': 9, 'https://identifiers.org/aop.events/2013': 13, 'https://identifiers.org/aop.events/2006': 12, 'https://identifiers.org/aop.events/1497': 23, 'https://identifiers.org/aop.events/870': 2, 'https://identifiers.org/aop.events/1669': 21, 'https://identifiers.org/aop.events/202': 10, 'https://identifiers.org/aop.events/1917': 7, 'https://identifiers.org/aop.events/1633': 46, 'https://identifiers.org/aop.events/1815': 10, 'https://identifiers.org/aop.events/386': 22, 'https://identifiers.org/aop.events/1582': 4, 'https://identifiers.org/aop.events/1896': 12, 'https://identifiers.org/aop.events/1172': 1, 'https://identifiers.org/aop.events/1496': 17, 'https://identifiers.org/aop.events/68': 10, 'https://identifiers.org/aop.events/1493': 34, 'https://identifiers.org/aop.events/265': 15, 'https://identifiers.org/aop.events/1817': 16, 'https://identifiers.org/aop.events/1819': 2, 'https://identifiers.org/aop.events/1750': 23, 'https://identifiers.org/aop.events/1848': 7, 'https://identifiers.org/aop.events/1365': 16, 'https://identifiers.org/aop.events/1587': 3, 'https://identifiers.org/aop.events/1457': 2, 'https://identifiers.org/aop.events/1586': 3, 'https://identifiers.org/aop.events/149': 46, 'https://identifiers.org/aop.events/1575': 16, 'https://identifiers.org/aop.events/1579': 16, 'https://identifiers.org/aop.events/87': 6, 'https://identifiers.org/aop.events/288': 1, 'https://identifiers.org/aop.events/209': 27, 'https://identifiers.org/aop.events/1498': 8, 'https://identifiers.org/aop.events/1500': 15, 'https://identifiers.org/aop.events/1488': 9, 'https://identifiers.org/aop.events/1494': 4, 'https://identifiers.org/aop.events/52': 10, 'https://identifiers.org/aop.events/381': 15, 'https://identifiers.org/aop.events/484': 40, 'https://identifiers.org/aop.events/388': 9, 'https://identifiers.org/aop.events/1262': 16, 'https://identifiers.org/aop.events/1945': 56, 'https://identifiers.org/aop.events/2009': 4, 'https://identifiers.org/aop.events/2012': 15, 'https://identifiers.org/aop.events/1770': 2, 'https://identifiers.org/aop.events/1818': 15, 'https://identifiers.org/aop.events/1752': 3, 'https://identifiers.org/aop.events/887': 3, 'https://identifiers.org/aop.events/1585': 6, 'https://identifiers.org/aop.events/1271': 5, 'https://identifiers.org/aop.events/1087': 23, 'https://identifiers.org/aop.events/898': 16, 'https://identifiers.org/aop.events/195': 9, 'https://identifiers.org/aop.events/459': 5, 'https://identifiers.org/aop.events/341': 1, 'https://identifiers.org/aop.events/1670': 7, 'https://identifiers.org/aop.events/759': 3, 'https://identifiers.org/aop.events/1090': 33, 'https://identifiers.org/aop.events/344': 2, 'https://identifiers.org/aop.events/1841': 2, 'https://identifiers.org/aop.events/1820': 3, 'https://identifiers.org/aop.events/896': 4, 'https://identifiers.org/aop.events/1549': 4, 'https://identifiers.org/aop.events/352': 20}
Step 62. The output of the n variable dictionary is saved as a dataframe and integrated as a separate column into a dataframe.
n_variable_dataframe4=pd.DataFrame.from_dict(variable_n_dictionary_count4,orient='index')
n_variable_dataframe4
0 | |
---|---|
https://identifiers.org/aop.events/486 | 1 |
https://identifiers.org/aop.events/875 | 9 |
https://identifiers.org/aop.events/2007 | 9 |
https://identifiers.org/aop.events/1495 | 9 |
https://identifiers.org/aop.events/105 | 3 |
... | ... |
https://identifiers.org/aop.events/1841 | 2 |
https://identifiers.org/aop.events/1820 | 3 |
https://identifiers.org/aop.events/896 | 4 |
https://identifiers.org/aop.events/1549 | 4 |
https://identifiers.org/aop.events/352 | 20 |
85 rows × 1 columns
n_variable_dataframe4_reset = n_variable_dataframe4.reset_index()
n_variable_dataframe4_reset.columns = ['KEID', 'n']
n_variable_dataframe4_reset
KEID | n | |
---|---|---|
0 | https://identifiers.org/aop.events/486 | 1 |
1 | https://identifiers.org/aop.events/875 | 9 |
2 | https://identifiers.org/aop.events/2007 | 9 |
3 | https://identifiers.org/aop.events/1495 | 9 |
4 | https://identifiers.org/aop.events/105 | 3 |
... | ... | ... |
80 | https://identifiers.org/aop.events/1841 | 2 |
81 | https://identifiers.org/aop.events/1820 | 3 |
82 | https://identifiers.org/aop.events/896 | 4 |
83 | https://identifiers.org/aop.events/1549 | 4 |
84 | https://identifiers.org/aop.events/352 | 20 |
85 rows × 2 columns
merged_dataframe4= pd.merge(mergeddataframeDEG, n_variable_dataframe4_reset, on='KEID')
Section 8.2. Calculation of variable B and variable b.
In this section, variable B and variable b are calculated.
Step 63. Variable B is calculated by taking the length of the dataframe which includes all genes in 1 DEG table.
B=len(C4_DEG.index)
B
20411
Step 64. Variable b is calculated by taking the length of the dataframe which includes all genes in 1 DEG table with the condition for significance.
C4_DEG_filtered=C4_DEG[C4_DEG['adj. p-value'] < 0.05]
b=len(C4_DEG_filtered)
b
654
Section 8.3. Calculation of enrichment score and hypergeometric p-value
In this section, the enrichment score and hypergeometric p-value will be calculated. This requires the four variables of the enrichment score per KE for which the formula will be applied to and stored in an additional dataframe.
Step 65. The final dataframe will be created that contains the KEID and the four variables: variable N, variable n, variable B and variable b.
Final_dataframe_ES= merged_dataframe4.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([20411 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([654 for x in range(len(Final_dataframe_ES.index))])
Final_Dataframe_ES=Final_dataframe_ES.drop_duplicates(subset=['KEID'],keep='first')
Final_Dataframe_ES.reset_index(drop=True,inplace=True)
Copy_Final_DataFrame_ES=Final_Dataframe_ES.copy()
Step 66. The follow for loop will be used to calculate the enrichment score for individual key events and the results will be saved as a separate column into the dataframe.
def calculate_Enrichment_Score(row):
return f"{(row['n']/row['N'])/(row['b']/row['B'])}"
Copy_Final_DataFrame_ES.loc[:,'Enrichmentscore']= Copy_Final_DataFrame_ES.apply(calculate_Enrichment_Score,axis=1)
Copy_Final_DataFrame_ES
KEID | N | n | B | b | Enrichmentscore | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | 129 | 1 | 20411 | 654 | 0.24193395443662138 |
1 | https://identifiers.org/aop.events/875 | 169 | 9 | 20411 | 654 | 1.6620433201237719 |
2 | https://identifiers.org/aop.events/2007 | 184 | 9 | 20411 | 654 | 1.5265506581571602 |
3 | https://identifiers.org/aop.events/1495 | 253 | 9 | 20411 | 654 | 1.1102186604779347 |
4 | https://identifiers.org/aop.events/105 | 165 | 3 | 20411 | 654 | 0.5674450931331665 |
... | ... | ... | ... | ... | ... | ... |
76 | https://identifiers.org/aop.events/1841 | 17 | 2 | 20411 | 654 | 3.6717035438028423 |
77 | https://identifiers.org/aop.events/1820 | 57 | 3 | 20411 | 654 | 1.6426042169644295 |
78 | https://identifiers.org/aop.events/896 | 82 | 4 | 20411 | 654 | 1.5224136645036177 |
79 | https://identifiers.org/aop.events/1549 | 101 | 4 | 20411 | 654 | 1.2360190147455112 |
80 | https://identifiers.org/aop.events/352 | 398 | 20 | 20411 | 654 | 1.56831558403639 |
81 rows × 6 columns
Step 67. The following for loop will be used to calculate the hypergeometric p-value for individual Key Events and save the result as a separate column into the dataframe. This requires some in between steps for manipulation of the dataframe.
p_value_dataframe4=[]
for index, row in Copy_Final_DataFrame_ES.iterrows():
M = row['B']
n = row['b']
N = row['N']
k = row['n']
hpd = ss.hypergeom(M, n, N)
p = hpd.pmf(k)
p_value_dataframe4.append(p)
Hypergeometricpvalue_dataframe4=pd.DataFrame(p_value_dataframe4)
Hypergeometricpvalue_dataframe4.columns= ['Hypergeometric p-value']
Hypergeometricpvalue_dataframe4
Hypergeometric p-value | |
---|---|
0 | 0.063525 |
1 | 0.048320 |
2 | 0.065053 |
3 | 0.128529 |
4 | 0.123455 |
... | ... |
76 | 0.085652 |
77 | 0.166031 |
78 | 0.145596 |
79 | 0.183252 |
80 | 0.014357 |
81 rows × 1 columns
merged_finaltable4=pd.concat([Copy_Final_DataFrame_ES,Hypergeometricpvalue_dataframe4],axis=1)
Section 8.4. Filtering the results for significant KEs
In this section, the results will be filtered to only include significant KEs. Significant KEs have an enrichment score above 1 and a hypergeometric p-value below 0.05.
Step 68. Lastly, we filter the results to showcase the significant KEs for the comparison: Bisphenol A 1uM.
filteredversion_C4= merged_finaltable4[(merged_finaltable4['Enrichmentscore']>str(1))& (merged_finaltable4['Hypergeometric p-value'] < 0.05)]
# Ensure numeric types
filteredversion_C4['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C4['Hypergeometric p-value'], errors='coerce')
filteredversion_C4['Enrichmentscore'] = pd.to_numeric(filteredversion_C4['Enrichmentscore'], errors='coerce')
filteredversion_C4['combined_score'] = -np.log(filteredversion_C4['Hypergeometric p-value']) * filteredversion_C4['Enrichmentscore']
# Sort by combined score (highest first)
C4_sorted = filteredversion_C4.sort_values(by='combined_score', ascending=False)
C4_sorted
# Show top rows
#C4_sorted.to_excel('ConsistentKE-Cadmium-T2.xlsx')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\101285806.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C4['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C4['Hypergeometric p-value'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\101285806.py:3: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C4['Enrichmentscore'] = pd.to_numeric(filteredversion_C4['Enrichmentscore'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\101285806.py:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C4['combined_score'] = -np.log(filteredversion_C4['Hypergeometric p-value']) * filteredversion_C4['Enrichmentscore']
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | combined_score | |
---|---|---|---|---|---|---|---|---|
28 | https://identifiers.org/aop.events/1815 | 58 | 10 | 20411 | 654 | 5.380945 | 0.000012 | 61.007311 |
33 | https://identifiers.org/aop.events/68 | 64 | 10 | 20411 | 654 | 4.876481 | 0.000029 | 51.031791 |
20 | https://identifiers.org/aop.events/2013 | 100 | 13 | 20411 | 654 | 4.057232 | 0.000015 | 45.153065 |
66 | https://identifiers.org/aop.events/1585 | 35 | 6 | 20411 | 654 | 5.350197 | 0.000673 | 39.073854 |
12 | https://identifiers.org/aop.events/1539 | 170 | 16 | 20411 | 654 | 2.937363 | 0.000085 | 27.526736 |
74 | https://identifiers.org/aop.events/1090 | 459 | 33 | 20411 | 654 | 2.243819 | 0.000009 | 26.115319 |
14 | https://identifiers.org/aop.events/457 | 584 | 38 | 20411 | 654 | 2.030754 | 0.000018 | 22.230572 |
8 | https://identifiers.org/aop.events/1814 | 251 | 18 | 20411 | 654 | 2.238130 | 0.000786 | 15.999104 |
55 | https://identifiers.org/aop.events/381 | 199 | 15 | 20411 | 654 | 2.352473 | 0.001241 | 15.742349 |
56 | https://identifiers.org/aop.events/484 | 706 | 40 | 20411 | 654 | 1.768242 | 0.000184 | 15.203658 |
13 | https://identifiers.org/aop.events/201 | 36 | 4 | 20411 | 654 | 3.467720 | 0.021824 | 13.263153 |
18 | https://identifiers.org/aop.events/389 | 36 | 4 | 20411 | 654 | 3.467720 | 0.021824 | 13.263153 |
7 | https://identifiers.org/aop.events/244 | 417 | 25 | 20411 | 654 | 1.871072 | 0.001131 | 12.695299 |
15 | https://identifiers.org/aop.events/55 | 288 | 18 | 20411 | 654 | 1.950593 | 0.003093 | 11.271583 |
29 | https://identifiers.org/aop.events/386 | 372 | 22 | 20411 | 654 | 1.845722 | 0.002362 | 11.163202 |
72 | https://identifiers.org/aop.events/1670 | 88 | 7 | 20411 | 654 | 2.482572 | 0.015606 | 10.327669 |
67 | https://identifiers.org/aop.events/1271 | 58 | 5 | 20411 | 654 | 2.690472 | 0.027433 | 9.674979 |
59 | https://identifiers.org/aop.events/1945 | 1218 | 56 | 20411 | 654 | 1.434919 | 0.001532 | 9.299541 |
61 | https://identifiers.org/aop.events/2012 | 260 | 15 | 20411 | 654 | 1.800547 | 0.010950 | 8.128421 |
51 | https://identifiers.org/aop.events/1500 | 260 | 15 | 20411 | 654 | 1.800547 | 0.010950 | 8.128421 |
24 | https://identifiers.org/aop.events/1669 | 400 | 21 | 20411 | 654 | 1.638498 | 0.008832 | 7.749073 |
35 | https://identifiers.org/aop.events/265 | 268 | 15 | 20411 | 654 | 1.746799 | 0.013499 | 7.520253 |
63 | https://identifiers.org/aop.events/1818 | 270 | 15 | 20411 | 654 | 1.733860 | 0.014192 | 7.377752 |
31 | https://identifiers.org/aop.events/1896 | 205 | 12 | 20411 | 654 | 1.826896 | 0.017816 | 7.358092 |
11 | https://identifiers.org/aop.events/1086 | 144 | 9 | 20411 | 654 | 1.950593 | 0.024723 | 7.217230 |
27 | https://identifiers.org/aop.events/1633 | 1056 | 46 | 20411 | 654 | 1.359504 | 0.007178 | 6.711541 |
44 | https://identifiers.org/aop.events/149 | 1056 | 46 | 20411 | 654 | 1.359504 | 0.007178 | 6.711541 |
80 | https://identifiers.org/aop.events/352 | 398 | 20 | 20411 | 654 | 1.568316 | 0.014357 | 6.655168 |
21 | https://identifiers.org/aop.events/2006 | 216 | 12 | 20411 | 654 | 1.733860 | 0.023786 | 6.482327 |
69 | https://identifiers.org/aop.events/898 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
58 | https://identifiers.org/aop.events/1262 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
36 | https://identifiers.org/aop.events/1817 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
45 | https://identifiers.org/aop.events/1575 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
40 | https://identifiers.org/aop.events/1365 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
25 | https://identifiers.org/aop.events/202 | 186 | 10 | 20411 | 654 | 1.677929 | 0.039266 | 5.432131 |
49 | https://identifiers.org/aop.events/209 | 617 | 27 | 20411 | 654 | 1.365731 | 0.022402 | 5.187903 |
57 | https://identifiers.org/aop.events/388 | 169 | 9 | 20411 | 654 | 1.662043 | 0.048320 | 5.035849 |
1 | https://identifiers.org/aop.events/875 | 169 | 9 | 20411 | 654 | 1.662043 | 0.048320 | 5.035849 |
34 | https://identifiers.org/aop.events/1493 | 812 | 34 | 20411 | 654 | 1.306801 | 0.021375 | 5.025348 |
17 | https://identifiers.org/aop.events/618 | 240 | 12 | 20411 | 654 | 1.560474 | 0.040014 | 5.022411 |
38 | https://identifiers.org/aop.events/1750 | 528 | 23 | 20411 | 654 | 1.359504 | 0.030245 | 4.756117 |
68 | https://identifiers.org/aop.events/1087 | 528 | 23 | 20411 | 654 | 1.359504 | 0.030245 | 4.756117 |
22 | https://identifiers.org/aop.events/1497 | 528 | 23 | 20411 | 654 | 1.359504 | 0.030245 | 4.756117 |
46 | https://identifiers.org/aop.events/1579 | 353 | 16 | 20411 | 654 | 1.414594 | 0.041370 | 4.505747 |
filteredversion_C4
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | combined_score | |
---|---|---|---|---|---|---|---|---|
1 | https://identifiers.org/aop.events/875 | 169 | 9 | 20411 | 654 | 1.662043 | 0.048320 | 5.035849 |
7 | https://identifiers.org/aop.events/244 | 417 | 25 | 20411 | 654 | 1.871072 | 0.001131 | 12.695299 |
8 | https://identifiers.org/aop.events/1814 | 251 | 18 | 20411 | 654 | 2.238130 | 0.000786 | 15.999104 |
11 | https://identifiers.org/aop.events/1086 | 144 | 9 | 20411 | 654 | 1.950593 | 0.024723 | 7.217230 |
12 | https://identifiers.org/aop.events/1539 | 170 | 16 | 20411 | 654 | 2.937363 | 0.000085 | 27.526736 |
13 | https://identifiers.org/aop.events/201 | 36 | 4 | 20411 | 654 | 3.467720 | 0.021824 | 13.263153 |
14 | https://identifiers.org/aop.events/457 | 584 | 38 | 20411 | 654 | 2.030754 | 0.000018 | 22.230572 |
15 | https://identifiers.org/aop.events/55 | 288 | 18 | 20411 | 654 | 1.950593 | 0.003093 | 11.271583 |
17 | https://identifiers.org/aop.events/618 | 240 | 12 | 20411 | 654 | 1.560474 | 0.040014 | 5.022411 |
18 | https://identifiers.org/aop.events/389 | 36 | 4 | 20411 | 654 | 3.467720 | 0.021824 | 13.263153 |
20 | https://identifiers.org/aop.events/2013 | 100 | 13 | 20411 | 654 | 4.057232 | 0.000015 | 45.153065 |
21 | https://identifiers.org/aop.events/2006 | 216 | 12 | 20411 | 654 | 1.733860 | 0.023786 | 6.482327 |
22 | https://identifiers.org/aop.events/1497 | 528 | 23 | 20411 | 654 | 1.359504 | 0.030245 | 4.756117 |
24 | https://identifiers.org/aop.events/1669 | 400 | 21 | 20411 | 654 | 1.638498 | 0.008832 | 7.749073 |
25 | https://identifiers.org/aop.events/202 | 186 | 10 | 20411 | 654 | 1.677929 | 0.039266 | 5.432131 |
27 | https://identifiers.org/aop.events/1633 | 1056 | 46 | 20411 | 654 | 1.359504 | 0.007178 | 6.711541 |
28 | https://identifiers.org/aop.events/1815 | 58 | 10 | 20411 | 654 | 5.380945 | 0.000012 | 61.007311 |
29 | https://identifiers.org/aop.events/386 | 372 | 22 | 20411 | 654 | 1.845722 | 0.002362 | 11.163202 |
31 | https://identifiers.org/aop.events/1896 | 205 | 12 | 20411 | 654 | 1.826896 | 0.017816 | 7.358092 |
33 | https://identifiers.org/aop.events/68 | 64 | 10 | 20411 | 654 | 4.876481 | 0.000029 | 51.031791 |
34 | https://identifiers.org/aop.events/1493 | 812 | 34 | 20411 | 654 | 1.306801 | 0.021375 | 5.025348 |
35 | https://identifiers.org/aop.events/265 | 268 | 15 | 20411 | 654 | 1.746799 | 0.013499 | 7.520253 |
36 | https://identifiers.org/aop.events/1817 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
38 | https://identifiers.org/aop.events/1750 | 528 | 23 | 20411 | 654 | 1.359504 | 0.030245 | 4.756117 |
40 | https://identifiers.org/aop.events/1365 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
44 | https://identifiers.org/aop.events/149 | 1056 | 46 | 20411 | 654 | 1.359504 | 0.007178 | 6.711541 |
45 | https://identifiers.org/aop.events/1575 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
46 | https://identifiers.org/aop.events/1579 | 353 | 16 | 20411 | 654 | 1.414594 | 0.041370 | 4.505747 |
49 | https://identifiers.org/aop.events/209 | 617 | 27 | 20411 | 654 | 1.365731 | 0.022402 | 5.187903 |
51 | https://identifiers.org/aop.events/1500 | 260 | 15 | 20411 | 654 | 1.800547 | 0.010950 | 8.128421 |
55 | https://identifiers.org/aop.events/381 | 199 | 15 | 20411 | 654 | 2.352473 | 0.001241 | 15.742349 |
56 | https://identifiers.org/aop.events/484 | 706 | 40 | 20411 | 654 | 1.768242 | 0.000184 | 15.203658 |
57 | https://identifiers.org/aop.events/388 | 169 | 9 | 20411 | 654 | 1.662043 | 0.048320 | 5.035849 |
58 | https://identifiers.org/aop.events/1262 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
59 | https://identifiers.org/aop.events/1945 | 1218 | 56 | 20411 | 654 | 1.434919 | 0.001532 | 9.299541 |
61 | https://identifiers.org/aop.events/2012 | 260 | 15 | 20411 | 654 | 1.800547 | 0.010950 | 8.128421 |
63 | https://identifiers.org/aop.events/1818 | 270 | 15 | 20411 | 654 | 1.733860 | 0.014192 | 7.377752 |
66 | https://identifiers.org/aop.events/1585 | 35 | 6 | 20411 | 654 | 5.350197 | 0.000673 | 39.073854 |
67 | https://identifiers.org/aop.events/1271 | 58 | 5 | 20411 | 654 | 2.690472 | 0.027433 | 9.674979 |
68 | https://identifiers.org/aop.events/1087 | 528 | 23 | 20411 | 654 | 1.359504 | 0.030245 | 4.756117 |
69 | https://identifiers.org/aop.events/898 | 328 | 16 | 20411 | 654 | 1.522414 | 0.027887 | 5.449633 |
72 | https://identifiers.org/aop.events/1670 | 88 | 7 | 20411 | 654 | 2.482572 | 0.015606 | 10.327669 |
74 | https://identifiers.org/aop.events/1090 | 459 | 33 | 20411 | 654 | 2.243819 | 0.000009 | 26.115319 |
80 | https://identifiers.org/aop.events/352 | 398 | 20 | 20411 | 654 | 1.568316 | 0.014357 | 6.655168 |
Section 8.5. Calculation of percent gene overlap to ORA
Section 8.5.1 Creation of the significant KEs table
In this section, you merge the dataframes to retrieve the genes connected to only the significant KEs.
Step 69. The significant KE table is created using the significan KEs from the previous merggeddataframe_final.
mergeddataframe_final2=mergeddataframe_final.copy()
mergeddataframe_final2['KEID'] = mergeddataframe_final2['KEID'].str.strip()
significantKEID_genetable4=mergeddataframe_final2[(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1497')|(mergeddataframe_final2['KEID'] == 'https://identifiers.org/aop.events/875')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/244') | (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1814')|(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1086')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1539')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/201')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/457')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/55')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/618')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/389')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2013')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1669')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/202')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1633')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1815')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/386')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1896')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/68')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1493')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/265')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1817')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1750')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1365')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/149')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1575')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1579')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/209')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1500')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/381')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/484')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/388')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1262')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1945')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2012')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1818')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1585')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1271')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1087')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/898')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1670')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1090')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/352')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2006')]
significantKEIDgenetable4=significantKEID_genetable4.drop(columns={'WPtitle','ID'})
Section 8.5.2 Significant ORA pathway table plus splitting
In this section, the significant ORA pathway table is created.
Step 70. The significant ORA pathway table is created using the significant enriched patwhays identified from the ORA analysis. This requires data manipulation to restructure the table in a way that the individual genes for the enriched pathways are placed on individual rows.
datafile_ORA4 = pd.read_csv("C:/Users/shaki/Downloads/EMEXP-2599_ORApathwaytable/Comparison 4-Cadmium-timepoint2.txt", sep='\t')
datafileORA4=pd.DataFrame(datafile_ORA4)
filtereddatafileORA_4=datafileORA4[datafileORA4['Adjusted P-value'] < 0.05]
filtereddatafileORA_4
Gene_set | Term | P-value | Adjusted P-value | Old P-value | Old adjusted P-value | Odds Ratio | Combined Score | Genes | |
---|---|---|---|---|---|---|---|---|---|
0 | WikiPathways_2024_Human | Retinoblastoma Gene In Cancer WP2446 | 2.207376e-20 | 1.803427e-17 | 0 | 0 | 8.362074 | 378.466600 | TOP2A;RB1;CDKN1A;CDKN1B;MCM7;HMGB2;SMC3;SMC2;C... |
1 | WikiPathways_2024_Human | VEGFA VEGFR2 Signaling WP3888 | 4.634443e-13 | 1.893170e-10 | 0 | 0 | 2.096834 | 59.550280 | RPL5;TRAF3IP2;NCF2;PLOD3;ETS1;ICAM1;AMOT;ACTG1... |
2 | WikiPathways_2024_Human | Cell Cycle WP179 | 1.158770e-11 | 3.155717e-09 | 0 | 0 | 3.583526 | 90.237040 | RB1;CDKN1C;CDKN1A;CDKN1B;MCM7;CCNH;SMC3;CDC14B... |
3 | WikiPathways_2024_Human | G1 To S Cell Cycle Control WP45 | 7.583665e-10 | 1.548964e-07 | 0 | 0 | 4.814595 | 101.105800 | RB1;CDKN1C;CDKN1A;CDKN1B;PCNA;MCM7;CCNH;PRIM1;... |
4 | WikiPathways_2024_Human | DNA Replication WP466 | 3.955954e-09 | 6.464029e-07 | 0 | 0 | 6.867953 | 132.881500 | PCNA;MCM7;PRIM1;GMNN;MCM10;POLD3;ORC4;CDC45;OR... |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
76 | WikiPathways_2024_Human | Fluoropyrimidine Activity WP1601 | 3.659414e-03 | 3.882780e-02 | 0 | 0 | 2.869667 | 16.100130 | ABCC3;CDA;ABCC4;RRM1;RRM2;GGH;TYMS;UPB1;SMUG1;... |
77 | WikiPathways_2024_Human | Epithelial To Mesenchymal Transition In Colore... | 3.851971e-03 | 4.034693e-02 | 0 | 0 | 1.589447 | 8.836009 | SPARC;PDCD6;PIK3CD;PIK3CB;CLDN2;FOXM1;AKT1;HRA... |
78 | WikiPathways_2024_Human | Cholesterol Synthesis Disorders WP5193 | 3.937614e-03 | 4.072191e-02 | 0 | 0 | 3.944130 | 21.839360 | IDI1;FDPS;SQLE;EBP;HMGCS1;SC5D;MSMO1;DHCR24;HM... |
79 | WikiPathways_2024_Human | Thermogenesis WP4321 | 4.107860e-03 | 4.195152e-02 | 0 | 0 | 1.744101 | 9.583581 | SMARCD3;KDM3B;NPR1;PRKAG1;ADCY3;ADCY7;ADCY6;AC... |
80 | WikiPathways_2024_Human | Purine Metabolism And Related Disorders WP4224 | 4.486427e-03 | 4.525198e-02 | 0 | 0 | 3.263371 | 17.644070 | PRPS1;PFAS;PAICS;APRT;DGUOK;PNP;RRM2B;PPAT;AOX... |
81 rows × 9 columns
dropped_datafileORA_df4=filtereddatafileORA_4.drop(['Adjusted P-value','Odds Ratio','Old P-value','Gene_set','P-value','Old adjusted P-value','Combined Score'],axis=1)
droppeddatafileORAdf4=dropped_datafileORA_df4.copy()
droppeddatafileORAdf4['Genes']= droppeddatafileORAdf4['Genes'].replace({';':','},regex=True)
df4_ORApathwaytable=droppeddatafileORAdf4.copy()
df4_ORApathwaytable['Genes'] = df4_ORApathwaytable['Genes'].astype(str)
df4_ORApathwaytable['Genes'] = df4_ORApathwaytable['Genes'].str.split(',')
exploded_df4_ORApathwaytable = df4_ORApathwaytable.explode('Genes', ignore_index=True)
Section 8.5.3 For loop to get overlapping genes
In this section, the number of overlapping genes between the significant enrichment score-based Key Events and enriched pathways from ORA are calculated.
Step 71. Next, two sets are created by converting the significant KE table and ORA pathway table into dictionaries where the values of the genes are grouped together per key. This is followed by running a for loop to calculate the number of overlapping genes along with the symbols.
ORA_gene_sets4 = exploded_df4_ORApathwaytable.groupby('Term')['Genes'].apply(set).to_dict()
SignificantKE_gene_sets4 = significantKEIDgenetable4.groupby('KEID')['gene'].apply(set).to_dict()
overlapping_genes_betweenORA_and_significantKEs4 = {}
for term, ORA_genes in ORA_gene_sets4.items():
for KEID, KEID_genes in SignificantKE_gene_sets4.items():
overlap = ORA_genes.intersection(KEID_genes)
print(f"{term} x {KEID}: {len(overlap)} overlaps")
overlapping_genes_betweenORA_and_significantKEs4[(term, KEID)] = {
'overlapping genes': overlap,
'number of genes that overlap': len(overlap)
}
if overlapping_genes_betweenORA_and_significantKEs4:
print("\ntitle of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:")
for (term, KEID), result in overlapping_genes_betweenORA_and_significantKEs4.items():
print(f"Term: {term}, KEID: {KEID}, Title of overlapping gene(s): {result['overlapping genes']}, number: {result['number of genes that overlap']}")
else:
print("No overlapping genes")
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1086: 2 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1087: 11 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1090: 12 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1262: 3 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1271: 0 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1365: 3 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/149: 11 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1493: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1497: 11 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1500: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1539: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1575: 3 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1579: 8 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1585: 0 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1633: 11 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1669: 4 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1670: 6 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1750: 11 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1814: 4 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1815: 0 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1817: 3 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1818: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1896: 1 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/1945: 8 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/2006: 4 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/201: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/2012: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/2013: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/202: 6 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/209: 0 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/244: 4 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/265: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/352: 7 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/381: 7 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/386: 6 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/388: 1 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/389: 5 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/457: 8 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/484: 8 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/55: 2 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/618: 3 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/68: 0 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/875: 1 overlaps
4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879 x https://identifiers.org/aop.events/898: 3 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1086: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1087: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1090: 1 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1262: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1271: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1365: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/149: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1493: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1497: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1500: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1539: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1575: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1579: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1585: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1633: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1669: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1670: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1750: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1814: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1815: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1817: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1818: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1896: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1945: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/2006: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/201: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/2012: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/2013: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/202: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/209: 2 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/244: 2 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/265: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/352: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/381: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/386: 4 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/388: 4 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/389: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/457: 1 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/484: 1 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/55: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/618: 4 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/68: 5 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/875: 4 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/898: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1086: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1087: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1090: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1262: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1271: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1365: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/149: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1493: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1497: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1500: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1539: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1575: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1579: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1585: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1633: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1669: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1670: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1750: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1814: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1815: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1817: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1818: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1896: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1945: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2006: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/201: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2012: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2013: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/202: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/209: 5 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/244: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/265: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/352: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/381: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/386: 4 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/388: 4 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/389: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/457: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/484: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/55: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/618: 4 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/68: 3 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/875: 4 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/898: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1086: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1087: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1090: 20 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1262: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1271: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1365: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/149: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1493: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1497: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1500: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1539: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1575: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1579: 13 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1585: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1633: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1669: 18 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1670: 13 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1750: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1814: 18 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1815: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1817: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1818: 10 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1896: 14 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1945: 17 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2006: 18 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/201: 8 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2012: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2013: 9 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/202: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/209: 13 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/244: 19 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/265: 11 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/352: 12 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/381: 14 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/386: 13 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/388: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/389: 8 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/457: 15 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/484: 16 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/55: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/618: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/68: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/875: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/898: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1086: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1087: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1090: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1262: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1271: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1365: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/149: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1493: 8 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1497: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1500: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1539: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1575: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1579: 6 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1585: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1633: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1669: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1670: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1750: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1814: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1815: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1817: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1818: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1896: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1945: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2006: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/201: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2012: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2013: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/202: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/209: 10 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/244: 9 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/265: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/352: 7 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/381: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/386: 5 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/388: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/389: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/457: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/484: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/55: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/618: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/68: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/875: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/898: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1086: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1087: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1090: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1262: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1271: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1365: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/149: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1493: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1497: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1500: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1539: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1575: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1579: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1585: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1633: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1669: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1670: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1750: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1814: 6 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1815: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1817: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1818: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1896: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1945: 7 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2006: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/201: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2012: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2013: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/202: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/209: 6 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/244: 10 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/265: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/352: 7 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/381: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/386: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/388: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/389: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/457: 4 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/484: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/55: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/618: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/68: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/875: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/898: 5 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1086: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1087: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1090: 11 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1262: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1271: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1365: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/149: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1493: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1497: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1500: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1539: 11 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1575: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1579: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1585: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1633: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1669: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1670: 7 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1750: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1814: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1815: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1817: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1818: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1896: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/1945: 12 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/2006: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/201: 18 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/2012: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/2013: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/202: 2 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/209: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/244: 6 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/265: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/352: 18 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/381: 18 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/386: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/388: 3 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/389: 18 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/457: 8 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/484: 9 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/55: 1 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/618: 4 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/68: 0 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/875: 3 overlaps
BDNF TrkB Signaling WP3676 x https://identifiers.org/aop.events/898: 1 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1086: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1087: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1090: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1262: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1271: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1365: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/149: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1493: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1497: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1500: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1539: 1 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1575: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1579: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1585: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1633: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1669: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1670: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1750: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1814: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1815: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1817: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1818: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1896: 17 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/1945: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/2006: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/201: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/2012: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/2013: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/202: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/209: 17 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/244: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/265: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/352: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/381: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/386: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/388: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/389: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/457: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/484: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/55: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/618: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/68: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/875: 0 overlaps
Base Excision Repair WP4752 x https://identifiers.org/aop.events/898: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1086: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1087: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 57 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1262: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1271: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1365: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/149: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1493: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1497: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1500: 34 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1539: 20 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1575: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1579: 40 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1585: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1633: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1669: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1670: 31 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1750: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1814: 38 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1815: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1817: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1818: 33 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1896: 24 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1945: 61 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2006: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/201: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2012: 34 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2013: 17 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/202: 8 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 55 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 55 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/265: 39 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/352: 30 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/381: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/386: 30 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/388: 16 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/389: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/457: 57 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/484: 56 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/55: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/618: 19 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/68: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/875: 16 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/898: 18 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1086: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1087: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1090: 8 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1262: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1271: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1365: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/149: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1493: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1497: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1500: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1539: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1575: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1579: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1585: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1633: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1669: 22 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1670: 9 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1750: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1814: 21 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1815: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1817: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1818: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1896: 23 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1945: 8 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2006: 21 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/201: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2012: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2013: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/202: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/209: 13 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/244: 23 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/265: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/352: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/381: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/386: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/388: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/389: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/457: 6 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/484: 8 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/55: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/618: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/68: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/875: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/898: 1 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1086: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1087: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1090: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1262: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1271: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1365: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/149: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1493: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1497: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1500: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1539: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1575: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1579: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1633: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1669: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1670: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1750: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1814: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1817: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1818: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1896: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1945: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/2006: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/201: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/2012: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/202: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/209: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/244: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/265: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/352: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/381: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/386: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/388: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/389: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/457: 10 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/484: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/55: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/618: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/875: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/898: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1086: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1087: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1090: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1262: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1271: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1365: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/149: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1493: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1497: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1500: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1539: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1575: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1579: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1585: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1633: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1669: 4 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1670: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1750: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1814: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1815: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1817: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1818: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1896: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1945: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2006: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/201: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2012: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2013: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/202: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/209: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/244: 3 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/265: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/352: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/381: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/386: 2 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/388: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/389: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/457: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/484: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/55: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/618: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/68: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/875: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/898: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1086: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1087: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1090: 8 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1262: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1271: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1365: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/149: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1493: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1497: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1500: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1539: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1575: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1579: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1585: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1633: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1669: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1670: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1750: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1814: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1815: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1817: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1818: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1896: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1945: 6 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2006: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/201: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2012: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2013: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/202: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/209: 8 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/244: 7 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/265: 3 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/352: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/381: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/386: 10 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/388: 8 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/389: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/457: 7 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/484: 6 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/55: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/618: 9 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/68: 4 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/875: 8 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/898: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1086: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1087: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1090: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1262: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1271: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1365: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/149: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1493: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1497: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1500: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1539: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1575: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1579: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1585: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1633: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1669: 2 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1670: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1750: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1814: 2 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1815: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1817: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1818: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1896: 2 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1945: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/2006: 2 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/201: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/2012: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/2013: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/202: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/209: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/244: 2 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/265: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/352: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/381: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/386: 1 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/388: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/389: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/457: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/484: 4 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/55: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/618: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/68: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/875: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/898: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1086: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1087: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1090: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1262: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1271: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1365: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/149: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1493: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1497: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1500: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1539: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1575: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1579: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1585: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1633: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1669: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1670: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1750: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1814: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1815: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1817: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1818: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1896: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/1945: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/2006: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/201: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/2012: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/2013: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/202: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/209: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/244: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/265: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/352: 5 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/381: 5 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/386: 6 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/388: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/389: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/457: 3 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/484: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/55: 4 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/618: 2 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/68: 0 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/875: 1 overlaps
Copper Homeostasis WP3286 x https://identifiers.org/aop.events/898: 4 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1086: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1087: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1090: 3 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1262: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1271: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1365: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/149: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1493: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1497: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1500: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1539: 2 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1575: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1579: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1585: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1633: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1669: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1670: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1750: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1814: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1815: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1817: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1818: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1896: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/1945: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/2006: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/201: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/2012: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/2013: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/202: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/209: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/244: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/265: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/352: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/381: 2 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/386: 2 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/388: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/389: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/457: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/484: 1 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/55: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/618: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/68: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/875: 0 overlaps
Cytoplasmic Ribosomal Proteins WP477 x https://identifiers.org/aop.events/898: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1086: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1087: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1090: 7 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1262: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1365: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/149: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1493: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1497: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1500: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1575: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1579: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1585: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1633: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1669: 34 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1670: 12 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1750: 4 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1814: 34 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1815: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1817: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1818: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1896: 34 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1945: 9 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2006: 34 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/201: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2012: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2013: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/202: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/209: 18 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/244: 34 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/265: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/352: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/381: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/386: 3 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/388: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/389: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/457: 7 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/484: 9 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/55: 6 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/618: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/875: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/898: 6 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1086: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1090: 4 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1262: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1365: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/149: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1493: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1500: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1575: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1579: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1669: 10 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1814: 10 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1817: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1818: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1896: 24 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1945: 2 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2006: 10 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/201: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2012: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/202: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/209: 21 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/244: 10 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/265: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/352: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/381: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/386: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/388: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/389: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/457: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/484: 2 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/55: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/618: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/68: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/875: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/898: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1086: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1090: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1262: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1365: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/149: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1493: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1500: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1575: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1579: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1669: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1814: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1817: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1818: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1896: 18 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1945: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2006: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/201: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2012: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/209: 18 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/244: 1 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/265: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/352: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/388: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/389: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/457: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/484: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/55: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/618: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/875: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/898: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1086: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1090: 2 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1262: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1365: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/149: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1493: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1500: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1575: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1579: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1669: 5 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1670: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1814: 5 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1817: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1818: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1896: 59 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1945: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2006: 5 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/201: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2012: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/209: 59 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/244: 6 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/265: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/352: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/388: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/389: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/457: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/484: 1 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/55: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/618: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/875: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/898: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1086: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1087: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1090: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1262: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1271: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1365: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/149: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1493: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1497: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1500: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1575: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1579: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1633: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1669: 3 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1670: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1750: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1814: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1817: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1818: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1896: 12 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1945: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2006: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/201: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2012: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/202: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/209: 12 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/244: 2 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/265: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/352: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/381: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/386: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/388: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/389: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/457: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/484: 1 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/55: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/618: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/875: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/898: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1086: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1087: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1090: 23 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1262: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1271: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1365: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/149: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1493: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1497: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1500: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1539: 17 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1575: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1579: 21 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1585: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1633: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1669: 15 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1670: 20 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1750: 22 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1814: 15 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1815: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1817: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1818: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1896: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1945: 35 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/2006: 15 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/201: 10 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/2012: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/2013: 11 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/202: 4 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/209: 8 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/244: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/265: 17 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/352: 14 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/381: 16 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/386: 19 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/388: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/389: 10 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/457: 24 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/484: 28 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/55: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/618: 11 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/68: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/875: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/898: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1086: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1087: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1090: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1262: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1271: 3 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1365: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/149: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1493: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1497: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1500: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1539: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1575: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1579: 10 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1585: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1633: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1669: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1670: 4 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1750: 14 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1814: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1815: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1817: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1818: 8 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1896: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1945: 13 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/2006: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/201: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/2012: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/2013: 7 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/202: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/209: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/244: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/265: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/352: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/381: 7 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/386: 8 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/388: 3 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/389: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/457: 8 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/484: 9 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/55: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/618: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/68: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/875: 3 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/898: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1086: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1087: 8 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1090: 6 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1262: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1271: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1365: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/149: 8 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1493: 10 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1497: 8 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1500: 10 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1539: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1575: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1579: 10 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1585: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1633: 8 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1669: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1670: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1750: 8 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1814: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1815: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1817: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1818: 10 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1896: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1945: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/2006: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/201: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/2012: 10 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/2013: 4 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/202: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/209: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/244: 6 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/265: 10 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/352: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/381: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/386: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/388: 3 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/389: 5 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/457: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/484: 7 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/55: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/618: 3 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/68: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/875: 3 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/898: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1086: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1087: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1090: 32 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1262: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1271: 3 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1365: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/149: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1493: 13 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1497: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1500: 13 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1539: 11 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1575: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1579: 13 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1585: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1633: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1669: 10 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1670: 10 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1750: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1814: 10 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1815: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1817: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1818: 12 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1896: 1 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1945: 19 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/2006: 10 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/201: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/2012: 13 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/2013: 8 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/202: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/209: 9 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/244: 12 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/265: 13 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/352: 7 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/381: 8 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/386: 10 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/388: 3 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/389: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/457: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/484: 17 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/55: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/618: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/68: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/875: 3 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/898: 2 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1086: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1087: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1090: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1262: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1271: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1365: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/149: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1493: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1497: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1500: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1539: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1575: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1579: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1585: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1633: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1669: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1670: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1750: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1814: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1815: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1817: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1818: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1896: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/1945: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/2006: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/201: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/2012: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/2013: 1 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/202: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/209: 2 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/244: 3 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/265: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/352: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/381: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/386: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/388: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/389: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/457: 2 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/484: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/55: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/618: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/68: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/875: 0 overlaps
Exercise Induced Circadian Regulation WP410 x https://identifiers.org/aop.events/898: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1086: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1087: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1090: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1262: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1271: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1365: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/149: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1493: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1497: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1500: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1539: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1575: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1579: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1585: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1633: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1669: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1670: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1750: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1814: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1815: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1817: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1818: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1896: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1945: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2006: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/201: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2012: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2013: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/202: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/209: 12 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/244: 8 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/265: 3 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/352: 4 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/381: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/386: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/388: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/389: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/457: 4 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/484: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/55: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/618: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/68: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/875: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/898: 1 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1086: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1087: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1090: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1262: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1271: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1365: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/149: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1493: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1497: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1500: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1539: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1575: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1579: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1585: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1633: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1669: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1670: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1750: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1814: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1815: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1817: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1818: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1896: 1 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1945: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/2006: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/201: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/2012: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/2013: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/202: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/209: 4 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/244: 3 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/265: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/352: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/381: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/386: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/388: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/389: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/457: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/484: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/55: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/618: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/68: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/875: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/898: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1086: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1087: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1090: 6 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1262: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1271: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1365: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/149: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1493: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1497: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1500: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1539: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1575: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1579: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1585: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1633: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1669: 16 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1670: 7 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1750: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1814: 15 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1815: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1817: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1818: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1896: 21 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1945: 9 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2006: 15 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/201: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2012: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2013: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/202: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/209: 14 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/244: 15 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/265: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/352: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/381: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/386: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/388: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/389: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/457: 6 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/484: 9 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/55: 1 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/618: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/68: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/875: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/898: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1086: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1087: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1090: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1262: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1271: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1365: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/149: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1493: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1497: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1500: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1539: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1575: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1579: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1633: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1669: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1670: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1750: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1814: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1817: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1818: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1896: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1945: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2006: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/201: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2012: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2013: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/202: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/209: 2 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/244: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/265: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/352: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/381: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/386: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/388: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/389: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/457: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/484: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/55: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/618: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/875: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/898: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1086: 12 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1087: 16 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1090: 14 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1262: 13 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1271: 5 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1365: 13 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/149: 16 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1493: 18 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1497: 16 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1500: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1539: 12 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1575: 13 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1579: 20 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1633: 16 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1669: 15 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1670: 14 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1750: 16 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1814: 15 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1817: 13 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1818: 15 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1896: 5 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1945: 18 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/2006: 15 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/201: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/2012: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/2013: 13 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/202: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/209: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/244: 18 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/265: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/352: 19 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/381: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/386: 17 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/388: 4 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/389: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/457: 15 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/484: 16 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/55: 12 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/618: 6 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/68: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/875: 4 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/898: 13 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1086: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1087: 16 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1090: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1262: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1271: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1365: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/149: 16 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1493: 12 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1497: 16 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1500: 12 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1539: 14 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1575: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1579: 14 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1585: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1633: 16 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1669: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1670: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1750: 16 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1814: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1815: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1817: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1818: 12 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1896: 11 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1945: 24 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/2006: 19 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/201: 8 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/2012: 12 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/2013: 6 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/202: 7 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/209: 9 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/244: 20 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/265: 12 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/352: 10 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/381: 11 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/386: 11 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/388: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/389: 8 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/457: 18 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/484: 23 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/55: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/618: 6 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/68: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/875: 3 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/898: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1086: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1087: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1090: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1262: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1271: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1365: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/149: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1493: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1497: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1500: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1539: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1575: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1579: 7 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1585: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1633: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1669: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1670: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1750: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1814: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1815: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1817: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1818: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1896: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1945: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2006: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/201: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2012: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2013: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/202: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/209: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/244: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/265: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/352: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/381: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/386: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/388: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/389: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/457: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/484: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/55: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/618: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/68: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/875: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/898: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1086: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1087: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 15 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1262: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1271: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1365: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/149: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1493: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1497: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1500: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1539: 7 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1575: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1579: 8 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1585: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1633: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1669: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1670: 11 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1750: 12 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1814: 15 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1815: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1817: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1818: 7 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1896: 7 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1945: 21 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2006: 14 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/201: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2012: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2013: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/202: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/209: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 17 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/265: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/352: 11 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/381: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/386: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/388: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/389: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/457: 15 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/484: 19 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/55: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/618: 6 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/68: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/875: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/898: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1086: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1087: 9 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1090: 9 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1262: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1271: 4 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1365: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/149: 9 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1493: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1497: 9 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1500: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1539: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1575: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1579: 12 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1585: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1633: 9 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1669: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1670: 8 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1750: 9 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1814: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1815: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1817: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1818: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1896: 1 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/1945: 12 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/2006: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/201: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/2012: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/2013: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/202: 4 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/209: 2 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/244: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/265: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/352: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/381: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/386: 11 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/388: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/389: 6 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/457: 13 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/484: 10 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/55: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/618: 7 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/68: 0 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/875: 5 overlaps
IL6 Signaling WP364 x https://identifiers.org/aop.events/898: 5 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1086: 5 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1087: 23 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1090: 24 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1262: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1271: 2 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1365: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/149: 23 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1493: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1497: 23 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1500: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1539: 22 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1575: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1579: 18 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1585: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1633: 23 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1669: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1670: 13 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1750: 23 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1814: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1815: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1817: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1818: 13 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1896: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1945: 23 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2006: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/201: 10 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2012: 14 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2013: 9 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/202: 9 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/209: 7 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/244: 16 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/265: 15 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/352: 15 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/381: 20 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/386: 22 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/388: 4 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/389: 10 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/457: 17 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/484: 21 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/55: 5 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/618: 8 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/68: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/875: 4 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/898: 6 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1086: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1087: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1090: 11 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1262: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1271: 2 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1365: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/149: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1493: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1497: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1500: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1539: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1575: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1579: 6 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1585: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1633: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1669: 15 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1670: 7 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1750: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1814: 15 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1815: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1817: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1818: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1896: 15 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1945: 9 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2006: 15 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/201: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2012: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2013: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/202: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/209: 11 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/244: 15 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/265: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/352: 5 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/381: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/386: 6 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/388: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/389: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/457: 8 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/484: 9 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/55: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/618: 4 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/68: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/875: 3 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/898: 5 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1086: 3 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1087: 16 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1090: 10 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1262: 3 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1271: 2 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1365: 3 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/149: 16 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1493: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1497: 16 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1500: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1539: 9 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1575: 3 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1579: 11 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1585: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1633: 16 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1669: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1670: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1750: 16 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1814: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1815: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1817: 3 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1818: 7 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1896: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/1945: 10 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/2006: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/201: 6 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/2012: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/2013: 4 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/202: 6 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/209: 2 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/244: 8 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/265: 9 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/352: 9 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/381: 10 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/386: 7 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/388: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/389: 6 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/457: 6 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/484: 7 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/55: 3 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/618: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/68: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/875: 0 overlaps
MAPK Cascade WP422 x https://identifiers.org/aop.events/898: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1086: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1087: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1090: 7 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1262: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1271: 4 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1365: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/149: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1493: 5 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1497: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1500: 5 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1539: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1575: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1579: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1585: 1 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1633: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1669: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1670: 1 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1750: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1814: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1815: 1 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1817: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1818: 1 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1896: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/1945: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/2006: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/201: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/2012: 5 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/2013: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/202: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/209: 6 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/244: 3 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/265: 6 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/352: 1 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/381: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/386: 2 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/388: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/389: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/457: 5 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/484: 4 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/55: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/618: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/68: 1 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/875: 0 overlaps
Mesodermal Commitment Pathway WP2857 x https://identifiers.org/aop.events/898: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1086: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1087: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1090: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1262: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1271: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1365: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/149: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1493: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1497: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1500: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1575: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1579: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1633: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1750: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1817: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1818: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/201: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2012: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2013: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/209: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/244: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/265: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/352: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/386: 7 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/388: 7 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/389: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/457: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/484: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/55: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/618: 8 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/68: 4 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/875: 7 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/898: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1086: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1087: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1090: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1262: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1271: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1365: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/149: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1493: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1497: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1500: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1575: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1579: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1633: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1670: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1750: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1817: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1818: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/201: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/2012: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/2013: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/202: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/209: 4 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/244: 3 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/265: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/352: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/386: 4 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/388: 4 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/389: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/457: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/484: 1 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/55: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/618: 4 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/68: 5 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/875: 4 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/898: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1086: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1087: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1090: 5 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1262: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1271: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1365: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/149: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1493: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1497: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1500: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1539: 4 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1575: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1579: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1585: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1633: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1669: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1670: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1750: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1814: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1815: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1817: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1818: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1896: 8 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1945: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2006: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/201: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2012: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2013: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/202: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/209: 7 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/244: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/265: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/352: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/381: 4 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/386: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/388: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/389: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/457: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/484: 3 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/55: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/618: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/68: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/875: 2 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/898: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1086: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1087: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1090: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1262: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1271: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1365: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/149: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1493: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1497: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1500: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1539: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1575: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1579: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1585: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1633: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1669: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1670: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1750: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1814: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1815: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1817: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1818: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1896: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/1945: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/2006: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/201: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/2012: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/2013: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/202: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/209: 9 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/244: 15 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/265: 4 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/352: 4 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/381: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/386: 2 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/388: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/389: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/457: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/484: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/55: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/618: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/68: 0 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/875: 1 overlaps
NRF2 ARE Regulation WP4357 x https://identifiers.org/aop.events/898: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1086: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1087: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1090: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1262: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1271: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1365: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/149: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1493: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1497: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1500: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1539: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1575: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1579: 2 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1585: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1633: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1669: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1670: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1750: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1814: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1815: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1817: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1818: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1896: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1945: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/2006: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/201: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/2012: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/2013: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/202: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/209: 57 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/244: 57 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/265: 7 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/352: 7 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/381: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/386: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/388: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/389: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/457: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/484: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/55: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/618: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/68: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/875: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/898: 1 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1086: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1087: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1090: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1262: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1271: 2 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1365: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/149: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1493: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1497: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1500: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1539: 12 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1575: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1579: 17 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1585: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1633: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1669: 24 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1670: 35 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1750: 16 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1814: 24 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1815: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1817: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1818: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1896: 12 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/1945: 22 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/2006: 24 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/201: 7 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/2012: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/2013: 9 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/202: 4 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/209: 8 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/244: 26 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/265: 14 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/352: 12 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/381: 13 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/386: 13 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/388: 4 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/389: 7 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/457: 17 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/484: 19 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/55: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/618: 6 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/68: 0 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/875: 4 overlaps
Non Small Cell Lung Cancer WP4255 x https://identifiers.org/aop.events/898: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1086: 3 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1087: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1090: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1262: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1271: 3 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1365: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/149: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1493: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1497: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1500: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1539: 3 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1575: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1579: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1585: 2 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1633: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1669: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1670: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1750: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1814: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1815: 2 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1817: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1818: 3 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1896: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1945: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2006: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/201: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2012: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2013: 2 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/202: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/209: 69 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/244: 67 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/265: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/352: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/381: 4 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/386: 10 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/388: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/389: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/457: 12 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/484: 10 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/55: 3 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/618: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/68: 1 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/875: 7 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/898: 4 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1086: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1087: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1090: 2 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1262: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1271: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1365: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/149: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1493: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1497: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1500: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1539: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1575: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1579: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1633: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1669: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1670: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1750: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1814: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1817: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1818: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1896: 28 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/1945: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/2006: 3 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/201: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/2012: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/2013: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/202: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/209: 28 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/244: 4 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/265: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/352: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/381: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/386: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/388: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/389: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/457: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/484: 1 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/55: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/618: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/875: 0 overlaps
Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114 x https://identifiers.org/aop.events/898: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1086: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1087: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1090: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1262: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1271: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1365: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/149: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1493: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1497: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1500: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1539: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1575: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1579: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1633: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1669: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1670: 1 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1750: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1814: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1817: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1818: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1896: 24 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1945: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2006: 2 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/201: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2012: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2013: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/202: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/209: 24 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/244: 3 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/265: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/352: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/381: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/386: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/388: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/389: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/457: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/484: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/55: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/618: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/875: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/898: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1086: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1087: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1090: 11 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1262: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1271: 5 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1365: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/149: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1493: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1497: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1500: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1539: 14 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1575: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1579: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1585: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1633: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1669: 10 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1670: 11 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1750: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1814: 10 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1815: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1817: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1818: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1896: 4 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1945: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2006: 10 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/201: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2012: 15 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2013: 14 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/202: 7 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/209: 5 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/244: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/265: 16 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/352: 12 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/381: 14 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/386: 16 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/388: 7 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/389: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/457: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/484: 13 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/55: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/618: 9 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/68: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/875: 7 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/898: 6 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1086: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1087: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1090: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1262: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1271: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1365: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/149: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1493: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1497: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1500: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1539: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1575: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1579: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1585: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1633: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1669: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1670: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1750: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1814: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1815: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1817: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1818: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1896: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1945: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/2006: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/201: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/2012: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/2013: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/202: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/209: 7 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/244: 6 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/265: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/352: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/381: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/386: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/388: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/389: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/457: 8 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/484: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/55: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/618: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/68: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/875: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/898: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1086: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1087: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1090: 11 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1262: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1271: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1365: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/149: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1493: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1497: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1500: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1539: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1575: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1579: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1585: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1633: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1669: 15 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1670: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1750: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1814: 14 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1815: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1817: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1818: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1896: 19 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1945: 9 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2006: 14 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/201: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2012: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2013: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/202: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/209: 48 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/244: 16 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/265: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/352: 5 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/381: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/386: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/388: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/389: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/457: 9 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/484: 6 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/55: 4 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/618: 3 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/68: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/875: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/898: 5 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1086: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1087: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1090: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1262: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1271: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1365: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/149: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1493: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1497: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1500: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1539: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1575: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1579: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1585: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1633: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1669: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1670: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1750: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1814: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1815: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1817: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1818: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1896: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/1945: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/2006: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/201: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/2012: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/2013: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/202: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/209: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/244: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/265: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/352: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/381: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/386: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/388: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/389: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/457: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/484: 1 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/55: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/618: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/68: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/875: 0 overlaps
PAFAH1B1 Copy Number Variation WP5409 x https://identifiers.org/aop.events/898: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1086: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1087: 17 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1090: 19 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1262: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1271: 5 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1365: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/149: 17 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1493: 13 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1497: 17 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1500: 13 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1539: 12 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1575: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1579: 14 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1585: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1633: 17 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1669: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1670: 21 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1750: 17 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1814: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1815: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1817: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1818: 12 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1896: 12 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/1945: 23 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/2006: 18 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/201: 3 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/2012: 13 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/2013: 11 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/202: 6 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/209: 11 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/244: 21 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/265: 14 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/352: 11 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/381: 11 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/386: 14 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/388: 7 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/389: 3 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/457: 15 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/484: 17 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/55: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/618: 9 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/68: 0 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/875: 7 overlaps
Pancreatic Adenocarcinoma Pathway WP4263 x https://identifiers.org/aop.events/898: 9 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1086: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1087: 4 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1090: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1262: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1271: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1365: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/149: 4 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1493: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1497: 4 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1500: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1539: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1575: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1579: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1585: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1633: 4 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1669: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1670: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1750: 4 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1814: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1815: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1817: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1818: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1896: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/1945: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/2006: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/201: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/2012: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/2013: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/202: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/209: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/244: 2 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/265: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/352: 1 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/381: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/386: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/388: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/389: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/457: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/484: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/55: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/618: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/68: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/875: 0 overlaps
Parkin Ubiquitin Proteasomal System Pathway WP2359 x https://identifiers.org/aop.events/898: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1086: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1087: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1090: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1262: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1271: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1365: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/149: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1493: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1497: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1500: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1539: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1575: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1579: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1585: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1633: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1669: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1670: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1750: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1814: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1815: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1817: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1818: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1945: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2006: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/201: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2012: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/2013: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/202: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/209: 12 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/244: 12 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/265: 5 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/352: 5 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/381: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/386: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/388: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/389: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/457: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/484: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/55: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/618: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/875: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/898: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1086: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1087: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1090: 14 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1262: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1271: 6 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1365: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/149: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1493: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1497: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1500: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1539: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1575: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1579: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1585: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1633: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1669: 10 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1670: 10 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1750: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1814: 10 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1815: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1817: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1818: 17 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1896: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1945: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2006: 10 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/201: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2012: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2013: 16 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/202: 9 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/209: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/244: 11 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/265: 18 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/352: 15 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/381: 20 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/386: 20 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/388: 5 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/389: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/457: 13 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/484: 13 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/55: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/618: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/68: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/875: 5 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/898: 8 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1086: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1087: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1090: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1262: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1271: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1365: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/149: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1493: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1497: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1500: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1539: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1575: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1579: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1585: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1633: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1669: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1670: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1750: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1814: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1815: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1817: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1818: 1 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1896: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/1945: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/2006: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/201: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/2012: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/2013: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/202: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/209: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/244: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/265: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/352: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/381: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/386: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/388: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/389: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/457: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/484: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/55: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/618: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/68: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/875: 0 overlaps
Proteasome Degradation WP183 x https://identifiers.org/aop.events/898: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1086: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1087: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1090: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1262: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1271: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1365: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/149: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1493: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1497: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1500: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1539: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1575: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1579: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1585: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1633: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1669: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1670: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1750: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1814: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1815: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1817: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1818: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1896: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/1945: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/2006: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/201: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/2012: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/2013: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/202: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/209: 2 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/244: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/265: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/352: 1 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/381: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/386: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/388: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/389: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/457: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/484: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/55: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/618: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/68: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/875: 0 overlaps
Purine Metabolism And Related Disorders WP4224 x https://identifiers.org/aop.events/898: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1086: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1087: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1090: 1 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1262: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1271: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1365: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/149: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1493: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1497: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1500: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1539: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1575: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1579: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1585: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1633: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1669: 1 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1670: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1750: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1814: 1 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1815: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1817: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1818: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1896: 1 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1945: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2006: 1 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/201: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2012: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2013: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/202: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/209: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/244: 1 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/265: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/352: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/381: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/386: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/388: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/389: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/457: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/484: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/55: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/618: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/68: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/875: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/898: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1086: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1087: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1090: 12 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1262: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1271: 1 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1365: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/149: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1493: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1497: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1500: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1539: 12 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1575: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1579: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1585: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1633: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1669: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1670: 11 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1750: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1814: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1815: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1817: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1818: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1896: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/1945: 14 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/2006: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/201: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/2012: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/2013: 6 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/202: 4 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/209: 4 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/244: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/265: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/352: 10 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/381: 11 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/386: 8 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/388: 1 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/389: 9 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/457: 12 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/484: 13 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/55: 2 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/618: 3 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/68: 0 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/875: 1 overlaps
Relevant Molecular Pathways And Targeted Agents In TNBC WP5215 x https://identifiers.org/aop.events/898: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1086: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1087: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1090: 6 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1262: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1271: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1365: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/149: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1493: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1497: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1500: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1539: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1575: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1579: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1585: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1633: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1669: 16 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1670: 5 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1750: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1814: 15 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1815: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1817: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1818: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1896: 26 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1945: 7 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2006: 15 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/201: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2012: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2013: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/202: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/209: 17 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/244: 15 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/265: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/352: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/381: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/386: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/388: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/389: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/457: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/484: 7 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/55: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/618: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/68: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/875: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/898: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1086: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1087: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1090: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1262: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1271: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1365: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/149: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1493: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1497: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1500: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1539: 2 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1575: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1579: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1585: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1633: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1669: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1670: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1750: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1814: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1815: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1817: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1818: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1896: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/1945: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/2006: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/201: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/2012: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/2013: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/202: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/209: 2 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/244: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/265: 1 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/352: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/381: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/386: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/388: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/389: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/457: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/484: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/55: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/618: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/68: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/875: 0 overlaps
Rubinstein Taybi Syndrome 1 WP5367 x https://identifiers.org/aop.events/898: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1086: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1087: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1090: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1262: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1271: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1365: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/149: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1493: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1497: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1500: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1539: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1575: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1579: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1585: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1633: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1669: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1670: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1750: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1814: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1815: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1817: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1818: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1896: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1945: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/2006: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/201: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/2012: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/2013: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/202: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/209: 7 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/244: 6 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/265: 7 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/352: 7 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/381: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/386: 4 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/388: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/389: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/457: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/484: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/55: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/618: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/68: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/875: 1 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/898: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1086: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1087: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1090: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1262: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1271: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1365: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/149: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1493: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1497: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1500: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1539: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1575: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1579: 6 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1585: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1633: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1669: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1670: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1750: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1814: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1815: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1817: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1818: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1896: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1945: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/2006: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/201: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/2012: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/2013: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/202: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/209: 12 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/244: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/265: 9 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/352: 8 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/381: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/386: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/388: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/389: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/457: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/484: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/55: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/618: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/68: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/875: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/898: 2 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1086: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1087: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1090: 9 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1262: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1271: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1365: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/149: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1493: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1497: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1500: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1539: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1575: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1579: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1585: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1633: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1669: 8 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1670: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1750: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1814: 8 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1815: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1817: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1818: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1896: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1945: 8 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/2006: 8 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/201: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/2012: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/2013: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/202: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/209: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/244: 9 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/265: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/352: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/381: 6 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/386: 7 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/388: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/389: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/457: 5 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/484: 8 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/55: 4 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/618: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/68: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/875: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/898: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1086: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1087: 12 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1090: 22 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1262: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1271: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1365: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/149: 12 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1493: 8 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1497: 12 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1500: 8 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1539: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1575: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1579: 14 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1585: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1633: 12 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1669: 21 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1670: 15 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1750: 12 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1814: 21 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1815: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1817: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1818: 10 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1896: 16 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1945: 27 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2006: 21 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/201: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2012: 8 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2013: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/202: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 10 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 21 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/265: 8 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/352: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/381: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/386: 9 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/388: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/389: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/457: 20 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/484: 27 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/55: 11 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/618: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/68: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/875: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/898: 11 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1086: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1087: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1090: 5 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1262: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1271: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1365: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/149: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1493: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1497: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1500: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1539: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1575: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1579: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1585: 3 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1633: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1669: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1670: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1750: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1814: 4 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1815: 3 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1817: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1818: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1896: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1945: 4 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2006: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/201: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2012: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2013: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/202: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/209: 5 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/244: 4 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/265: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/352: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/381: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/386: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/388: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/389: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/457: 9 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/484: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/55: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/618: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/68: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/875: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/898: 1 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1086: 14 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1087: 16 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1090: 13 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1262: 15 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1271: 4 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1365: 15 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/149: 16 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1493: 11 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1497: 16 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1500: 11 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1539: 7 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1575: 15 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1579: 37 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1585: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1633: 16 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1669: 12 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1670: 8 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1750: 16 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1814: 12 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1815: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1817: 15 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1818: 9 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1896: 4 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/1945: 12 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/2006: 12 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/201: 5 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/2012: 11 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/2013: 6 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/202: 10 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/209: 7 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/244: 14 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/265: 11 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/352: 19 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/381: 13 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/386: 12 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/388: 3 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/389: 5 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/457: 9 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/484: 11 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/55: 14 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/618: 3 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/68: 0 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/875: 3 overlaps
TNF Alpha Signaling WP231 x https://identifiers.org/aop.events/898: 15 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1086: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1087: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1090: 15 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1262: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1271: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1365: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/149: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1493: 9 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1497: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1500: 9 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1539: 6 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1575: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1579: 11 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1585: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1633: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1669: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1670: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1750: 10 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1814: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1815: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1817: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1818: 9 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1896: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1945: 15 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2006: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/201: 6 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2012: 9 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2013: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/202: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/209: 8 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/244: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/265: 9 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/352: 7 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/381: 7 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/386: 5 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/388: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/389: 6 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/457: 13 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/484: 12 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/55: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/618: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/68: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/875: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/898: 1 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1086: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1087: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1090: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1262: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1271: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1365: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/149: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1493: 13 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1497: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1500: 13 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1539: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1575: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1579: 14 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1585: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1633: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1669: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1670: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1750: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1814: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1815: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1817: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1818: 13 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1896: 6 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1945: 11 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/2006: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/201: 5 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/2012: 13 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/2013: 7 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/202: 5 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/209: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/244: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/265: 13 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/352: 6 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/381: 8 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/386: 9 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/388: 5 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/389: 5 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/457: 11 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/484: 10 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/55: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/618: 6 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/68: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/875: 5 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/898: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1086: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1087: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1090: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1262: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1271: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1365: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/149: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1493: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1497: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1500: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1539: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1575: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1579: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1585: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1633: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1669: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1670: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1750: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1814: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1815: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1817: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1818: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1896: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1945: 1 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2006: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/201: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2012: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2013: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/202: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/209: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/244: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/265: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/352: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/381: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/386: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/388: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/389: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/457: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/484: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/55: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/618: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/68: 2 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/875: 4 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/898: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1086: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1087: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1090: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1262: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1271: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1365: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/149: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1493: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1497: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1500: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1539: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1575: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1579: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1585: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1633: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1669: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1670: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1750: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1814: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1815: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1817: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1818: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1896: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/1945: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/2006: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/201: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/2012: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/2013: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/202: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/209: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/244: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/265: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/352: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/381: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/386: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/388: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/389: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/457: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/484: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/55: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/618: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/68: 0 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/875: 1 overlaps
Trans Sulfuration Pathway WP2333 x https://identifiers.org/aop.events/898: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1086: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1087: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1090: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1262: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1271: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1365: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/149: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1493: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1497: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1500: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1539: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1575: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1579: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1585: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1633: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1669: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1670: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1750: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1814: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1815: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1817: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1818: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1896: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1945: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2006: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/201: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2012: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/2013: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/202: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/209: 8 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/244: 11 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/265: 4 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/352: 4 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/381: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/386: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/388: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/389: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/457: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/484: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/55: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/618: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/68: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/875: 1 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/898: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1086: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1087: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1090: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1262: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1271: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1365: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/149: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1493: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1497: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1500: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1539: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1575: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1579: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1585: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1633: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1669: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1670: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1750: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1814: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1815: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1817: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1818: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1896: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/1945: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/2006: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/201: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/2012: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/2013: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/202: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/209: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/244: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/265: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/352: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/381: 5 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/386: 4 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/388: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/389: 2 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/457: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/484: 1 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/55: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/618: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/68: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/875: 0 overlaps
Translation Factors WP107 x https://identifiers.org/aop.events/898: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1086: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1087: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1090: 6 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1262: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1271: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1365: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/149: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1493: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1497: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1500: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1539: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1575: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1579: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1585: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1633: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1669: 4 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1670: 4 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1750: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1814: 4 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1815: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1817: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1818: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1896: 3 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/1945: 2 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/2006: 4 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/201: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/2012: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/2013: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/202: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/209: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/244: 4 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/265: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/352: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/381: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/386: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/388: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/389: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/457: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/484: 2 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/55: 1 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/618: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/68: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/875: 0 overlaps
Tumor Suppressor Activity Of SMARCB1 WP4204 x https://identifiers.org/aop.events/898: 1 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1086: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1087: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1090: 3 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1262: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1271: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1365: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/149: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1493: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1497: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1500: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1539: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1575: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1579: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1585: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1633: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1669: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1670: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1750: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1814: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1815: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1817: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1818: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1896: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1945: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/2006: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/201: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/2012: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/2013: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/202: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/209: 3 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/244: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/265: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/352: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/381: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/386: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/388: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/389: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/457: 1 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/484: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/55: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/618: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/68: 3 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/875: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/898: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1086: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1087: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1090: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1262: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1271: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1365: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/149: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1493: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1497: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1500: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1539: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1575: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1579: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1585: 13 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1633: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1669: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1670: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1750: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1814: 13 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1815: 13 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1817: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1818: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1896: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1945: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2006: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/201: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2012: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2013: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/202: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/209: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/244: 13 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/265: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/352: 3 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/381: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/386: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/388: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/389: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/457: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/484: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/55: 2 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/618: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/68: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/875: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/898: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1086: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1087: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 28 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1262: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1271: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1365: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/149: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1493: 21 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1497: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1500: 18 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1539: 28 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1575: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1579: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1585: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1633: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1669: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1670: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1750: 27 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1814: 14 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1815: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1817: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1818: 18 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1896: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1945: 25 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2006: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/201: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2012: 18 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2013: 13 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/202: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 20 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 24 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/265: 19 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/352: 19 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/381: 21 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/386: 21 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/388: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/389: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/457: 16 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/484: 18 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/55: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/618: 9 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/68: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/875: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/898: 12 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1086: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1087: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1090: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1262: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1271: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1365: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/149: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1493: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1497: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1500: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1539: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1575: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1579: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1585: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1633: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1669: 1 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1670: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1750: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1814: 1 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1815: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1817: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1818: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1896: 1 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1945: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2006: 1 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/201: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2012: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2013: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/202: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/209: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/244: 1 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/265: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/352: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/381: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/386: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/388: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/389: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/457: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/484: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/55: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/618: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/68: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/875: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/898: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1086: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1087: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1090: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1262: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1271: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1365: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/149: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1493: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1497: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1500: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1539: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1575: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1579: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1585: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1633: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1669: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1670: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1750: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1814: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1815: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1817: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1818: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1896: 2 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/1945: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/2006: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/201: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/2012: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/2013: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/202: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/209: 2 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/244: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/265: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/352: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/381: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/386: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/388: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/389: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/457: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/484: 1 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/55: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/618: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/68: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/875: 0 overlaps
miR 517 Relationship With ARCN1 And USP1 WP3596 x https://identifiers.org/aop.events/898: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1086: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1087: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1090: 6 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1262: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1271: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1365: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/149: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1493: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1497: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1500: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1539: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1575: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1579: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1585: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1633: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1669: 34 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1670: 11 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1750: 3 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1814: 33 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1815: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1817: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1818: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1896: 33 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1945: 8 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2006: 33 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/201: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2012: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2013: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/202: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/209: 19 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/244: 33 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/265: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/352: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/381: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/386: 2 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/388: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/389: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/457: 6 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/484: 8 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/55: 5 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/618: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/68: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/875: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/898: 5 overlaps
title of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MKNK2', 'MKNK1', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'MAP3K5', 'PIK3R1', 'MAP2K1'}, number: 11
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'MKNK2', 'MKNK1', 'MAP2K6', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'EIF4EBP1', 'MAP3K5', 'MAP2K1'}, number: 12
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'PIK3R1', 'MAP3K5', 'AKT1'}, number: 3
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'PIK3R1', 'MAP3K5', 'AKT1'}, number: 3
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MKNK2', 'MKNK1', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'MAP3K5', 'PIK3R1', 'MAP2K1'}, number: 11
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MKNK2', 'MKNK1', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'MAP3K5', 'PIK3R1', 'MAP2K1'}, number: 11
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'PIK3R1', 'MAP3K5', 'AKT1'}, number: 3
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'MAP2K6', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'MAP3K5', 'PIK3R1', 'MAP2K1'}, number: 8
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MKNK2', 'MKNK1', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'MAP3K5', 'PIK3R1', 'MAP2K1'}, number: 11
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PIK3R1', 'PIK3CB', 'PIK3CD', 'AKT1'}, number: 4
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 6
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MKNK2', 'MKNK1', 'AKT1', 'PIK3CB', 'PIK3CD', 'MAP2K3', 'MAP3K5', 'PIK3R1', 'MAP2K1'}, number: 11
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R1', 'PIK3CB', 'PIK3CD', 'AKT1'}, number: 4
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'PIK3R1', 'MAP3K5', 'AKT1'}, number: 3
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'AKT1', 'PIK3CB', 'PIK3CD', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 8
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'PIK3CB', 'PIK3CD', 'AKT1'}, number: 4
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC1', 'MKNK1', 'AKT1', 'EIF4EBP1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'AKT1', 'MAP2K3', 'PIK3R1', 'MAP2K1'}, number: 6
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1', 'PIK3CB', 'PIK3CD', 'AKT1'}, number: 4
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'TSC1', 'MKNK1', 'AKT1', 'MAP3K5', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 7
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'MKNK1', 'AKT1', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 7
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CB', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 6
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC1', 'MKNK1', 'AKT1', 'EIF4EBP1', 'MAP2K1'}, number: 5
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'AKT1', 'PIK3CB', 'PIK3CD', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 8
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'AKT1', 'PIK3CB', 'PIK3CD', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 8
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PIK3R1', 'PIK3CB', 'AKT1'}, number: 3
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: 4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'PIK3R1', 'MAP3K5', 'AKT1'}, number: 3
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'SLC2A1'}, number: 2
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'SLC2A1'}, number: 2
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS', 'PSAT1', 'PHGDH', 'SLC2A1'}, number: 4
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'GLS', 'PSAT1', 'PHGDH', 'SLC2A1'}, number: 4
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'GLS', 'PSAT1', 'PHGDH', 'SLC2A1'}, number: 4
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5', 'PSAT1', 'SLC2A1', 'GLS', 'PHGDH'}, number: 5
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'GLS', 'PSAT1', 'PHGDH', 'SLC2A1'}, number: 4
Term: Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'GLUL'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSS', 'ACADM', 'GCLM', 'ACAA1', 'MAOA'}, number: 5
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'MAOA'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'MAOA'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GLS', 'DLD', 'GOT1', 'GLUL'}, number: 4
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'GLS', 'DLD', 'GOT1', 'GLUL'}, number: 4
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'GLS', 'DLD', 'GOT1', 'GLUL'}, number: 4
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PYCR1', 'P4HA2', 'GLS'}, number: 3
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'GLS', 'DLD', 'GOT1', 'GLUL'}, number: 4
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'CDC25B', 'HRAS', 'AKT1', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'STAT1', 'JUN', 'MAP2K1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'BAX', 'BARD1', 'CDK4', 'NDRG1', 'PTEN', 'JAK1', 'TSC1', 'CDK2', 'PAK1', 'GRB2', 'EIF4EBP1', 'CCND1', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'BRCA1', 'SOS1', 'STAT1'}, number: 20
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT1', 'JUN', 'STAT3', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'CDC25B', 'HRAS', 'AKT1', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'STAT1', 'JUN', 'MAP2K1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'MMP1', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'JUN', 'STAT3', 'JAK1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'CDC25B', 'HRAS', 'AKT1', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'STAT1', 'JUN', 'MAP2K1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'PAK1', 'PXN', 'GRB2', 'STAT1', 'JUN', 'STAT3', 'JAK1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RICTOR', 'HRAS', 'SPRY2', 'AKT1', 'GAB1', 'MAP2K1', 'SOS1', 'PTEN', 'PAK1', 'GRB2', 'EIF4EBP1', 'STAT1', 'JUN', 'STAT3', 'JAK1'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'HRAS', 'BAX', 'AKT1', 'SOS1', 'CASP3', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'BAD', 'JUN', 'STAT3', 'MAP2K1'}, number: 13
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'CDC25B', 'HRAS', 'AKT1', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'STAT1', 'JUN', 'MAP2K1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'SOS1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'GRB2', 'MRE11', 'CCND1', 'BAD', 'JUN', 'RB1'}, number: 18
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'BAX', 'AKT1', 'SOS1', 'CASP3', 'GRB2', 'CCND1', 'BAD', 'STAT3', 'MAP2K1', 'RB1'}, number: 13
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'CDC25B', 'HRAS', 'AKT1', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'STAT1', 'JUN', 'MAP2K1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'SOS1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'GRB2', 'MRE11', 'CCND1', 'BAD', 'JUN', 'RB1'}, number: 18
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'PAK1', 'PXN', 'GRB2', 'STAT1', 'STAT3', 'JAK1'}, number: 10
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'BAX', 'MSH6', 'AKT1', 'BRCA1', 'CDK2', 'CASP3', 'CHEK1', 'MSH2', 'MRE11', 'CCND1', 'RB1'}, number: 14
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'MAP2K1', 'BRCA1', 'SOS1', 'PTEN', 'CDK2', 'PAK1', 'GRB2', 'EIF4EBP1', 'CCND1', 'BAD', 'JAK1'}, number: 17
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'HRAS', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'SOS1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'GRB2', 'MRE11', 'CCND1', 'BAD', 'JUN', 'RB1'}, number: 18
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC1', 'HRAS', 'AKT1', 'GAB1', 'SOS1', 'GRB2', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'PAK1', 'PXN', 'GRB2', 'STAT1', 'JUN', 'STAT3', 'JAK1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'SOS1', 'GRB2', 'JAK1', 'STAT1', 'BAD', 'STAT3', 'MAP2K1'}, number: 9
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'JUN', 'MAP2K1', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25A', 'BAX', 'MSH6', 'BRCA1', 'PTEN', 'CDK2', 'CHEK1', 'MSH2', 'MMP1', 'MRE11', 'CCND1', 'ABCC4', 'JUN'}, number: 13
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'BAX', 'ABCC4', 'CDK4', 'CDK1', 'PTEN', 'CHEK1', 'CDK2', 'CASP3', 'GRB2', 'MRE11', 'CCND1', 'JUN', 'CDC25A', 'AKT1', 'BRCA1', 'SOS1', 'BAD', 'RB1'}, number: 19
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'PAK1', 'PXN', 'GRB2', 'STAT1', 'JUN', 'STAT3', 'JAK1'}, number: 11
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'TSC1', 'HRAS', 'BAX', 'AKT1', 'GAB1', 'SOS1', 'CASP3', 'GRB2', 'EIF4EBP1', 'BAD', 'JUN', 'MAP2K1'}, number: 12
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'SOS1', 'CASP3', 'GRB2', 'EIF4EBP1', 'STAT1', 'BAD', 'JUN', 'STAT3', 'MAP2K1'}, number: 14
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'MAP2K1', 'PTEN', 'CASP3', 'GRB2', 'EIF4EBP1', 'STAT1', 'BAD', 'JUN', 'STAT3', 'JAK1'}, number: 13
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'STAT1', 'STAT3', 'JAK1', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC1', 'HRAS', 'AKT1', 'GAB1', 'SOS1', 'GRB2', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'FOXA1', 'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'PTEN', 'GRB2', 'EIF4EBP1', 'STAT1', 'BAD', 'STAT3', 'JAK1', 'RB1'}, number: 15
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'TSC1', 'HRAS', 'FOXA1', 'AKT1', 'MAP2K1', 'BRCA1', 'SOS1', 'PTEN', 'CDK2', 'GRB2', 'EIF4EBP1', 'CCND1', 'BAD', 'JAK1'}, number: 16
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PTEN', 'STAT1', 'STAT3', 'JAK1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'STAT1', 'STAT3', 'JAK1', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'JUN'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'IL6', 'CCL2', 'NFKB1'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'MMP1', 'NFKB1'}, number: 8
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKBIA', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 6
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'NFE2L2'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1B', 'CXCL8', 'IL6', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFKB1', 'IL1B', 'NFE2L2'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'NFE2L2'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKBIA', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKBIA', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'RELA', 'NFKBIA', 'CCL2', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'NFE2L2', 'CCL2', 'MMP1', 'HMOX1', 'NQO1', 'KEAP1', 'NFKB1'}, number: 10
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'IL1B', 'GCLM', 'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'KEAP1', 'NFKB1'}, number: 9
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'RELA', 'NFKBIA', 'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'NFKB1'}, number: 7
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKBIA', 'NFKB1'}, number: 5
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IL1B', 'IL6', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6'}, number: 1
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'IL1B', 'IL6', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IL1B', 'IL6', 'NFKB1'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'NFKBIA', 'RELA', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'PAK2', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CUL1', 'AKT1', 'PAK2', 'CDKN1A', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'PAK2', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'VAV3'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'PAK2', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'VAV3'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1', 'VAV3'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'CUL1', 'VAV3'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'ERN1', 'HSPA5'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'PAK2', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A', 'AKT1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'PAK2', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ERN1', 'AKT1', 'CDKN1B', 'CDKN1A', 'HSPA5', 'NFKB1'}, number: 6
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'ERN1', 'HSPA5'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'VAV3'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'AKT1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ETS1', 'AKT1', 'IL7R', 'CDKN1B', 'CDKN1A', 'PAK2', 'NFKB1'}, number: 7
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'VAV3'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'BIRC5', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'AKT1', 'NFKB1'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'GCLC', 'CDKN1A', 'NQO1', 'NRG1', 'NFKB1'}, number: 6
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'ERN1', 'AKT1', 'GCLC', 'CDKN1B', 'CDKN1A', 'HSPA5', 'NQO1', 'NRG1', 'NFKB1'}, number: 10
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1', 'VAV3', 'GCLC', 'NQO1', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'GCLC', 'TNFRSF21', 'NQO1', 'HELLS', 'NFKB1'}, number: 7
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'SQSTM1', 'VAV3'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NFKB1', 'AKT1', 'SQSTM1', 'VAV3'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'NFKB1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'IL7R', 'AKT1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1', 'IL7R', 'CDKN1B', 'CDKN1A', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'NFKB1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'NFKB1'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'BIRC5', 'AKT1', 'TNFRSF21', 'HELLS', 'NFKB1'}, number: 5
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MKNK1', 'HRAS', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TSC1', 'HRAS', 'MKNK1', 'AKT1', 'RPS6KA1', 'BDNF', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 11
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MKNK1', 'HRAS', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MKNK1', 'HRAS', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'GAB2', 'AKT1', 'GAB1', 'RPS6KA1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 11
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MKNK1', 'HRAS', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MKNK1', 'HRAS', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'GAB2', 'AKT1', 'GAB1', 'BDNF', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 12
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MKNK1', 'HRAS', 'GAB2', 'RPS6KA1', 'GAB1', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'EEF2K', 'GRB2', 'EIF4EBP1', 'SHC1', 'ARC', 'HOMER1', 'MAP2K1'}, number: 18
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'GAB2', 'AKT1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K1', 'AKT1'}, number: 2
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1'}, number: 6
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MKNK1', 'HRAS', 'GAB2', 'RPS6KA1', 'GAB1', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'EEF2K', 'GRB2', 'EIF4EBP1', 'SHC1', 'ARC', 'HOMER1', 'MAP2K1'}, number: 18
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MKNK1', 'HRAS', 'GAB2', 'RPS6KA1', 'GAB1', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'EEF2K', 'GRB2', 'EIF4EBP1', 'SHC1', 'ARC', 'HOMER1', 'MAP2K1'}, number: 18
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'AKT1', 'RPS6KA1', 'BDNF', 'GRB2', 'EIF4EBP1', 'ARC', 'SHC1', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'BDNF', 'ARC', 'AKT1'}, number: 3
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MKNK1', 'HRAS', 'GAB2', 'RPS6KA1', 'GAB1', 'AKT1', 'BDNF', 'BRAF', 'SOS1', 'EEF2K', 'GRB2', 'EIF4EBP1', 'SHC1', 'ARC', 'HOMER1', 'MAP2K1'}, number: 18
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'SOS1', 'GRB2', 'EIF4EBP1', 'MAP2K1'}, number: 8
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'BDNF', 'SOS1', 'GRB2', 'EIF4EBP1', 'MAP2K1'}, number: 9
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'BDNF', 'ARC', 'SHC1', 'AKT1'}, number: 4
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'BDNF', 'ARC', 'AKT1'}, number: 3
Term: BDNF TrkB Signaling WP3676, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLD3', 'POLE2', 'APEX1', 'APEX2', 'LIG1', 'NTHL1', 'MBD4', 'XRCC1', 'FEN1', 'SMUG1', 'NEIL3', 'PCNA', 'UNG', 'POLE4', 'PARP1', 'POLE', 'POLE3'}, number: 17
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLD3', 'POLE2', 'APEX1', 'APEX2', 'LIG1', 'NTHL1', 'MBD4', 'XRCC1', 'FEN1', 'SMUG1', 'NEIL3', 'PCNA', 'UNG', 'POLE4', 'PARP1', 'POLE', 'POLE3'}, number: 17
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Base Excision Repair WP4752, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'FN1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'IFNAR2', 'TGFB2', 'RASGRP1', 'NFKBIA', 'TGFBR2', 'CASP3', 'GRB2', 'FAS', 'JUN', 'GNA12', 'MAP2K1', 'GADD45A', 'MAP2K2', 'LAMC2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'RPS6KA5', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'CUL1', 'COL4A4', 'FZD6', 'BAX', 'COL4A2', 'LAMA1', 'FGFR1', 'SLC2A1', 'RPS6KB2', 'CTBP1', 'FN1', 'LAMB3', 'LAMA2', 'NFKB1', 'CDK4', 'PDGFA', 'PIK3CB', 'PIK3CD', 'KITLG', 'FGFR3', 'PTEN', 'COL4A1', 'TGFA', 'COL4A3', 'JAK1', 'FZD5', 'DVL1', 'RASSF1', 'TCF7L2', 'CDK2', 'GRB2', 'FZD1', 'LRP6', 'CCND1', 'FRAT1', 'CDKN2A', 'JUN', 'MAP2K1', 'MAP2K2', 'DVL3', 'LAMC2', 'IL6', 'WNT5B', 'COL4A5', 'AKT1', 'FZD9', 'ITGA6', 'PDGFB', 'SOS1', 'RPS6KA5', 'CDKN1A', 'FGFR2', 'ITGA3', 'STAT1', 'MAPK10', 'FZD2'}, number: 57
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'TGFBR2', 'BMP4', 'CREBBP', 'STAT1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'FN1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'IFNAR2', 'TGFB2', 'RASGRP1', 'NFKBIA', 'TGFBR2', 'CASP3', 'GRB2', 'FAS', 'JUN', 'GNA12', 'MAP2K1', 'GADD45A', 'MAP2K2', 'LAMC2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'RPS6KA5', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'GNAI2', 'BRAF', 'ADCY6', 'ADCY7', 'BMP4', 'SOS2', 'ADCY9', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'GNG11', 'CREBBP', 'STAT3', 'JAK1', 'GNB1', 'GNAI1', 'NFKBIA', 'TGFBR2', 'MMP1', 'GRB2', 'ADCY3', 'JUN', 'GNAI3', 'MAP2K1', 'PRKCB', 'IL6', 'GNB2', 'AKT1', 'SOS1', 'STAT1', 'IL23A', 'PIK3R1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'FN1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'IFNAR2', 'TGFB2', 'RASGRP1', 'NFKBIA', 'TGFBR2', 'CASP3', 'GRB2', 'FAS', 'JUN', 'GNA12', 'MAP2K1', 'GADD45A', 'MAP2K2', 'LAMC2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'RPS6KA5', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'GNAI2', 'BRAF', 'ADCY6', 'ADCY7', 'BMP4', 'SOS2', 'ADCY9', 'NFKB1', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'GNG11', 'CREBBP', 'STAT3', 'JAK1', 'GNB1', 'GNAI1', 'NFKBIA', 'TGFBR2', 'GRB2', 'ADCY3', 'JUN', 'GNAI3', 'MAP2K1', 'PRKCB', 'IL6', 'GNB2', 'AKT1', 'SOS1', 'STAT1', 'PIK3R1'}, number: 34
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'PTEN', 'STAT3', 'JAK1', 'RALA', 'GRB2', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'PLD1', 'SOS1', 'RPS6KA5', 'NCOA3', 'STAT1', 'PIK3R1'}, number: 20
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'CUL1', 'GNAI2', 'BAX', 'BRAF', 'ADCY6', 'ADCY7', 'SOS2', 'ADCY9', 'BIRC3', 'NFKB1', 'RELA', 'PDGFA', 'SKP1', 'PIK3CB', 'PIK3CD', 'GNG11', 'CREBBP', 'STAT3', 'APAF1', 'GNB1', 'GNAI1', 'NFKBIA', 'CASP3', 'BCL2L1', 'GRB2', 'ADCY3', 'JUN', 'GNAI3', 'MAP2K1', 'PRKCB', 'IL6', 'GNB2', 'AKT1', 'HSP90AA1', 'SOS1', 'STAT1', 'BAD', 'PIK3R1'}, number: 40
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1', 'NFE2L2'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'FN1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'IFNAR2', 'TGFB2', 'RASGRP1', 'NFKBIA', 'TGFBR2', 'CASP3', 'GRB2', 'FAS', 'JUN', 'GNA12', 'MAP2K1', 'GADD45A', 'MAP2K2', 'LAMC2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'RPS6KA5', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'BAX', 'SOS2', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PMAIP1', 'PTEN', 'CDKN1B', 'CDK6', 'DVL1', 'APAF1', 'TCF7L2', 'CDK2', 'CASP3', 'GRB2', 'CCND1', 'FRAT1', 'CDKN2A', 'FAS', 'JUN', 'CCNE2', 'GADD45A', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'MAPK10', 'PIK3R1', 'RB1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'PRKCA', 'BAX', 'BRAF', 'SOS2', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'STAT3', 'RASSF1', 'CASP3', 'GRB2', 'CCND1', 'CDKN2A', 'MAP2K1', 'GADD45A', 'MAP2K2', 'DDB2', 'EML4', 'PRKCB', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'RB1'}, number: 31
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'FGFR1', 'SOS2', 'FN1', 'NFKB1', 'CXCL8', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'IFNAR2', 'TGFB2', 'RASGRP1', 'NFKBIA', 'TGFBR2', 'CASP3', 'GRB2', 'FAS', 'JUN', 'GNA12', 'MAP2K1', 'GADD45A', 'MAP2K2', 'LAMC2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'RPS6KA5', 'STAT1', 'FGFR2', 'MAPK10', 'PIK3R1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'BAX', 'SOS2', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PMAIP1', 'PTEN', 'CDKN1B', 'CDK6', 'DVL1', 'APAF1', 'TCF7L2', 'CDK2', 'CASP3', 'GRB2', 'CCND1', 'FRAT1', 'CDKN2A', 'FAS', 'JUN', 'CCNE2', 'GADD45A', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'SOS1', 'NFE2L2', 'GADD45G', 'CDKN1A', 'BAD', 'MAPK10', 'PIK3R1', 'RB1'}, number: 38
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1', 'NFE2L2'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'GNAI2', 'BRAF', 'ADCY6', 'ADCY7', 'SOS2', 'ADCY9', 'FN1', 'NFKB1', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'GNG11', 'STAT3', 'JAK1', 'GNB1', 'GNAI1', 'NFKBIA', 'GRB2', 'ADCY3', 'IFNGR2', 'GNAI3', 'MAP2K1', 'LAMC2', 'PRKCB', 'IL6', 'GNB2', 'AKT1', 'SOS1', 'STAT1', 'PIK3R1'}, number: 33
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'MLH1', 'BAX', 'RBX1', 'MSH2', 'MSH3', 'CDK4', 'PMAIP1', 'CDKN1B', 'CDK6', 'APAF1', 'MSH6', 'CDK2', 'CASP3', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'BRCA2', 'RB1'}, number: 24
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'COL4A4', 'COL4A2', 'LAMA1', 'FGFR1', 'SOS2', 'RPS6KB2', 'FN1', 'LAMB3', 'LAMA2', 'NFKB1', 'CDK4', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'KITLG', 'HSP90B1', 'PTEN', 'FGFR3', 'COL4A1', 'GNG11', 'CDKN1B', 'TGFA', 'IFNAR2', 'CDK6', 'COL4A3', 'JAK1', 'GNB1', 'RALA', 'RASSF1', 'LPAR3', 'RASGRP1', 'CDK2', 'BCL2L1', 'GRB2', 'CCND1', 'CCNE2', 'MAP2K1', 'MAP2K2', 'ETS1', 'LAMC2', 'PRKCB', 'IL6', 'COL4A5', 'AKT1', 'HSP90AA1', 'GNB2', 'ITGA6', 'PLD1', 'PDGFB', 'SOS1', 'IL7R', 'CDKN1A', 'FGFR2', 'ITGA3', 'BAD', 'MAPK10', 'PIK3R1'}, number: 61
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'BAX', 'SOS2', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PMAIP1', 'PTEN', 'CDKN1B', 'CDK6', 'DVL1', 'APAF1', 'TCF7L2', 'CDK2', 'CASP3', 'GRB2', 'CCND1', 'FRAT1', 'CDKN2A', 'FAS', 'JUN', 'CCNE2', 'GADD45A', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'MAPK10', 'PIK3R1', 'RB1'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'GNAI2', 'BRAF', 'ADCY6', 'ADCY7', 'BMP4', 'SOS2', 'ADCY9', 'NFKB1', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'GNG11', 'CREBBP', 'STAT3', 'JAK1', 'GNB1', 'GNAI1', 'NFKBIA', 'TGFBR2', 'GRB2', 'ADCY3', 'JUN', 'GNAI3', 'MAP2K1', 'PRKCB', 'IL6', 'GNB2', 'AKT1', 'SOS1', 'STAT1', 'PIK3R1'}, number: 34
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'BIRC5', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'PIK3CD', 'SOS1', 'GRB2', 'STAT1', 'CEBPA', 'BAD', 'PIK3R1', 'GNAQ', 'STAT3', 'JAK1', 'NFKB1'}, number: 17
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'NFKBIA', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 8
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'CAMK2G', 'FZD6', 'MLH1', 'TRAF4', 'BAX', 'RBX1', 'MSH2', 'SLC2A1', 'MSH3', 'CTBP1', 'KEAP1', 'NFKB1', 'MGST2', 'PMAIP1', 'PTEN', 'HMOX1', 'TXNRD2', 'TGFA', 'NQO1', 'TXNRD1', 'FZD5', 'APAF1', 'DVL1', 'TGFB2', 'GSTM3', 'MGST1', 'MSH6', 'TGFBR2', 'TCF7L2', 'CDK2', 'TXNRD3', 'GSTA4', 'MMP1', 'FZD1', 'LRP6', 'CCND1', 'FRAT1', 'PPARG', 'GSTP1', 'FAS', 'JUN', 'GADD45A', 'DVL3', 'DDB2', 'PRKCB', 'WNT5B', 'FZD9', 'HSP90AA1', 'PDGFB', 'NFE2L2', 'CDKN1A', 'MAPK10', 'BRCA2', 'FZD2'}, number: 55
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'PRKCA', 'BAX', 'RBX1', 'SOS2', 'SLC2A1', 'KEAP1', 'NFKB1', 'CDK4', 'MGST2', 'PIK3CB', 'PIK3CD', 'PMAIP1', 'PTEN', 'HMOX1', 'CDKN1B', 'TGFA', 'NQO1', 'CDK6', 'TXNRD1', 'DVL1', 'APAF1', 'GSTM3', 'TGFB2', 'TGFBR2', 'TCF7L2', 'CDK2', 'CASP3', 'TXNRD3', 'GSTA4', 'GRB2', 'CCND1', 'GSTP1', 'FRAT1', 'CDKN2A', 'FAS', 'CCNE2', 'JUN', 'GADD45A', 'DVL3', 'DDB2', 'WNT5B', 'AKT1', 'HSP90AA1', 'PDGFB', 'SOS1', 'NFE2L2', 'GADD45G', 'CDKN1A', 'BAD', 'MAPK10', 'PIK3R1', 'RB1'}, number: 55
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'GNAI2', 'BRAF', 'ADCY6', 'ADCY7', 'BMP4', 'SOS2', 'ADCY9', 'NFKB1', 'RELA', 'PIK3CB', 'PIK3CD', 'GNG11', 'HMOX1', 'TXNRD2', 'CREBBP', 'NQO1', 'STAT3', 'JAK1', 'TXNRD1', 'GNB1', 'MGST1', 'GNAI1', 'NFKBIA', 'TGFBR2', 'GRB2', 'ADCY3', 'JUN', 'GNAI3', 'MAP2K1', 'PRKCB', 'GNB2', 'AKT1', 'SOS1', 'NFE2L2', 'STAT1', 'MAPK10', 'PIK3R1'}, number: 39
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'XIAP', 'BRAF', 'BIRC3', 'NFKB1', 'RELA', 'PMAIP1', 'HMOX1', 'TXNRD2', 'NQO1', 'TXNRD1', 'APAF1', 'BIRC5', 'MGST1', 'NFKBIA', 'CASP3', 'BCL2L1', 'GRB2', 'CDKN2A', 'FAS', 'JUN', 'MAP2K1', 'AKT1', 'SOS1', 'NFE2L2', 'BAD', 'MAPK10', 'PIK3R1'}, number: 30
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'NFKB1', 'RELA', 'STAT3', 'NFKBIA', 'CASP3', 'GRB2', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'STAT1', 'BAD', 'MAPK10', 'PIK3R1'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'CAMK2G', 'TRAF5', 'SLC2A1', 'NFKB1', 'RELA', 'PIK3CB', 'PTEN', 'STAT3', 'JAK1', 'TGFB2', 'NFKBIA', 'IL13RA1', 'TGFBR2', 'CASP3', 'GRB2', 'ADCY3', 'IFNGR2', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'IL6', 'AKT1', 'RPS6KA5', 'STAT1', 'BAD', 'MAPK10', 'PIK3R1'}, number: 30
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IFNGR2', 'PRKCA', 'TGFB2', 'PRKCB', 'CAMK2G', 'IL6', 'AKT1', 'TGFBR2', 'IL13RA1', 'TRAF5', 'STAT1', 'SLC2A1', 'ADCY3', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'COL4A4', 'COL4A2', 'LAMA1', 'FGFR1', 'BMP4', 'EPAS1', 'SLC2A1', 'RPS6KB2', 'FN1', 'LAMB3', 'LAMA2', 'BAD', 'PDGFA', 'PIK3CB', 'PIK3CD', 'KITLG', 'HSP90B1', 'PTEN', 'FGFR3', 'COL4A1', 'GNG11', 'CDKN1B', 'IFNAR2', 'STAT3', 'JAK1', 'DVL1', 'GNB1', 'LPAR3', 'NCOA1', 'GRB2', 'FZD1', 'PPARG', 'FAS', 'MAP2K1', 'GADD45A', 'MAP2K2', 'LAMC2', 'IL6', 'WNT5B', 'AGT', 'AKT1', 'HSP90AA1', 'GNB2', 'ITGA6', 'PDGFB', 'SOS1', 'IL7R', 'CDKN1A', 'CEBPA', 'FGFR2', 'ITGA3', 'STAT1', 'PIK3R1', 'RB1'}, number: 57
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'COL4A4', 'COL4A2', 'LAMA1', 'FGFR1', 'SOS2', 'EPAS1', 'SLC2A1', 'RPS6KB2', 'FN1', 'LAMB3', 'LAMA2', 'NFKB1', 'CDK4', 'RELA', 'PDGFA', 'PIK3CB', 'PIK3CD', 'KITLG', 'HSP90B1', 'PTEN', 'FGFR3', 'COL4A1', 'GNG11', 'CDKN1B', 'TGFA', 'IFNAR2', 'CDK6', 'COL4A3', 'JAK1', 'GNB1', 'LPAR3', 'CDK2', 'BCL2L1', 'GRB2', 'CCND1', 'CCNE2', 'MAP2K1', 'MAP2K2', 'LAMC2', 'IL6', 'GNB2', 'COL4A5', 'AKT1', 'HSP90AA1', 'ITGA6', 'PDGFB', 'SOS1', 'IL7R', 'CDKN1A', 'FGFR2', 'ITGA3', 'BAD', 'PIK3R1'}, number: 56
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'CAMK2G', 'TRAF5', 'SLC2A1', 'NFKB1', 'PIK3CB', 'PTEN', 'STAT3', 'JAK1', 'TGFB2', 'TGFBR2', 'IL13RA1', 'IFNGR2', 'ADCY3', 'PRKCB', 'IL6', 'AKT1', 'STAT1', 'PIK3R1'}, number: 19
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1', 'SLC2A1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IFNGR2', 'PRKCA', 'TGFB2', 'PRKCB', 'CAMK2G', 'IL6', 'AKT1', 'TGFBR2', 'IL13RA1', 'TRAF5', 'STAT1', 'SLC2A1', 'ADCY3', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'APAF1', 'BIRC5', 'RELA', 'AKT1', 'BAX', 'XIAP', 'NFKBIA', 'PMAIP1', 'CASP3', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'FAS', 'JUN', 'BIRC3', 'NFKB1'}, number: 18
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CDK7', 'CUL1', 'CDKN2A', 'CDK2', 'CDKN1A', 'CCND1', 'MAD1L1'}, number: 8
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'SKP1', 'CUL1'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCNB2', 'RBL2', 'CDK4', 'SFN', 'MCM7', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'SMC1A', 'CDC25C', 'CDC25A', 'GADD45G', 'CDKN1A', 'RB1'}, number: 22
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'GADD45G', 'CDKN1A', 'CCND1', 'CDKN2A', 'RB1', 'CDK6', 'GADD45A'}, number: 9
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CDC25B', 'TGFB2', 'GADD45A'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCNB2', 'RBL2', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'SMC1A', 'CDC25C', 'CDC25A', 'GADD45G', 'CDKN1A', 'RB1'}, number: 21
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCNB2', 'RBX1', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'CDK2', 'CCNH', 'CCND1', 'CCNE2', 'GADD45A', 'CDK7', 'SMC1A', 'CDC25C', 'CDC25A', 'PCNA', 'GADD45G', 'CDKN1A', 'RB1'}, number: 23
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'RBL2', 'CCND1', 'CDK6', 'CCNE2'}, number: 8
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCNB2', 'RBL2', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'SMC1A', 'CDC25C', 'CDC25A', 'GADD45G', 'CDKN1A', 'RB1'}, number: 21
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDK7', 'SFN', 'TGFB2', 'CDC25C', 'CDC25A', 'CDK2', 'RBX1', 'CHEK1', 'CCNH', 'PCNA', 'CDKN1A', 'CCND1', 'GADD45A'}, number: 13
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'CCNB1', 'CCNB2', 'RBX1', 'RBL2', 'CDK4', 'SFN', 'CDK1', 'CHEK1', 'CDKN1B', 'CDK6', 'TGFB2', 'CDK2', 'CCND1', 'CDKN2A', 'CCNE2', 'GADD45A', 'SMC1A', 'CDC25C', 'CDC25A', 'GADD45G', 'CDKN1A', 'RB1'}, number: 23
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GADD45B', 'CDKN1B', 'CDKN1A', 'RBL2', 'RB1', 'GADD45A'}, number: 6
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'RBL2', 'CCND1', 'CDK6', 'CCNE2'}, number: 8
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'FDFT1', 'LBR', 'HMGCR', 'DHCR24', 'SC5D', 'MSMO1', 'FDPS', 'IDI1', 'EBP'}, number: 10
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DVL3', 'YAP1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'CREBBP', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'CREBBP', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'CREBBP', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'IQGAP1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CREBBP', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'RB1', 'MCM7', 'NFKB1'}, number: 4
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'RB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'RB1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'MSH2', 'RB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'RB1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'CREBBP', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'GDI1', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DVL3', 'MSH2', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'RB1', 'NFKB1'}, number: 3
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CREBBP', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RANBP9', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RANBP9', 'NFKB1'}, number: 2
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'AKT1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TSC1', 'AKT1', 'PDGFB', 'PTEN', 'AKT1S1', 'SLC2A1', 'DEPTOR', 'SETD2'}, number: 8
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT3', 'CREBBP'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'AKT1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'STAT3', 'CREBBP', 'AKT1'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'AKT1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'STAT3', 'CREBBP', 'AKT1'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1', 'GRB10', 'STAT3', 'PTEN'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'STAT3', 'CREBBP', 'AKT1'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'AKT1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'PTEN'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'AKT1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'PTEN'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TSC1', 'AKT1', 'PDGFB', 'PTEN', 'AKT1S1', 'DEPTOR'}, number: 6
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'PTEN'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC1', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'STAT3', 'CREBBP', 'AKT1'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SQSTM1', 'ME1', 'TGFB2', 'PDGFB', 'PTEN', 'AKT1S1', 'SLC2A1', 'DEPTOR'}, number: 8
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SQSTM1', 'ME1', 'TGFB2', 'AKT1', 'PDGFB', 'PTEN', 'SLC2A1'}, number: 7
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'STAT3', 'CREBBP', 'AKT1'}, number: 3
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'TSC1', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'TSC1', 'STAT3', 'AKT1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'AKT1', 'SHMT2', 'PTEN', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'STAT3'}, number: 10
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'STAT3'}, number: 8
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC1', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'TSC1', 'AKT1', 'PDGFB', 'PTEN', 'AKT1S1', 'SLC2A1', 'STAT3'}, number: 7
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TSC1', 'AKT1', 'PDGFB', 'PTEN', 'AKT1S1', 'SLC2A1'}, number: 6
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'SHMT2', 'PTEN', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'STAT3'}, number: 9
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PGM1', 'PSAT1', 'PHGDH', 'SLC2A1'}, number: 4
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'STAT3'}, number: 8
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'PPP2CA'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMC1A', 'CDK1'}, number: 2
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMC1A', 'CDK1'}, number: 2
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'SMC1A', 'CDK1'}, number: 2
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PPP2R5B', 'PPP2R1B', 'PPP2CA', 'PPP2R5A'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A', 'CDK1'}, number: 2
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMC1A', 'CDK1'}, number: 2
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PPP2CA'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PPP2CA'}, number: 1
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPP2R5B', 'PPP2R1B', 'PPP2CA', 'PPP2R5A'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPP2R5B', 'PPP2R1B', 'PPP2CA', 'PPP2R5A'}, number: 4
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AKT1', 'JUN', 'CCND1', 'PTEN'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'FOXO3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'FOXO3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1', 'JUN', 'PTEN'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CASP3', 'FOXO3', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'PTEN', 'CASP3', 'CCND1', 'JUN'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CASP3', 'FOXO3', 'CCND1', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'PTEN', 'CASP3', 'CCND1', 'JUN'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'FOXO3', 'AKT1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP3', 'CCND1', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'CCND1', 'PTEN'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'PTEN', 'CASP3', 'CCND1', 'JUN'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'FOXO3', 'JUN', 'AKT1'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'AKT1'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'MT1X', 'CCND1', 'PTEN'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'PTEN', 'CASP3', 'CCND1', 'JUN'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUN', 'MT1X', 'FOXO3', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'AKT1', 'XIAP', 'CASP3', 'MT1X', 'JUN'}, number: 5
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1', 'CASP3', 'JUN', 'ADAM17', 'FOXO3'}, number: 5
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'PTEN', 'CASP3', 'ADAM17', 'JUN'}, number: 6
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'PTEN'}, number: 3
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1', 'FOXO3', 'CCND1', 'PTEN'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PTEN'}, number: 2
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Copper Homeostasis WP3286, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'CASP3', 'XIAP', 'JUN', 'AKT1'}, number: 4
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'RPS6KA3'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'RPS6KB2', 'RPS6KA3', 'RPS6KA1'}, number: 3
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'RPS6KA3'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'RPS6KA3'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA3', 'RPS6KA1'}, number: 2
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'RPS6KA3'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'RPS6KA3'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RPS6KB2'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RPS6KA3', 'RPS6KA1'}, number: 2
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RPS6KA3', 'RPS6KA1'}, number: 2
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RPS6KB2'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RPS6KB2'}, number: 1
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Cytoplasmic Ribosomal Proteins WP477, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP3', 'AKT1', 'FAS', 'GADD45A'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BAX', 'BRCA1', 'CDK2', 'CDKN1A', 'CCND1'}, number: 7
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP3', 'AKT1', 'FAS', 'GADD45A'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP3', 'AKT1', 'FAS', 'GADD45A'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CASP3', 'APAF1', 'AKT1', 'BAX'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP3', 'AKT1', 'FAS', 'GADD45A'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 34
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'CASP3', 'GADD45G', 'CDKN1A', 'CCND1', 'RB1', 'CDK6', 'GADD45A'}, number: 12
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP3', 'AKT1', 'FAS', 'GADD45A'}, number: 4
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 34
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 34
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BRCA1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2'}, number: 9
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 34
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APAF1', 'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'BAX', 'SESN1', 'RPA2', 'BRCA1', 'PMAIP1', 'CDK2', 'CHEK1', 'CDKN1A', 'MRE11', 'CCND1', 'FAS', 'GADD45A'}, number: 18
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'AKT1', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 34
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CASP3', 'AKT1', 'CDK5'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CASP3', 'AKT1', 'CDK5'}, number: 3
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GADD45B', 'AKT1', 'CDKN1B', 'CDKN1A', 'RB1', 'FAS', 'GADD45A'}, number: 7
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BRCA1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2'}, number: 9
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'APAF1', 'BAX', 'AKT1', 'PMAIP1', 'CASP3', 'FAS'}, number: 6
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BRCA1', 'FOXM1', 'CDK2', 'BARD1'}, number: 4
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMC1A', 'CDC25C', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'BCL6', 'MRE11', 'RAD1'}, number: 10
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMC1A', 'CDC25C', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'BCL6', 'MRE11', 'RAD1'}, number: 10
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'FANCA', 'BRIP1', 'MLH1', 'FEN1', 'RPA1', 'MSH2', 'PARP1', 'CDK1', 'RPA2', 'EXO1', 'FANCI', 'WRN', 'CHEK1', 'XPA', 'CDK2', 'MRE11', 'SMC1A', 'CDC25C', 'BRCA1', 'USP1', 'PCNA', 'XRCC5', 'RAD1', 'BRCA2'}, number: 24
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1', 'CDK2'}, number: 2
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A', 'CDC25C', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'BCL6', 'MRE11', 'RAD1'}, number: 10
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FANCA', 'BRIP1', 'MLH1', 'FEN1', 'RPA1', 'MSH2', 'PARP1', 'RPA2', 'EXO1', 'FANCI', 'WRN', 'CHEK1', 'XPA', 'CDK2', 'MRE11', 'CDC25C', 'BRCA1', 'USP1', 'PCNA', 'XRCC5', 'BRCA2'}, number: 21
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMC1A', 'CDC25C', 'CDK1', 'RPA2', 'BRCA1', 'CDK2', 'CHEK1', 'BCL6', 'MRE11', 'RAD1'}, number: 10
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BRCA1', 'CDK2'}, number: 2
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLD3', 'POLE2', 'RFC2', 'LIG1', 'MLH1', 'RFC3', 'RPA2', 'MSH6', 'EXO1', 'RPA1', 'PCNA', 'POLE4', 'MSH2', 'RPA3', 'POLE', 'POLE3', 'RFC5', 'RFC4'}, number: 18
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLD3', 'POLE2', 'RFC2', 'LIG1', 'MLH1', 'RFC3', 'RPA2', 'MSH6', 'EXO1', 'RPA1', 'PCNA', 'POLE4', 'MSH2', 'RPA3', 'POLE', 'POLE3', 'RFC5', 'RFC4'}, number: 18
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2'}, number: 1
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK7', 'BRCA1'}, number: 2
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DDB2', 'RPA2', 'BRCA1', 'CHEK1', 'MRE11'}, number: 5
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DDB2', 'RPA2', 'BRCA1', 'CHEK1', 'MRE11'}, number: 5
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'FAN1', 'APEX2', 'FANCA', 'BRIP1', 'MLH1', 'MBD4', 'SMUG1', 'FEN1', 'RPA1', 'RBX1', 'UNG', 'POLE4', 'MSH2', 'MNAT1', 'PARP1', 'POLE3', 'MSH3', 'RFC5', 'APEX1', 'RFC3', 'REV3L', 'WDR48', 'EXO1', 'XRCC4', 'FANCI', 'RPA2', 'WRN', 'CHEK1', 'FANCE', 'POLE', 'NEIL3', 'XPA', 'FANCG', 'NTHL1', 'MSH6', 'XRCC1', 'CETN2', 'CCNH', 'RPA3', 'MRE11', 'GTF2H1', 'CENPS', 'DDB1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'CDK7', 'LIG1', 'BRCA1', 'FANCL', 'USP1', 'PCNA', 'XRCC5', 'FANCC', 'RAD23B', 'POLH', 'BRCA2'}, number: 59
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DDB2', 'RPA2', 'BRCA1', 'CHEK1', 'MRE11'}, number: 5
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'FAN1', 'APEX2', 'FANCA', 'BRIP1', 'MLH1', 'MBD4', 'SMUG1', 'FEN1', 'RPA1', 'RBX1', 'UNG', 'POLE4', 'MSH2', 'MNAT1', 'PARP1', 'POLE3', 'MSH3', 'RFC5', 'APEX1', 'RFC3', 'REV3L', 'WDR48', 'EXO1', 'XRCC4', 'FANCI', 'RPA2', 'WRN', 'CHEK1', 'FANCE', 'POLE', 'NEIL3', 'XPA', 'FANCG', 'NTHL1', 'MSH6', 'XRCC1', 'CETN2', 'CCNH', 'RPA3', 'MRE11', 'GTF2H1', 'CENPS', 'DDB1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'CDK7', 'LIG1', 'BRCA1', 'FANCL', 'USP1', 'PCNA', 'XRCC5', 'FANCC', 'RAD23B', 'POLH', 'BRCA2'}, number: 59
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DDB2', 'RPA2', 'BRCA1', 'RBX1', 'CHEK1', 'MRE11'}, number: 6
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'MCM7', 'CDK2'}, number: 3
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'POLD3', 'RFC2', 'RFC3', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'RPA3', 'POLE', 'RFC5', 'RFC4'}, number: 12
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'POLD3', 'RFC2', 'RFC3', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'RPA3', 'POLE', 'RFC5', 'RFC4'}, number: 12
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RPA2', 'CDK2'}, number: 2
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK2'}, number: 1
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'MRAS', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'RRAS', 'RRAS2', 'FGF2', 'GRB2', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'PDGFC', 'BAX', 'RPS6KB2', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'PTEN', 'TGFA', 'JAK1', 'FGF2', 'GRB2', 'EIF4EBP1', 'CCND1', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'SHC1'}, number: 23
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT3', 'JAK1'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'MRAS', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'RRAS', 'RRAS2', 'FGF2', 'GRB2', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS2', 'SHC4', 'PDGFA', 'PIK3CB', 'PIK3CD', 'STAT3', 'JAK1', 'GRB2', 'MAP2K1', 'PRKCB', 'IL6', 'AKT1', 'SOS1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'MRAS', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'RRAS', 'RRAS2', 'FGF2', 'GRB2', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS2', 'SHC4', 'PDGFA', 'PIK3CB', 'PIK3CD', 'STAT3', 'JAK1', 'GRB2', 'MAP2K1', 'PRKCB', 'IL6', 'AKT1', 'SOS1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'GAB1', 'MAP2K1', 'BRAF', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'EIF4EBP1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 17
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'BRAF', 'SOS2', 'SHC4', 'PDGFA', 'PIK3CB', 'PIK3CD', 'STAT3', 'BCL2L1', 'GRB2', 'MAP2K1', 'PRKCB', 'IL6', 'AKT1', 'SOS1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 21
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'MRAS', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'RRAS', 'RRAS2', 'FGF2', 'GRB2', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'CCND1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 15
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BAX', 'BRAF', 'SOS2', 'PIK3CB', 'PIK3CD', 'TGFA', 'STAT3', 'GRB2', 'CCND1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'SOS1', 'BAD', 'PIK3R1', 'FOXO3'}, number: 20
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'SOS2', 'MRAS', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'RRAS', 'RRAS2', 'FGF2', 'GRB2', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'PIK3R1'}, number: 22
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'CCND1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 15
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS2', 'SHC4', 'PDGFA', 'PIK3CB', 'PIK3CD', 'STAT3', 'JAK1', 'GRB2', 'MAP2K1', 'PRKCB', 'IL6', 'AKT1', 'SOS1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'CCND1', 'BAX'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'PDGFC', 'HRAS', 'SOS2', 'RPS6KB2', 'SHC4', 'MRAS', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'PTEN', 'TGFA', 'RRAS', 'JAK1', 'RRAS2', 'FGF2', 'BCL2L1', 'GRB2', 'EIF4EBP1', 'CCND1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'IL6', 'AKT1', 'GAB1', 'PDGFB', 'SOS1', 'FGFR2', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 35
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'CCND1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 15
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 10
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS2', 'SHC4', 'PDGFA', 'PIK3CB', 'PIK3CD', 'STAT3', 'JAK1', 'GRB2', 'MAP2K1', 'PRKCB', 'IL6', 'AKT1', 'SOS1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CD', 'SOS1', 'GRB2', 'JAK1', 'BAD', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'MAP2K1', 'AKT1'}, number: 4
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'BAX', 'PDGFB', 'PTEN', 'CCND1', 'TGFA', 'NRG1'}, number: 8
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BAX', 'SOS2', 'PIK3CB', 'PIK3CD', 'PTEN', 'TGFA', 'GRB2', 'CCND1', 'NRG1', 'AKT1', 'PDGFB', 'SOS1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'SHC4', 'HRAS', 'PRKCB', 'AKT1', 'MAP2K1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'SHC1', 'PIK3R1', 'FOXO3', 'STAT3', 'JAK1'}, number: 17
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'AKT1', 'GAB1', 'BRAF', 'SOS1', 'BCL2L1', 'GRB2', 'EIF4EBP1', 'BAD', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 14
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'SHC4', 'MAP2K2', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'BAD', 'SHC1', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 16
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SHC4', 'PIK3CB', 'PTEN', 'STAT3', 'JAK1', 'FGF2', 'GRB2', 'EIF4EBP1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'IL6', 'AKT1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'IL6', 'AKT1', 'FGF2', 'STAT3', 'JAK1'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 10
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'PDGFC', 'HRAS', 'RPS6KB2', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'PTEN', 'STAT3', 'JAK1', 'FGF2', 'GRB2', 'EIF4EBP1', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'BAD', 'PIK3R1', 'FOXO3'}, number: 24
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'PDGFC', 'HRAS', 'SOS2', 'RPS6KB2', 'PDGFA', 'PIK3CB', 'PIK3CD', 'FGFR3', 'PTEN', 'TGFA', 'JAK1', 'FGF2', 'BCL2L1', 'GRB2', 'EIF4EBP1', 'CCND1', 'MAP2K1', 'MAP2K2', 'IL6', 'AKT1', 'PDGFB', 'SOS1', 'FGFR2', 'BAD', 'PIK3R1', 'FOXO3'}, number: 28
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'IL6', 'AKT1', 'PIK3CB', 'PTEN', 'FGF2', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 11
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'IL6', 'AKT1', 'FGF2', 'STAT3', 'JAK1'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1', 'BAX', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FLNC', 'RELA', 'FLNB', 'AKT1', 'PIK3CB', 'PIK3CD', 'REL', 'PAK1', 'STAT1', 'IRF7', 'PIK3R1', 'RASA2', 'FLNA', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA6', 'AKT1', 'PIK3CB', 'PIK3CD', 'ACTG1', 'PAK1', 'STAT1', 'ITGA3', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT1', 'CREBBP', 'NFKB1'}, number: 3
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FLNC', 'RELA', 'FLNB', 'AKT1', 'PIK3CB', 'PIK3CD', 'REL', 'PAK1', 'STAT1', 'IRF7', 'PIK3R1', 'RASA2', 'FLNA', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'PAK1', 'STAT1', 'CREBBP', 'PIK3R1', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FLNC', 'RELA', 'FLNB', 'AKT1', 'PIK3CB', 'PIK3CD', 'REL', 'PAK1', 'STAT1', 'IRF7', 'PIK3R1', 'RASA2', 'FLNA', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'PAK1', 'STAT1', 'CREBBP', 'PIK3R1', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NEDD4', 'IQGAP1', 'AKT1', 'EPS15', 'PAK1', 'STAT1', 'PIK3R1', 'RAB5A', 'CAV1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'REL', 'PAK1', 'STAT1', 'CREBBP', 'PIK3R1', 'NFKB1'}, number: 10
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FLNC', 'RELA', 'FLNB', 'AKT1', 'PIK3CB', 'PIK3CD', 'REL', 'PAK1', 'STAT1', 'IRF7', 'PIK3R1', 'RASA2', 'FLNA', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PIK3R1', 'PIK3CB', 'PIK3CD', 'AKT1'}, number: 4
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FLNC', 'RELA', 'FLNB', 'AKT1', 'PIK3CB', 'PIK3CD', 'REL', 'PAK1', 'STAT1', 'IRF7', 'PIK3R1', 'RASA2', 'FLNA', 'NFKB1'}, number: 14
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2S1', 'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'NFKB1'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'PAK1', 'STAT1', 'PIK3R1', 'NFKB1'}, number: 8
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELA', 'ITGA6', 'AKT1', 'RASA2', 'PIK3CB', 'PIK3CD', 'ITGA5', 'REL', 'PAK1', 'ITGA3', 'PIK3R1', 'RAB5A', 'NFKB1'}, number: 13
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'PAK1', 'STAT1', 'CREBBP', 'PIK3R1', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CD', 'STAT1', 'PIK3R1', 'FLNA', 'NFKB1'}, number: 7
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'AKT1', 'REL', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2S1', 'AKT1', 'PIK3CB', 'PIK3CD', 'PIK3R1', 'NFKB1'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'PAK1', 'STAT1', 'CREBBP', 'PIK3R1', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF2S1', 'RELA', 'AKT1', 'ADAM17', 'STAT1', 'PIK3R1', 'NFKB1'}, number: 7
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EIF2S1', 'RELA', 'AKT1', 'PIK3CB', 'ADAM17', 'STAT1', 'PIK3R1', 'NFKB1'}, number: 8
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'STAT1', 'NFKB1'}, number: 3
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA6', 'AKT1', 'PIK3CB', 'PIK3CD', 'ITGA5', 'STAT1', 'ITGA3', 'PIK3R1'}, number: 8
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA6', 'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'ITGA5', 'ITGA3', 'PIK3R1', 'NFKB1'}, number: 9
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'STAT1', 'PIK3R1', 'NFKB1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'STAT1', 'NFKB1'}, number: 3
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'RELA', 'AKT1', 'IRF7', 'PIK3R1', 'NFKB1'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'TGFB2', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 8
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'MAP3K9', 'SOS1', 'GRB2', 'MAP2K1'}, number: 6
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'TGFB2', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 8
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3', 'MAP2K1'}, number: 10
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'TGFB2', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 8
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3', 'MAP2K1'}, number: 10
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'CFL1', 'SOS1', 'SOS2', 'GRB2', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3', 'MAP2K1'}, number: 10
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'TGFB2', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 8
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'TGFB2', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 8
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3', 'MAP2K1'}, number: 10
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'MAP2K1'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3', 'MAP2K1'}, number: 10
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'GRB2', 'SOS1', 'MAP2K1'}, number: 4
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K1'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'HRAS', 'TGFB2', 'SOS1', 'GRB2', 'SOS2'}, number: 6
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3', 'MAP2K1'}, number: 10
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'MAP2K1'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'CFL1', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'CFL1', 'TGFB2', 'GRB2', 'ADCY3', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'ADCY3', 'TGFB2', 'CFL1'}, number: 3
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'MAP2K1'}, number: 5
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'LBR', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 7
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'ADCY3', 'TGFB2', 'CFL1'}, number: 3
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'ADCY3', 'TGFB2', 'CFL1'}, number: 3
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'HRAS', 'TGFB2', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'MAPK13', 'MAP2K3', 'FN1', 'MAP2K1'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'COL4A4', 'FZD6', 'COL4A2', 'EED', 'LATS2', 'FN1', 'MAP2K6', 'PIK3CB', 'PIK3CD', 'COL4A1', 'SPARC', 'COL4A3', 'SUZ12', 'FZD5', 'FOXM1', 'RBBP4', 'PAK1', 'GRB2', 'FZD1', 'LRP6', 'EZH2', 'MAP2K1', 'MAP2K2', 'WNT5B', 'COL4A5', 'AKT1', 'FZD9', 'SOS1', 'MAP2K3', 'SHC1', 'FZD2'}, number: 32
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'ZEB2', 'TGFBR2'}, number: 3
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'HRAS', 'TGFB2', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'MAPK13', 'MAP2K3', 'FN1', 'MAP2K1'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'ZEB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 13
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'HRAS', 'TGFB2', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'MAPK13', 'MAP2K3', 'FN1', 'MAP2K1'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'ZEB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 13
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'TWIST1', 'SOS1', 'PAK1', 'GRB2', 'SOS2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 11
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'MAP2K3', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 13
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'HRAS', 'TGFB2', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'MAPK13', 'MAP2K3', 'FN1', 'MAP2K1'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'WNT5B', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'SHC1'}, number: 10
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'HRAS', 'TGFB2', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'MAPK13', 'MAP2K3', 'FN1', 'MAP2K1'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'WNT5B', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'SHC1'}, number: 10
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'FN1', 'SHC1', 'MAP2K1'}, number: 12
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HRAS', 'COL4A4', 'COL4A2', 'SOS2', 'FN1', 'PIK3CB', 'PIK3CD', 'COL4A1', 'COL4A3', 'PAK1', 'GRB2', 'MAP2K1', 'MAP2K2', 'COL4A5', 'AKT1', 'SOS1', 'ITGA5', 'PIK3R1', 'SHC1'}, number: 19
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'WNT5B', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'SHC1'}, number: 10
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'ZEB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 13
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CD', 'SOS1', 'GRB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 8
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'AKT1', 'MAP2K3', 'PIK3R1', 'MAP2K1'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FZD5', 'TGFB2', 'WNT5B', 'FZD6', 'FZD9', 'TGFBR2', 'FZD1', 'LRP6', 'FZD2'}, number: 9
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'TGFB2', 'WNT5B', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'SHC1'}, number: 12
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'TGFBR2', 'SOS1', 'PAK1', 'SOS2', 'GRB2', 'ZEB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 13
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 7
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'SOS1', 'GRB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 8
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'TGFB2', 'AKT1', 'PIK3CB', 'TGFBR2', 'GRB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 10
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TGFB2', 'TGFBR2', 'AKT1'}, number: 3
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'COL4A4', 'WNT5B', 'AKT1', 'TWIST1', 'PIK3R1', 'PIK3CB', 'COL4A2', 'PIK3CD', 'SOS1', 'ITGA5', 'COL4A1', 'GRB2', 'FZD1', 'FN1', 'MAP2K1'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'COL4A4', 'COL4A5', 'AKT1', 'PIK3R1', 'MAP2K1', 'PIK3CB', 'COL4A2', 'PIK3CD', 'SOS1', 'ITGA5', 'COL4A1', 'SOS2', 'GRB2', 'FN1', 'COL4A3'}, number: 17
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'PIK3CB', 'TGFBR2', 'PIK3R1', 'SHC1'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TGFB2', 'TGFBR2', 'AKT1'}, number: 3
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSTM3', 'GSTP1'}, number: 2
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSTM3', 'CEBPB', 'GSTP1'}, number: 3
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IDI1', 'CEBPB'}, number: 2
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Exercise Induced Circadian Regulation WP410, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AIFM2'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AIFM2'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AIFM2'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AIFM2'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ATG5', 'MAP1LC3B'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FTH1', 'SLC7A11', 'GSS', 'ACSL5', 'GCLC', 'ACSL1', 'SLC39A14', 'GCLM', 'HMOX1', 'FTL', 'SAT1', 'TXNRD1'}, number: 12
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'GCLM', 'GCLC', 'SLC39A14', 'HMOX1', 'FTL', 'FTH1', 'TXNRD1'}, number: 8
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HMOX1', 'GCLC', 'TXNRD1'}, number: 3
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'AIFM2', 'HMOX1', 'GCLC', 'TXNRD1'}, number: 4
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FDFT1', 'CISD1', 'HMGCR', 'ACSL1'}, number: 4
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AIFM2'}, number: 1
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'SMUG1'}, number: 1
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC4', 'SMUG1', 'ABCC3', 'CES2'}, number: 4
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC4', 'ABCC3', 'CES2'}, number: 3
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'CDK7', 'CDK2', 'CDKN1A', 'CCND1', 'CDKN2A'}, number: 6
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'MCM7', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'RB1', 'CDK6', 'CCNE2', 'GADD45A'}, number: 16
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'CCND1', 'CDKN2A', 'RB1', 'CDK6', 'GADD45A'}, number: 7
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'GADD45A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'RB1', 'CDK6', 'CCNE2', 'GADD45A'}, number: 15
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CCNB1', 'RPA1', 'MNAT1', 'CDK4', 'CDK1', 'RPA2', 'CDKN1B', 'POLE', 'CDK6', 'CDK2', 'CCNH', 'RPA3', 'CCND1', 'CCNE2', 'GADD45A', 'CDK7', 'CDC25A', 'PCNA', 'CDKN1A', 'RB1'}, number: 21
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'CREB3', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CREB3L4', 'CDK6', 'CCNE2'}, number: 9
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'RB1', 'CDK6', 'CCNE2', 'GADD45A'}, number: 15
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'CDK7', 'CDC25A', 'RPA2', 'RPA1', 'CDK2', 'PCNA', 'CCNH', 'RPA3', 'MNAT1', 'CDKN1A', 'CCND1', 'POLE', 'GADD45A'}, number: 14
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNG2', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDKN2A', 'RB1', 'CDK6', 'CCNE2', 'GADD45A'}, number: 15
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CREB3', 'CDKN1B', 'CDKN1A', 'CREB3L4', 'RB1', 'GADD45A'}, number: 6
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CREB3', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CREB3L4', 'CDK6', 'CCNE2'}, number: 9
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AURKA'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'E2F7', 'AURKA'}, number: 2
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 12
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CXCL8', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'LAMTOR3', 'ARRB1', 'NFKBIA', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 16
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'CD44', 'PAK1', 'GRB2', 'EIF4EBP1', 'CCND1', 'CDKN1A', 'CDKN2A', 'JUN', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 14
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'PRKD1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 13
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'NFKB1', 'JUN', 'STAT3', 'SERPINE1'}, number: 5
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'PRKD1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 13
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CXCL8', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'LAMTOR3', 'ARRB1', 'NFKBIA', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 16
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'CXCL8', 'HRAS', 'RELA', 'AKT1', 'ARRB1', 'NFKBIA', 'FOXO3', 'SOS1', 'PXN', 'PAK1', 'GRB2', 'JUN', 'SHC1', 'PIK3R1', 'SERPINE1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 18
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CXCL8', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'LAMTOR3', 'ARRB1', 'NFKBIA', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 16
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'ARRB1', 'NFKBIA', 'FOXO3', 'SOS1', 'PXN', 'PAK1', 'GRB2', 'JUN', 'SHC1', 'PIK3R1', 'SERPINE1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'AKT1', 'SOS1', 'PAK1', 'GRB2', 'EIF4EBP1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'MAP2K1'}, number: 12
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'PRKD1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 13
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'HRAS', 'BIRC3', 'NFKB1', 'RELA', 'PXN', 'STAT3', 'ARRB1', 'NFKBIA', 'CASP3', 'PAK1', 'GRB2', 'BCL2L1', 'JUN', 'MAP2K1', 'AKT1', 'SOS1', 'BAD', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 20
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CXCL8', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'LAMTOR3', 'ARRB1', 'NFKBIA', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 16
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1', 'FOXO3', 'SOS1', 'CASP3', 'CDKN1B', 'GRB2', 'CDKN1A', 'CCND1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 15
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'AKT1', 'SOS1', 'CASP3', 'GRB2', 'CDKN1A', 'CCND1', 'BAD', 'CDKN2A', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 14
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CXCL8', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'LAMTOR3', 'ARRB1', 'NFKBIA', 'SOS1', 'CASP3', 'PAK1', 'GRB2', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 16
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1', 'FOXO3', 'SOS1', 'CASP3', 'CDKN1B', 'GRB2', 'CDKN1A', 'CCND1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 15
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'PRKD1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 13
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'ARRB1', 'NFKBIA', 'SOS1', 'PXN', 'PAK1', 'GRB2', 'SHC1', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 15
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'CASP3', 'CDKN1B', 'CDKN1A', 'CCND1'}, number: 5
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BAD', 'RELA', 'AKT1', 'SOS1', 'CDKN1B', 'PAK1', 'GRB2', 'EIF4EBP1', 'CCND1', 'BCL2L1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 18
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1', 'FOXO3', 'SOS1', 'CASP3', 'CDKN1B', 'GRB2', 'CDKN1A', 'CCND1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 15
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'ARRB1', 'NFKBIA', 'FOXO3', 'SOS1', 'PXN', 'PAK1', 'GRB2', 'JUN', 'SHC1', 'PIK3R1', 'SERPINE1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'GRB2', 'BAD', 'SHC1', 'PIK3R1', 'GNAQ', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 13
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'JUN', 'CDKN1A', 'CCND1', 'PPARG', 'SERPINE1', 'NFKB1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BAD', 'AKT1', 'YES1', 'SOS1', 'FOXO3', 'CASP3', 'CDKN1B', 'GRB2', 'JUN', 'CCND1', 'CDKN1A', 'CDKN2A', 'PIK3R1', 'FYN', 'SHC1', 'NFKB1'}, number: 18
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'ARRB1', 'NFKBIA', 'FOXO3', 'SOS1', 'PXN', 'PAK1', 'GRB2', 'JUN', 'SHC1', 'PIK3R1', 'SERPINE1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HRAS', 'BIRC3', 'NFKB1', 'RELA', 'PRKD1', 'BIRC5', 'NFKBIA', 'CASP3', 'BCL2L1', 'GRB2', 'EIF4EBP1', 'CDKN2A', 'JUN', 'MAP2K1', 'AKT1', 'SOS1', 'BAD', 'PIK3R1', 'SHC1'}, number: 19
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'FOXO3', 'SOS1', 'CASP3', 'JUN', 'GRB2', 'EIF4EBP1', 'BAD', 'SHC1', 'PIK3R1', 'FYN', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'FOXO3', 'CASP3', 'JUN', 'GRB2', 'EIF4EBP1', 'BAD', 'SHC1', 'PIK3R1', 'FYN', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 17
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'PRKCA', 'STAT3', 'NFKB1'}, number: 4
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'AKT1', 'FOXO3', 'KLF4', 'SOS1', 'CDKN1B', 'GRB2', 'EIF4EBP1', 'CDKN1A', 'BAD', 'PPARG', 'PIK3R1', 'SERPINE1', 'STAT3', 'MAP2K1'}, number: 15
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'BAD', 'RELA', 'AKT1', 'SOS1', 'CDKN1B', 'GRB2', 'EIF4EBP1', 'CCND1', 'BCL2L1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'MAP2K1', 'NFKB1'}, number: 16
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 12
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'AKT1', 'SHC1', 'PIK3R1', 'STAT3', 'NFKB1'}, number: 6
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'PRKCA', 'STAT3', 'NFKB1'}, number: 4
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'BCL2L1', 'PRKD1', 'BAD', 'CDKN2A', 'PIK3R1', 'JUN', 'BIRC3', 'NFKB1'}, number: 13
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'PRKCA', 'HRAS', 'MAP2K2', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'PRKCZ', 'FGFR1', 'GRB2', 'MAP2K3', 'FGFR2', 'PIK3R1', 'MAP2K1'}, number: 16
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'FGFR1', 'MAP2K6', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'TSC1', 'CDK2', 'GRB2', 'CCND1', 'CDKN2A', 'MAP2K1', 'MAP2K2', 'AKT1', 'BRCA1', 'CDKN1A', 'MAP2K3', 'FGFR2'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'PRKCA', 'HRAS', 'MAP2K2', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'PRKCZ', 'FGFR1', 'GRB2', 'MAP2K3', 'FGFR2', 'PIK3R1', 'MAP2K1'}, number: 16
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'PIK3CD', 'PIK3CB', 'PRKCZ', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 12
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'PRKCA', 'HRAS', 'MAP2K2', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'PRKCZ', 'FGFR1', 'GRB2', 'MAP2K3', 'FGFR2', 'PIK3R1', 'MAP2K1'}, number: 16
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'PIK3CD', 'PIK3CB', 'PRKCZ', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 12
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'SPRY2', 'AKT1', 'GAB1', 'BRAF', 'PTEN', 'PRKCZ', 'GRB2', 'PIK3R1', 'PIK3C2B', 'MAP2K1'}, number: 14
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'PRKCZ', 'GRB2', 'MAP2K3', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 14
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'PRKCA', 'HRAS', 'MAP2K2', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'PRKCZ', 'FGFR1', 'GRB2', 'MAP2K3', 'FGFR2', 'PIK3R1', 'MAP2K1'}, number: 16
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'PIK3C2B', 'CDK2', 'GRB2', 'CCND1', 'CDKN2A', 'AKT1', 'BRCA1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'RB1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'BRAF', 'CDK4', 'PIK3CB', 'PIK3CD', 'CDK6', 'GRB2', 'CCND1', 'CDKN2A', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'RB1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'PRKCA', 'HRAS', 'MAP2K2', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'PRKCZ', 'FGFR1', 'GRB2', 'MAP2K3', 'FGFR2', 'PIK3R1', 'MAP2K1'}, number: 16
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'PIK3C2B', 'CDK2', 'GRB2', 'CCND1', 'CDKN2A', 'AKT1', 'BRCA1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'RB1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'PIK3CD', 'PIK3CB', 'PRKCZ', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 12
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'AKT1', 'MSH6', 'BRCA1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'BRCA2', 'RB1'}, number: 11
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'FGFR1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'TSC1', 'CDK2', 'GRB2', 'CCND1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'GAB1', 'BRCA1', 'CDKN1A', 'FGFR2', 'PIK3R1', 'FOXO3'}, number: 24
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'PIK3C2B', 'CDK2', 'GRB2', 'CCND1', 'CDKN2A', 'AKT1', 'BRCA1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'RB1'}, number: 19
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'GRB2', 'MAP2K1'}, number: 8
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'PIK3CD', 'PIK3CB', 'PRKCZ', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 12
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CD', 'GRB2', 'PIK3R1', 'MAP2K1'}, number: 6
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'AKT1', 'PRKCZ', 'MAP2K3', 'PIK3R1', 'MAP2K1'}, number: 7
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'MSH6', 'BRCA1', 'CDK2', 'PTEN', 'CDKN1A', 'CCND1', 'BRCA2'}, number: 9
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'PIK3C2B', 'CDK2', 'GRB2', 'CCND1', 'CDKN2A', 'AKT1', 'BRCA1', 'CDKN1A', 'PIK3R1', 'FOXO3', 'RB1'}, number: 20
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'PIK3CD', 'PIK3CB', 'PRKCZ', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 12
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'GRB2', 'CDKN2A', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MAP2K2', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 11
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PTEN', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 11
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'BRAF', 'GRB2', 'MAP2K1'}, number: 8
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MAP2K2', 'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'PTEN', 'FGFR1', 'CDKN1B', 'GRB2', 'CDKN1A', 'FGFR2', 'PIK3R1', 'PIK3C2B', 'FOXO3', 'MAP2K1', 'RB1'}, number: 18
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'FGFR1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'PIK3C2B', 'TSC1', 'CDK2', 'GRB2', 'CCND1', 'MAP2K1', 'MAP2K2', 'AKT1', 'BRCA1', 'CDKN1A', 'FGFR2', 'PIK3R1', 'FOXO3'}, number: 23
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'PIK3CB', 'PTEN', 'PIK3R1'}, number: 6
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1'}, number: 3
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'CDKN2A', 'PIK3R1', 'AKT1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CCL2', 'IL11', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCL2', 'JUN', 'CUL1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CCL2', 'IL11', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'CCL2', 'IL11', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CCL2', 'IL11', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL11', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CUL1', 'HSP90AA1', 'TNFAIP3', 'CCL2', 'IL11', 'JUN', 'BIRC3'}, number: 7
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CCL2', 'IL11', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'GADD45B'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CCL2', 'IL11', 'JUN'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'IL11'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'HSP90AA1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL11', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'CCL2', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCL2', 'JUN', 'HSP90AA1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'JUN', 'HSP90AA1'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'LRRC8A', 'JUN'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'LRRC8A'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GADD45B', 'HSP90AA1'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HSP90AA1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'LRRC8A'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'LRRC8A'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'JUN', 'BIRC3'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'FGFR3', 'REL', 'FGFR1', 'FGFR2', 'PIK3R1', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'TSC1', 'HRAS', 'AKT1', 'PIK3CB', 'FGFR3', 'PTEN', 'FGFR1', 'CDKN1A', 'EIF4EBP1', 'CCND1', 'FGFR2', 'RPS6KB2', 'CDKN2A', 'NFKB1'}, number: 15
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FKBP1A', 'HRAS', 'TGFBR2', 'NFKB1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'FGFR3', 'REL', 'FGFR1', 'FGFR2', 'PIK3R1', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'PIK3R1', 'FKBP1A', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'FGFR3', 'REL', 'FGFR1', 'FGFR2', 'PIK3R1', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'PIK3R1', 'FKBP1A', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RICTOR', 'HRAS', 'AKT1', 'GAB1', 'PTEN', 'EIF4EBP1', 'PIK3R1'}, number: 7
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'REL', 'PIK3R1', 'NFKB1'}, number: 8
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'FGFR3', 'REL', 'FGFR1', 'FGFR2', 'PIK3R1', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'CDK4', 'HRAS', 'AKT1', 'SESN1', 'PIK3CB', 'PTEN', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'CDK4', 'HRAS', 'AKT1', 'PIK3CB', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1'}, number: 11
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'FGFR3', 'REL', 'FGFR1', 'FGFR2', 'PIK3R1', 'NFKB1'}, number: 12
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'CDK4', 'HRAS', 'AKT1', 'SESN1', 'PIK3CB', 'PTEN', 'NFE2L2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1', 'NFKB1'}, number: 15
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'PIK3R1', 'NFKB1'}, number: 7
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'AKT1', 'SESN1', 'CDKN1A', 'CCND1', 'CDK6', 'RB1'}, number: 7
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'HRAS', 'FGFR1', 'RPS6KB2', 'DDIT4', 'NFKB1', 'CDK4', 'RELA', 'PIK3CB', 'FGFR3', 'PTEN', 'REL', 'CDK6', 'TSC1', 'EIF4EBP1', 'CCND1', 'AKT1', 'GAB1', 'CDKN1A', 'FGFR2', 'PIK3R1'}, number: 21
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'CDK4', 'HRAS', 'AKT1', 'SESN1', 'PIK3CB', 'PTEN', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1', 'NFKB1'}, number: 14
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'EIF4EBP1'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'PIK3R1', 'FKBP1A', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'PIK3R1', 'RELA', 'NFKB1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'AKT1', 'REL', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SESN1', 'TGFBR2', 'PTEN', 'NFE2L2', 'SESN2', 'CDKN1A', 'CCND1', 'KEAP1', 'DDIT4', 'NFKB1'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'CDK4', 'HRAS', 'AKT1', 'SESN1', 'PIK3CB', 'TGFBR2', 'PTEN', 'NFE2L2', 'CDKN1A', 'CCND1', 'CDKN2A', 'PIK3R1', 'CDK6', 'KEAP1', 'RB1', 'NFKB1'}, number: 17
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'NFE2L2', 'PIK3R1', 'FKBP1A', 'NFKB1'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'RELA', 'AKT1', 'GAB1', 'NFE2L2', 'EIF4EBP1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 11
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'RELA', 'AKT1', 'GAB1', 'EIF4EBP1', 'PIK3R1', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'TGFBR2', 'PTEN', 'EIF4EBP1', 'PIK3R1', 'NFKB1'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'TGFBR2', 'NFKB1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'GAB1', 'EIF4EBP1'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'PIK3CB', 'FGFR3', 'PTEN', 'FGFR1', 'CDKN1A', 'EIF4EBP1', 'FGFR2', 'RPS6KB2', 'PIK3R1', 'DDIT4', 'RB1'}, number: 15
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'HRAS', 'FGFR1', 'RPS6KB2', 'DDIT4', 'NFKB1', 'CDK4', 'RELA', 'PIK3CB', 'FGFR3', 'PTEN', 'CDK6', 'TSC1', 'EIF4EBP1', 'CCND1', 'AKT1', 'CDKN1A', 'FGFR2', 'PIK3R1'}, number: 19
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'TGFBR2', 'PTEN', 'PIK3R1', 'NFKB1'}, number: 6
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'TGFBR2', 'NFKB1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'RELA', 'AKT1', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'NLK', 'SOS1', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1'}, number: 9
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'SOS1', 'GRB2', 'JAK1', 'STAT1', 'SHC1', 'MAP2K1'}, number: 9
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT3', 'STAT1', 'CREBBP', 'JAK1'}, number: 4
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'NLK', 'SOS1', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1'}, number: 9
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'IL6', 'AKT1', 'SOS1', 'GRB2', 'CREBBP', 'JAK1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'NLK', 'SOS1', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1'}, number: 9
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL6', 'AKT1', 'SOS1', 'GRB2', 'CREBBP', 'JAK1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'GAB1', 'SOS1', 'GRB2', 'JAK1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'IL6', 'AKT1', 'SOS1', 'BCL2L1', 'GRB2', 'CREBBP', 'STAT1', 'BAD', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 12
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'NLK', 'SOS1', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1'}, number: 9
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1', 'SOS1', 'GRB2', 'BAD', 'PIK3R1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'SOS1', 'GRB2', 'BAD', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 8
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'NLK', 'SOS1', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1'}, number: 9
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'SOS1', 'GRB2', 'BAD', 'PIK3R1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'IRF1', 'IL6', 'AKT1', 'SOS1', 'GRB2', 'JAK1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'GAB1', 'SOS1', 'BCL2L1', 'GRB2', 'JAK1', 'BAD', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 12
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1', 'SOS1', 'GRB2', 'BAD', 'PIK3R1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1', 'GAB1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL6', 'AKT1', 'SOS1', 'GRB2', 'CREBBP', 'JAK1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'SOS1', 'GRB2', 'JAK1', 'STAT1', 'BAD', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'MAP2K1', 'AKT1'}, number: 4
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUNB', 'NLK'}, number: 2
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'SOS1', 'GRB2', 'BAD', 'PIK3R1', 'SHC1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUNB', 'AKT1', 'SOS1', 'GRB2', 'CREBBP', 'JAK1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'JUNB', 'IRF1', 'AKT1', 'GAB1', 'SOS1', 'BCL2L1', 'GRB2', 'BAD', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'GAB1', 'SOS1', 'GRB2', 'STAT1', 'BAD', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'GRB2', 'JAK1', 'STAT1', 'BAD', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IL6', 'AKT1', 'STAT1', 'STAT3', 'JAK1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1', 'GAB1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AGT', 'AKT1', 'NCOA1', 'SOS1', 'GRB2', 'JAK1', 'STAT1', 'BAD', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 13
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'IL6', 'AKT1', 'SOS1', 'BCL2L1', 'GRB2', 'JAK1', 'BAD', 'PIK3R1', 'MAP2K1'}, number: 10
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'IL6', 'AKT1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 7
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IL6', 'AKT1', 'STAT1', 'STAT3', 'JAK1'}, number: 5
Term: IL6 Signaling WP364, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'IRF1', 'AKT1', 'BCL2L1', 'BAD', 'PIK3R1'}, number: 5
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAPK10', 'PIK3R1', 'JUN'}, number: 5
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'MAP3K5', 'MAP2K6', 'RPS6KA3', 'MAP3K13', 'PIK3CB', 'PIK3CD', 'MAP3K12', 'MAP3K1', 'GRB2', 'MAPK13', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 23
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'MAP3K9', 'MAP3K5', 'SLC2A1', 'RPS6KB2', 'MAP2K6', 'RPS6KA3', 'PIK3CB', 'PIK3CD', 'PTEN', 'TSC1', 'RPS6KA1', 'MAP3K1', 'GRB2', 'EIF4EBP1', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'SHC1'}, number: 24
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAP3K5', 'MAPK10', 'PIK3R1', 'JUN'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'JUN'}, number: 2
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAP3K5', 'MAPK10', 'PIK3R1', 'JUN'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'MAP3K5', 'MAP2K6', 'RPS6KA3', 'MAP3K13', 'PIK3CB', 'PIK3CD', 'MAP3K12', 'MAP3K1', 'GRB2', 'MAPK13', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 23
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PRKCZ', 'SOS2', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'MAP3K5', 'MAP2K6', 'RPS6KA3', 'MAP3K13', 'PIK3CB', 'PIK3CD', 'MAP3K12', 'MAP3K1', 'GRB2', 'MAPK13', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 23
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PRKCZ', 'SOS2', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'RPS6KA3', 'PTEN', 'GRB10', 'STXBP1', 'RPS6KA1', 'MAP3K1', 'GRB2', 'EIF4EBP1', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'GAB1', 'SOS1', 'RPS6KA5', 'PIK3R1', 'SHC1'}, number: 22
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAP3K5', 'MAPK10', 'PIK3R1', 'JUN'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'MAP3K1', 'PRKCZ', 'SOS2', 'MAP3K5', 'GRB2', 'MAP2K3', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1'}, number: 18
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'MAP3K5', 'MAP2K6', 'RPS6KA3', 'MAP3K13', 'PIK3CB', 'PIK3CD', 'MAP3K12', 'MAP3K1', 'GRB2', 'MAPK13', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 23
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PTEN', 'MAP3K1', 'SOS2', 'GRB2', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 13
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SOS2', 'MAP3K5', 'MAP2K6', 'RPS6KA3', 'MAP3K13', 'PIK3CB', 'PIK3CD', 'MAP3K12', 'MAP3K1', 'GRB2', 'MAPK13', 'JUN', 'PRKCZ', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'RPS6KA5', 'MAP2K3', 'MAPK10', 'PIK3R1'}, number: 23
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PTEN', 'MAP3K1', 'SOS2', 'GRB2', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAP3K5', 'MAPK10', 'PIK3R1', 'JUN'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PRKCZ', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'SHC1', 'MAP2K1'}, number: 13
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SGK2', 'SOS2', 'RPS6KB2', 'GYS1', 'PIK3CB', 'PIK3CD', 'SGK1', 'PTEN', 'TSC1', 'GRB2', 'EIF4EBP1', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'GAB1', 'SOS1', 'MAPK10', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 23
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PTEN', 'MAP3K1', 'SOS2', 'GRB2', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'TSC1', 'HRAS', 'RPS6KA1', 'AKT1', 'GAB1', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 10
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PRKCZ', 'SOS2', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1'}, number: 14
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'AKT1', 'PIK3CD', 'SOS1', 'GRB2', 'PIK3R1', 'SHC1', 'MAP2K1'}, number: 9
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'AKT1', 'MAP2K1', 'MAP3K1', 'MAP2K3', 'PIK3R1', 'JUN', 'PRKCZ'}, number: 9
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'PTEN', 'SLC2A1', 'MAPK10', 'JUN', 'SORBS1'}, number: 7
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PTEN', 'MAP3K1', 'SOS2', 'GRB2', 'SLC2A1', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1'}, number: 16
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'FOXO3', 'PRKCZ', 'SOS2', 'GRB2', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1'}, number: 15
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'TSC1', 'HRAS', 'RPS6KA1', 'AKT1', 'GAB1', 'SOS1', 'MAP3K1', 'GRB2', 'MAP3K5', 'EIF4EBP1', 'MAPK10', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1'}, number: 15
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'RPS6KA3', 'PTPRF', 'TSC1', 'IRS2', 'RPS6KA1', 'MAP3K1', 'GRB2', 'EIF4EBP1', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'GAB1', 'SOS1', 'RPS6KA5', 'MAPK10', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 20
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SLC2A1', 'RPS6KA3', 'PIK3CB', 'PTEN', 'PTPRF', 'IRS2', 'RPS6KA1', 'MAP3K1', 'GRB2', 'EIF4EBP1', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'RPS6KA5', 'MAPK10', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 22
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'SLC2A1', 'AKT1'}, number: 4
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'TSC1', 'HRAS', 'RPS6KA1', 'AKT1', 'GAB1', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 10
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'IRS2', 'HRAS', 'GYS1', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'PTEN', 'GRB2', 'EIF4EBP1', 'SLC2A1', 'RPS6KB2', 'PIK3R1', 'FOXO3', 'MAP2K1'}, number: 17
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'SGK2', 'SOS2', 'SLC2A1', 'RPS6KB2', 'GYS1', 'PIK3CB', 'PIK3CD', 'SGK1', 'PTEN', 'TSC1', 'IRS2', 'GRB2', 'EIF4EBP1', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'PIK3R1', 'FOXO3'}, number: 21
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAPK10', 'PIK3R1', 'JUN'}, number: 5
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'PIK3CB', 'PTEN', 'SLC2A1', 'PIK3R1', 'SHC1'}, number: 8
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'SLC2A1', 'AKT1'}, number: 4
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1', 'MAP3K1', 'MAP3K5', 'MAPK10', 'PIK3R1', 'JUN'}, number: 6
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CASP3', 'AKT1', 'BAD', 'BAX'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CDC25B', 'AKT1', 'CASP3', 'STAT1', 'MAP3K5'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'BAX', 'AKT1', 'BRCA1', 'PTEN', 'BARD1', 'CDK2', 'CDKN1A', 'MAP3K5', 'STAT1', 'JAK1'}, number: 11
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'MAP3K5', 'BAD'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'STAT1', 'JAK1'}, number: 2
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'MAP3K5', 'BAD'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CDC25B', 'AKT1', 'CASP3', 'STAT1', 'MAP3K5'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'MMP1', 'STAT1', 'JAK1', 'AKT1'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CDC25B', 'AKT1', 'CASP3', 'STAT1', 'MAP3K5'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'STAT1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1', 'STAT1', 'JAK1', 'PTEN'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'MAP3K5', 'BAD'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'STAT1', 'MAP3K5', 'BAD'}, number: 6
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CDC25B', 'AKT1', 'CASP3', 'STAT1', 'MAP3K5'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'CDKN1B', 'CDKN1A', 'MRE11', 'BAD', 'RB1'}, number: 15
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BAX', 'CASP3', 'CDKN1A', 'BAD', 'RB1'}, number: 7
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CDC25B', 'AKT1', 'CASP3', 'STAT1', 'MAP3K5'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'CDKN1B', 'CDKN1A', 'MRE11', 'BAD', 'RB1'}, number: 15
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'MAP3K5', 'BAD'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'STAT1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'BAX', 'MSH6', 'AKT1', 'BRCA1', 'CDK2', 'CASP3', 'CHEK1', 'MSH2', 'CDKN1B', 'MRE11', 'CDKN1A', 'RB1'}, number: 15
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BRCA1', 'CDK2', 'PTEN', 'CDKN1B', 'CDKN1A', 'BAD', 'JAK1'}, number: 9
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'CDKN1B', 'CDKN1A', 'MRE11', 'BAD', 'RB1'}, number: 15
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'STAT1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'BAD', 'STAT1', 'JAK1', 'AKT1'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25A', 'BAX', 'MSH6', 'BRCA1', 'PTEN', 'CDK2', 'CHEK1', 'MSH2', 'MMP1', 'MRE11', 'CDKN1A'}, number: 11
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'CDC25A', 'CDK1', 'BAX', 'AKT1', 'BRCA1', 'PTEN', 'CDK2', 'CHEK1', 'CASP3', 'CDKN1B', 'CDKN1A', 'MRE11', 'BAD', 'RB1'}, number: 15
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'STAT1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'MAP3K5', 'BAD'}, number: 5
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CASP3', 'BAD', 'STAT1', 'AKT1'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1', 'PTEN', 'CASP3', 'STAT1', 'BAD', 'JAK1'}, number: 6
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'STAT1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1', 'PTEN', 'CDKN1B', 'CDKN1A', 'STAT1', 'BAD', 'JAK1', 'RB1'}, number: 8
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'AKT1', 'BRCA1', 'CDK2', 'PTEN', 'CDKN1B', 'CDKN1A', 'BAD', 'JAK1'}, number: 9
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CASP3', 'AKT1', 'BAD', 'BAX'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'STAT1', 'JAK1', 'PTEN'}, number: 4
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'STAT1', 'JAK1', 'AKT1'}, number: 3
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'MAP3K5', 'BAD'}, number: 5
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'MAP2K2', 'HRAS', 'LAMTOR3', 'BRAF', 'SOS1', 'MAP3K12', 'MAP3K1', 'SOS2', 'GRB2', 'MAP2K3', 'MAPK10', 'RRAS', 'JUN', 'MAP2K1'}, number: 16
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'HRAS', 'SOS1', 'MAP3K1', 'GRB2', 'MAP2K3', 'MAPK10', 'JUN', 'MAP2K1'}, number: 10
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'JUN'}, number: 2
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'MAP2K2', 'HRAS', 'LAMTOR3', 'BRAF', 'SOS1', 'MAP3K12', 'MAP3K1', 'SOS2', 'GRB2', 'MAP2K3', 'MAPK10', 'RRAS', 'JUN', 'MAP2K1'}, number: 16
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'JUN', 'MAP2K1'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'MAP2K2', 'HRAS', 'LAMTOR3', 'BRAF', 'SOS1', 'MAP3K12', 'MAP3K1', 'SOS2', 'GRB2', 'MAP2K3', 'MAPK10', 'RRAS', 'JUN', 'MAP2K1'}, number: 16
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'JUN', 'MAP2K1'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BRAF', 'SOS1', 'MAP3K1', 'GRB2', 'SOS2', 'JUN', 'MAP2K1'}, number: 9
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'BRAF', 'SOS1', 'MAP3K1', 'SOS2', 'GRB2', 'MAP2K3', 'JUN', 'MAP2K1'}, number: 11
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'MAP2K2', 'HRAS', 'LAMTOR3', 'BRAF', 'SOS1', 'MAP3K12', 'MAP3K1', 'SOS2', 'GRB2', 'MAP2K3', 'MAPK10', 'RRAS', 'JUN', 'MAP2K1'}, number: 16
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'MAP3K1', 'GRB2', 'SOS2', 'MAPK10', 'JUN'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'MAP2K2', 'HRAS', 'LAMTOR3', 'BRAF', 'SOS1', 'MAP3K12', 'MAP3K1', 'SOS2', 'GRB2', 'MAP2K3', 'MAPK10', 'RRAS', 'JUN', 'MAP2K1'}, number: 16
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'MAP3K1', 'GRB2', 'SOS2', 'MAPK10', 'JUN'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 7
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'SOS1', 'RASA3', 'SOS2', 'GRB2', 'MAPK10', 'RRAS', 'MAP2K1'}, number: 10
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'MAP3K1', 'GRB2', 'SOS2', 'MAPK10', 'JUN'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 6
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'JUN', 'MAP2K1'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'GRB2', 'SOS1', 'MAP2K1'}, number: 4
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'MAP3K1', 'MAP2K3', 'JUN', 'MAP2K1'}, number: 6
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAPK10', 'JUN'}, number: 2
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'MAP3K1', 'GRB2', 'SOS2', 'MAPK10', 'JUN'}, number: 8
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'MAPK10', 'JUN', 'MAP2K1'}, number: 9
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'MAP3K1', 'GRB2', 'MAPK10', 'JUN', 'MAP2K1'}, number: 9
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'BRAF', 'SOS1', 'MAP3K1', 'GRB2', 'MAPK10', 'JUN', 'MAP2K1'}, number: 10
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'MAP3K1', 'GRB2', 'MAPK10', 'JUN', 'MAP2K1'}, number: 7
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 6
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'SOS1', 'GRB2', 'MAP2K1'}, number: 6
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'SOS1', 'GRB2', 'SOS2', 'MAP2K1'}, number: 7
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: MAPK Cascade WP422, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'MAPK10', 'MAP3K1', 'JUN'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'FGFR1', 'NLK', 'ELK4'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FZD5', 'TEAD1', 'YAP1', 'FGFR1', 'CCND1', 'DKK1', 'SETD2'}, number: 7
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'INHBA', 'BMP4', 'SMAD1', 'SMAD6'}, number: 4
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'FGFR1', 'NLK', 'ELK4'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'INHBA', 'SMAD1', 'VAV3', 'BMP4', 'SMAD6'}, number: 5
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'FGFR1', 'NLK', 'ELK4'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'INHBA', 'SMAD1', 'VAV3', 'BMP4', 'SMAD6'}, number: 5
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'ELK4', 'VAV3'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'PPP2CA', 'VAV3'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'FGFR1', 'NLK', 'ELK4'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SESN1', 'CCND1'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'FGFR1', 'NLK', 'ELK4'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SESN1', 'CCND1', 'NFE2L2'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'VAV3'}, number: 1
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'SESN1', 'CCND1'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'FGFR1', 'PPP2CA', 'CCND1'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SESN1', 'CCND1'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'INHBA', 'SMAD1', 'VAV3', 'BMP4', 'SMAD6'}, number: 5
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FZD5', 'SESN1', 'NLK', 'NFE2L2', 'CCND1', 'DKK1'}, number: 6
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SESN1', 'CCND1', 'NFE2L2'}, number: 3
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'INHBA', 'SMAD1', 'VAV3', 'NFE2L2', 'BMP4', 'SMAD6'}, number: 6
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'PPP2CA', 'VAV3'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PPP2CA', 'VAV3'}, number: 2
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FOXA1', 'PPP2CA', 'KLF4', 'FGFR1', 'BMP4'}, number: 5
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FOXA1', 'FGFR1', 'PPP2CA', 'CCND1'}, number: 4
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Mesodermal Commitment Pathway WP2857, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A5', 'XDH', 'SLC2A1'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A5', 'SLC2A1'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'DLD', 'GOT1'}, number: 7
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'DLD', 'GOT1'}, number: 7
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'GPHN', 'PHGDH', 'DLD', 'GOT1'}, number: 8
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5', 'PSAT1', 'PHGDH', 'SLC2A1'}, number: 4
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'SHMT2', 'PSAT1', 'SHMT1', 'SLC2A1', 'PHGDH', 'DLD', 'GOT1'}, number: 7
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TIGAR', 'PGD', 'G6PD', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PGD', 'G6PD', 'SLC2A1'}, number: 3
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SHMT2', 'GLS', 'PSAT1', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'SHMT2', 'GLS', 'PSAT1', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'SHMT2', 'GLS', 'PSAT1', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5', 'PSAT1', 'SLC2A1', 'PYCR1', 'GLS'}, number: 5
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'SHMT2', 'GLS', 'PSAT1', 'SLC2A1'}, number: 4
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'NGF', 'SOS1', 'EED', 'MAP3K1', 'SUZ12'}, number: 5
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'MAP3K1', 'CFL1', 'SOS1'}, number: 4
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'MAP3K1', 'SOS1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'MAP3K1', 'CCNE2', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAP3K1', 'CCNE2', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RFC2', 'RFC3', 'WDR48', 'USP1', 'CCNE2', 'PCNA', 'RFC5', 'RFC4'}, number: 8
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NGF', 'CCNE2', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAP3K1', 'CCNE2', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RFC2', 'RFC3', 'WDR48', 'USP1', 'PCNA', 'RFC5', 'RFC4'}, number: 7
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAP3K1', 'CCNE2', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'MAP3K1', 'SOS1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'CFL1', 'SOS1'}, number: 4
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'NGF', 'MAP3K1', 'CFL1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'NGF', 'CFL1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NGF', 'SOS1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NGF', 'CCNE2', 'SOS1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'NGF', 'CFL1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'NGF', 'CFL1'}, number: 2
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RBX1'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'NFE2L2', 'RBX1', 'HMOX1', 'NQO1', 'KEAP1'}, number: 9
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'YES1', 'GCLC', 'GCLM', 'EPHB2', 'RBX1', 'MAF', 'NFE2L2', 'HMOX1', 'NQO1', 'CEBPB', 'FYN', 'KEAP1', 'PGAM5'}, number: 15
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFE2L2'}, number: 4
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFE2L2'}, number: 4
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'FYN'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'FYN'}, number: 2
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: NRF2 ARE Regulation WP4357, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EPHA2', 'PDGFB', 'HBEGF', 'SLC2A1', 'TGFA'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'TXN', 'HSP90AA1'}, number: 2
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'TGFA'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EPHA2', 'HSP90AA1', 'PDGFB', 'TGFA'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFG', 'SLC6A9', 'SLC6A16', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'ABCC4', 'SLC2A5', 'KEAP1', 'SLC6A15', 'PTGR1', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'SQSTM1', 'EPHA2', 'GPX3', 'GSTM3', 'TGFB2', 'TGFBR2', 'GCLM', 'TXNRD3', 'GSTA4', 'MAFF', 'SLC2A13', 'GSTP1', 'NRG1', 'FTL', 'FTH1', 'SLC2A6', 'SLC39A11', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'NFE2L2', 'ABCC3', 'CBR1', 'SLC6A6', 'SLC5A3', 'PRDX6', 'ABCC2', 'TXN'}, number: 57
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFG', 'SLC6A9', 'SLC6A16', 'SLC39A4', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'ABCC4', 'SLC2A5', 'KEAP1', 'SLC6A15', 'PTGR1', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'TGFA', 'NQO1', 'TXNRD1', 'SQSTM1', 'EPHA2', 'GPX3', 'GSTM3', 'TGFB2', 'TGFBR2', 'GCLM', 'TXNRD3', 'GSTA4', 'MAFF', 'SLC2A13', 'GSTP1', 'NRG1', 'FTL', 'FTH1', 'SLC2A6', 'SLC39A11', 'SLC7A11', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'NFE2L2', 'ABCC3', 'CBR1', 'SLC6A6', 'SLC5A3', 'PRDX6', 'ABCC2', 'TXN'}, number: 57
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GPX3', 'TGFBR2', 'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'GPX3', 'GCLC', 'NFE2L2', 'HSPA1A', 'HMOX1', 'NQO1', 'TXNRD1'}, number: 7
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'TGFB2', 'SLC6A9', 'TGFBR2', 'SLC2A1'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TGFB2', 'SLC6A9', 'SLC2A1', 'TGFBR2'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPHA2', 'PDGFB', 'SLC2A1', 'HSP90AA1'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPHA2', 'HSP90AA1', 'PDGFB', 'SLC2A1', 'TGFA'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'TGFB2', 'SLC6A9', 'SLC2A1', 'TGFBR2'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TGFB2', 'SLC6A9', 'SLC2A1', 'TGFBR2'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCA', 'HRAS', 'STK4', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'CASP3', 'SOS2', 'GRB2', 'PIK3R1', 'MAP2K1', 'GADD45A'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'HRAS', 'BAX', 'RASSF1', 'MAP2K1', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'GRB2', 'CDKN1A', 'CCND1', 'TGFA', 'CDKN2A', 'PDK1'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT3'}, number: 2
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCA', 'HRAS', 'STK4', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'CASP3', 'SOS2', 'GRB2', 'PIK3R1', 'MAP2K1', 'GADD45A'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCA', 'HRAS', 'STK4', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'CASP3', 'SOS2', 'GRB2', 'PIK3R1', 'MAP2K1', 'GADD45A'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'BRAF', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 12
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'BAX', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'CASP3', 'SOS2', 'GRB2', 'BAD', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 17
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCA', 'HRAS', 'STK4', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'CASP3', 'SOS2', 'GRB2', 'PIK3R1', 'MAP2K1', 'GADD45A'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'BAX', 'SOS2', 'PDK1', 'CDK4', 'PIK3CB', 'PIK3CD', 'CDK6', 'CASP3', 'GRB2', 'CCND1', 'CDKN2A', 'GADD45A', 'DDB2', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3', 'RB1'}, number: 24
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'PRKCA', 'BAX', 'BRAF', 'SOS2', 'PDK1', 'CRABP2', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'STAT3', 'RASSF1', 'CASP3', 'GRB2', 'CCND1', 'CDKN2A', 'MAP2K1', 'GADD45A', 'MAP2K2', 'DDB2', 'EML4', 'STK4', 'PRKCB', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3', 'RB1'}, number: 35
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'PRKCA', 'HRAS', 'STK4', 'AKT1', 'BRAF', 'PIK3CB', 'PIK3CD', 'SOS1', 'CASP3', 'SOS2', 'GRB2', 'PIK3R1', 'MAP2K1', 'GADD45A'}, number: 16
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'BAX', 'SOS2', 'PDK1', 'CDK4', 'PIK3CB', 'PIK3CD', 'CDK6', 'CASP3', 'GRB2', 'CCND1', 'CDKN2A', 'GADD45A', 'DDB2', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3', 'RB1'}, number: 24
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'CASP3', 'GADD45G', 'CDKN1A', 'CCND1', 'RB1', 'CDK6', 'GADD45A'}, number: 12
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'SOS2', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'RASSF1', 'GRB2', 'CCND1', 'MAP2K1', 'MAP2K2', 'STK4', 'PRKCB', 'AKT1', 'SOS1', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3'}, number: 22
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'BAX', 'SOS2', 'PDK1', 'CDK4', 'PIK3CB', 'PIK3CD', 'CDK6', 'CASP3', 'GRB2', 'CCND1', 'CDKN2A', 'GADD45A', 'DDB2', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3', 'RB1'}, number: 24
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'PIK3CD', 'SOS1', 'GRB2', 'BAD', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 9
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'MAP2K1', 'AKT1'}, number: 4
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DDB2', 'PRKCA', 'PRKCB', 'BAX', 'CDKN1A', 'CCND1', 'TGFA', 'GADD45A'}, number: 8
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'GADD45B', 'HRAS', 'PRKCA', 'BAX', 'SOS2', 'PDK1', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'CASP3', 'GRB2', 'CCND1', 'CDKN2A', 'GADD45A', 'DDB2', 'AKT1', 'SOS1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3', 'RB1'}, number: 26
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 14
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'AKT1', 'BRAF', 'SOS1', 'CASP3', 'GRB2', 'BAD', 'CDKN2A', 'PIK3R1', 'MAP2K1'}, number: 12
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'CASP3', 'GRB2', 'BAD', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 13
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'PIK3CB', 'CASP3', 'GRB2', 'BAD', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 13
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'STAT3', 'AKT1'}, number: 4
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'MAP2K1'}, number: 7
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'GADD45B', 'HRAS', 'AKT1', 'PIK3CB', 'PIK3CD', 'SOS1', 'GRB2', 'CDKN1A', 'BAD', 'PIK3R1', 'RB1', 'FOXO3', 'STAT3', 'MAP2K1', 'GADD45A'}, number: 17
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'PRKCA', 'HRAS', 'SOS2', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'GRB2', 'CCND1', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'CDKN1A', 'BAD', 'PIK3R1', 'FOXO3'}, number: 19
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'PIK3CB', 'PIK3R1', 'STAT3'}, number: 6
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'STAT3', 'AKT1'}, number: 4
Term: Non Small Cell Lung Cancer WP4255, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1', 'BAX', 'CASP3', 'BAD', 'CDKN2A', 'PIK3R1'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'JUN', 'BIRC3', 'BAX'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A', 'CCL2', 'IL11', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'EPHA2', 'CDK4', 'CUL1', 'BAX', 'PDGFB', 'CCL2', 'HBEGF', 'SLC2A1', 'TGFA', 'CCND1', 'JUN'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'HSPA1A', 'JUN', 'BIRC3', 'BAX'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'JUN', 'STAT3'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'HSPA1A', 'JUN', 'BIRC3', 'BAX'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A', 'CCL2', 'IL11', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'IL1B', 'TGFBR2', 'CCL2', 'IL11', 'JUN', 'STAT3'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A', 'CCL2', 'IL11', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL1B', 'TGFBR2', 'IL11', 'JUN', 'STAT3'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NCOA3', 'JUN', 'STAT3'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'HSPA1A', 'JUN', 'BIRC3', 'BAX'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'IL1B', 'CUL1', 'HSP90AA1', 'TNFAIP3', 'BAX', 'CCL2', 'IL11', 'CDC37', 'JUN', 'STAT3', 'BIRC3', 'TXN'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'NFE2L2'}, number: 2
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A', 'CCL2', 'IL11', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'SMC1A', 'CDK1', 'BAX', 'CDKN1B', 'SCP2', 'CCND1', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'BAX', 'CCND1', 'TGFA', 'STAT3'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'TGFB2', 'PDGFB', 'TGFBR2', 'HSPA1A', 'CCL2', 'IL11', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'GADD45B', 'CDK4', 'SMC1A', 'CDK1', 'BAX', 'NFE2L2', 'CDKN1B', 'SCP2', 'CCND1', 'JUN'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'NFE2L2'}, number: 2
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'HSPA1A', 'JUN', 'BIRC3', 'BAX'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'IL1B', 'IL11', 'STAT3'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'SMC1A', 'BAX', 'CDK1', 'CDKN1B', 'CCND1'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EPHA2', 'CDK4', 'HSP90AA1', 'PDGFB', 'CDKN1B', 'CCND1', 'TGFA', 'CDC37'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'SMC1A', 'CDK1', 'BAX', 'CDKN1B', 'SCP2', 'CCND1', 'JUN'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL1B', 'TGFBR2', 'IL11', 'JUN', 'STAT3'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'IRS2', 'STAT3'}, number: 2
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'JUN', 'CCL2'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFG', 'ACADM', 'SLC6A9', 'BAX', 'SLC6A6', 'SLC39A4', 'SLC6A16', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'ABCC4', 'SLC2A5', 'KEAP1', 'SLC6A15', 'PTGR1', 'ME1', 'CES2', 'MGST2', 'SLC39A10', 'BLVRB', 'GCLC', 'CPT1A', 'SLC39A6', 'HMOX1', 'SCP2', 'TGFA', 'NQO1', 'TXNRD1', 'SQSTM1', 'EPHA2', 'GPX3', 'TGFB2', 'PLTP', 'GSTM3', 'MGST1', 'TGFBR2', 'GCLM', 'TXNRD3', 'GSTA4', 'MAFF', 'SLC2A13', 'CCND1', 'GSTP1', 'NRG1', 'FTL', 'JUN', 'SLC2A6', 'FTH1', 'SLC39A11', 'SLC7A11', 'JUNB', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'DBI', 'NFE2L2', 'ABCC3', 'CBR1', 'CCL2', 'ACAA1', 'SLC5A3', 'PRDX6', 'ABCC2', 'TXN'}, number: 69
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFG', 'GADD45B', 'SLC6A9', 'BAX', 'SLC39A4', 'SLC6A16', 'PGD', 'G6PD', 'SLC39A14', 'HSPA1A', 'HBEGF', 'SLC6A13', 'SLC2A1', 'ABCC4', 'SLC2A5', 'KEAP1', 'SLC6A15', 'PTGR1', 'IL1B', 'ME1', 'CDK4', 'CES2', 'MGST2', 'CDK1', 'SLC39A10', 'BLVRB', 'GCLC', 'SLC39A6', 'HMOX1', 'CDKN1B', 'SCP2', 'TGFA', 'NQO1', 'TXNRD1', 'SQSTM1', 'EPHA2', 'GPX3', 'TGFB2', 'GSTM3', 'TGFBR2', 'GCLM', 'TXNRD3', 'GSTA4', 'MAFF', 'SLC2A13', 'CCND1', 'GSTP1', 'NRG1', 'FTL', 'JUN', 'SLC2A6', 'FTH1', 'SLC39A11', 'SLC7A11', 'SMC1A', 'DNAJB1', 'HSP90AA1', 'SRXN1', 'PDGFB', 'NFE2L2', 'ABCC3', 'CBR1', 'SLC6A6', 'SLC5A3', 'PRDX6', 'ABCC2', 'TXN'}, number: 67
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'TGFBR2', 'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'JUN', 'STAT3', 'TXNRD1'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'GPX3', 'JUNB', 'MGST1', 'BAX', 'GCLC', 'NFE2L2', 'HSPA1A', 'HMOX1', 'NQO1', 'JUN', 'BIRC3', 'TXNRD1'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SQSTM1', 'IRS2', 'JUN', 'STAT3'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'SQSTM1', 'IL1B', 'IRS2', 'SLC6A9', 'TGFB2', 'LRRC8A', 'TGFBR2', 'SLC2A1', 'JUN', 'STAT3'}, number: 10
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IL1B', 'SLC6A9', 'TGFB2', 'LRRC8A', 'TGFBR2', 'SLC2A1', 'STAT3'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPHA2', 'GADD45B', 'IRS2', 'HSP90AA1', 'NCOA2', 'NCOA1', 'PDGFB', 'NRIP1', 'CDKN1B', 'SLC2A1', 'CDC37', 'STAT3'}, number: 12
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPHA2', 'IRS2', 'CDK4', 'HSP90AA1', 'PDGFB', 'CDKN1B', 'SLC2A1', 'TGFA', 'CCND1', 'CDC37'}, number: 10
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'JUN', 'BIRC3', 'BAX'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'IL1B', 'SLC6A9', 'TGFB2', 'LRRC8A', 'TGFBR2', 'SLC2A1', 'STAT3'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IL1B', 'SLC6A9', 'TGFB2', 'LRRC8A', 'TGFBR2', 'SLC2A1', 'STAT3'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'HSPA1A', 'JUN', 'BIRC3', 'BAX'}, number: 4
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK7', 'BRCA1'}, number: 2
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'DDB2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'DDB2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'POLE4', 'MNAT1', 'PARP1', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'POLE', 'XPA', 'XRCC1', 'CETN2', 'CCNH', 'RPA3', 'GTF2H1', 'DDB1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'CDK7', 'LIG1', 'BRCA1', 'PCNA', 'RAD23B', 'POLH'}, number: 28
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'DDB2', 'BRCA1'}, number: 3
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'POLE4', 'MNAT1', 'PARP1', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'POLE', 'XPA', 'XRCC1', 'CETN2', 'CCNH', 'RPA3', 'GTF2H1', 'DDB1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'CDK7', 'LIG1', 'BRCA1', 'PCNA', 'RAD23B', 'POLH'}, number: 28
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RBX1', 'RPA2', 'DDB2', 'BRCA1'}, number: 4
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BRCA1'}, number: 1
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK7'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RPA2', 'DDB2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2'}, number: 1
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RPA2', 'DDB2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'POLE4', 'MNAT1', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'POLE', 'XPA', 'CETN2', 'CCNH', 'RPA3', 'GTF2H1', 'DDB1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'CDK7', 'LIG1', 'PCNA', 'RAD23B'}, number: 24
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RPA2', 'DDB2'}, number: 2
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'RPA1', 'RBX1', 'POLE4', 'MNAT1', 'POLE3', 'RFC5', 'RFC3', 'RPA2', 'POLE', 'XPA', 'CETN2', 'CCNH', 'RPA3', 'GTF2H1', 'DDB1', 'RFC4', 'POLD3', 'DDB2', 'RFC2', 'CDK7', 'LIG1', 'PCNA', 'RAD23B'}, number: 24
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RBX1', 'RPA2', 'DDB2'}, number: 3
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'CDK2', 'GRB2', 'STAT1', 'SHC1', 'JAK1', 'NFKB1'}, number: 11
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 5
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'PXN', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'PXN', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RICTOR', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'MAP2K1', 'SOS1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 14
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'PXN', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'CDK2', 'CASP3', 'CDKN1B', 'GRB2', 'PIK3R1', 'SHC1', 'NFKB1'}, number: 10
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'SOS1', 'CASP3', 'GRB2', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 11
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'STAT1', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'CDK2', 'CASP3', 'CDKN1B', 'GRB2', 'PIK3R1', 'SHC1', 'NFKB1'}, number: 10
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'PXN', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP3', 'AKT1', 'CDKN1B', 'CDK2'}, number: 4
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'RELA', 'AKT1', 'MAP2K1', 'SOS1', 'CDK2', 'CDKN1B', 'GRB2', 'PIK3R1', 'SHC1', 'JAK1', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'CDK2', 'CASP3', 'CDKN1B', 'GRB2', 'PIK3R1', 'SHC1', 'NFKB1'}, number: 10
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'PXN', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 15
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'CEBPB', 'STAT3', 'JAK1', 'NFKB1'}, number: 14
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'NFKBIA', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 7
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'JUNB', 'PRKCB', 'CDK2', 'NFKB1'}, number: 5
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'AKT1', 'SOS1', 'CDK2', 'CASP3', 'CDKN1B', 'GRB2', 'PIK3R1', 'CEBPB', 'SHC1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'JUNB', 'RELA', 'PRKCB', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'PXN', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HRAS', 'JUNB', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'PIK3R1', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 12
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'CASP3', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 14
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'CASP3', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 7
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'CDKN1B', 'GRB2', 'STAT1', 'LIFR', 'PIK3R1', 'CEBPB', 'STAT3', 'JAK1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'SOS1', 'CDK2', 'CDKN1B', 'GRB2', 'PIK3R1', 'JAK1', 'NFKB1'}, number: 13
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 9
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'AKT1', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 7
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'TGFB2', 'SPP1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CSNK1A1', 'CDK4', 'TCF7L2', 'CDKN1A'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SPP1', 'CREBBP'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'TGFB2', 'SPP1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'SPP1', 'CREBBP'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'TGFB2', 'SPP1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'SPP1', 'CREBBP'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'TGFB2', 'SPP1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A', 'CDK4', 'TCF7L2', 'RB1'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'RB1'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'TGFB2', 'SPP1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'CDK4', 'TCF7L2', 'RB1'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'RB1'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A', 'CDK4', 'SPP1'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDK4', 'TCF7L2', 'RB1'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'SPP1', 'CREBBP'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB', 'CEBPA'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'JUNB', 'TCF7L2', 'CDKN1A', 'CSNK1A1', 'PPARG', 'MAOA'}, number: 7
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'TGFB2', 'TCF7L2', 'CDKN1A', 'CEBPB', 'RB1'}, number: 6
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'JUNB', 'SPP1', 'CREBBP', 'MAOA'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'JUNB', 'MAOA'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'SPP1'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'TGFB2', 'SPP1'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CEBPD', 'SPP1', 'CDKN1A', 'CEBPA', 'PPARG', 'ZMPSTE24', 'CEBPB', 'RB1'}, number: 8
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A', 'CDK4', 'SPP1'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'APAF1', 'FAS', 'PMAIP1', 'BAX'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CCL2', 'FAS', 'GADD45A'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'PRKAB1', 'PTEN', 'CDK2', 'CCL2', 'AKT1S1', 'CDKN1A', 'SLC2A1', 'PRKAB2', 'DEPTOR', 'PRKAG1'}, number: 11
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'APAF1', 'TNFRSF10D', 'BAX', 'PMAIP1', 'FAS'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'LIF', 'SERPINE1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'APAF1', 'TNFRSF10D', 'BAX', 'PMAIP1', 'FAS'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CCL2', 'FAS', 'GADD45A'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'CCL2', 'LIF', 'SERPINE1', 'ICAM1'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CCL2', 'FAS', 'GADD45A'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'LIF', 'SERPINE1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'AURKA', 'PTEN'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'APAF1', 'TNFRSF10D', 'BAX', 'PMAIP1', 'FAS'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'APAF1', 'CCL2', 'BAX'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CCL2', 'FAS', 'GADD45A'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'APAF1', 'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'BAX', 'SESN1', 'PMAIP1', 'PTEN', 'CDK2', 'CDKN1A', 'FAS', 'CCNG1', 'GADD45A'}, number: 15
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'DDB2', 'GADD45A', 'CDKN1A', 'BAX'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CCL2', 'FAS', 'GADD45A'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'APAF1', 'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'BAX', 'SESN1', 'PMAIP1', 'PTEN', 'CDK2', 'CDKN1A', 'FAS', 'GADD45A'}, number: 14
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'APAF1', 'TNFRSF10D', 'BAX', 'PMAIP1', 'FAS'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'ISG15', 'ICAM1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'MLH1', 'MSH2', 'SFN', 'RRM2B', 'SESN1', 'PMAIP1', 'APAF1', 'CDK2', 'FAS', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'PCNA', 'XRCC5', 'CDKN1A', 'FANCC', 'POLH'}, number: 19
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKAB1', 'PTEN', 'CDK2', 'AKT1S1', 'CDKN1A', 'PRKAB2', 'DEPTOR', 'DDIT4', 'PRKAG1'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'APAF1', 'DDB2', 'SFN', 'CDC25C', 'RRM2B', 'CDC25A', 'BAX', 'SESN1', 'PMAIP1', 'PTEN', 'CDK2', 'CDKN1A', 'FAS', 'GADD45A'}, number: 14
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'LIF', 'SERPINE1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'CCL2'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BAX', 'MLH1', 'TRAF4', 'DRAM1', 'MSH2', 'ADORA2B', 'SLC2A1', 'CCNG1', 'DEPTOR', 'SAT1', 'DDIT4', 'E2F7', 'SFN', 'TNFRSF10D', 'RRM2B', 'SESN1', 'PMAIP1', 'PRKAB1', 'PTEN', 'PRKAB2', 'APAF1', 'LIF', 'NCF2', 'TP53I3', 'SCO2', 'CDK2', 'SESN2', 'FAS', 'SERPINE1', 'PRKAG1', 'GADD45A', 'SLC7A11', 'ISG15', 'DDB2', 'CDC25C', 'CDC25A', 'ULBP2', 'TP53INP1', 'PCNA', 'CCL2', 'AKT1S1', 'ICAM1', 'CDKN1A', 'XRCC5', 'TIGAR', 'FANCC', 'POLH', 'AURKA'}, number: 48
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'APAF1', 'SLC7A11', 'SFN', 'DDB2', 'RRM2B', 'CDC25C', 'BAX', 'SESN1', 'CDC25A', 'PMAIP1', 'PTEN', 'CDK2', 'CDKN1A', 'SLC2A1', 'FAS', 'GADD45A'}, number: 16
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'LIF', 'SERPINE1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'APAF1', 'TNFRSF10D', 'BAX', 'PMAIP1', 'FAS'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NCF2'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'LIF', 'NCF2', 'SLC2A1', 'PTEN'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'LIF', 'SLC2A1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LIF', 'PTEN', 'AKT1S1', 'CDKN1A', 'SLC2A1', 'FAS', 'SERPINE1', 'DDIT4', 'GADD45A'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK2', 'PTEN', 'AKT1S1', 'CDKN1A', 'SLC2A1', 'DDIT4'}, number: 6
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'APAF1', 'FAS', 'PMAIP1', 'BAX'}, number: 4
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'LIF', 'SLC2A1', 'PTEN'}, number: 3
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'LIF', 'SLC2A1'}, number: 2
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'APAF1', 'TNFRSF10D', 'BAX', 'PMAIP1', 'FAS'}, number: 5
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELN'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RELN'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RELN'}, number: 1
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: PAFAH1B1 Copy Number Variation WP5409, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'TGFB2', 'RELA', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'GADD45A', 'PAK1', 'PAK2', 'STAT1', 'DUSP6', 'MAPK10', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 17
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'RPS6KB2', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'JAK1', 'PAK1', 'CCND1', 'CDKN2A', 'PAK3', 'MAP2K1', 'MAP2K2', 'AKT1', 'PAK2', 'CDKN1A', 'STAT1', 'MAPK10'}, number: 19
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 5
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'TGFB2', 'RELA', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'GADD45A', 'PAK1', 'PAK2', 'STAT1', 'DUSP6', 'MAPK10', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 17
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'PAK1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 13
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'TGFB2', 'RELA', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'GADD45A', 'PAK1', 'PAK2', 'STAT1', 'DUSP6', 'MAPK10', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 17
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'PAK1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 13
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RALA', 'AKT1', 'MAP2K1', 'BRAF', 'PLD1', 'PAK1', 'STAT1', 'PEBP1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 12
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'PAK1', 'BCL2L1', 'STAT1', 'BAD', 'PIK3R1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 14
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'TGFB2', 'RELA', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'GADD45A', 'PAK1', 'PAK2', 'STAT1', 'DUSP6', 'MAPK10', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 17
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'GADD45G', 'GADD45A', 'CDKN1A', 'CCND1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'GADD45B', 'BAX', 'BRAF', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'STAT3', 'CCND1', 'CDKN2A', 'MAP2K1', 'GADD45A', 'MAP2K2', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'BAD', 'PIK3R1', 'RB1'}, number: 21
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'TGFB2', 'RELA', 'AKT1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'GADD45A', 'PAK1', 'PAK2', 'STAT1', 'DUSP6', 'MAPK10', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 17
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'GADD45G', 'GADD45A', 'CDKN1A', 'CCND1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'BRAF', 'PIK3CD', 'PAK1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 12
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'GADD45G', 'CDKN1A', 'CCND1', 'RB1', 'CDK6', 'BRCA2', 'GADD45A'}, number: 12
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RPS6KB2', 'NFKB1', 'CDK4', 'RELA', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'JAK1', 'RALA', 'PAK1', 'BCL2L1', 'CCND1', 'PAK3', 'MAP2K1', 'MAP2K2', 'AKT1', 'PLD1', 'PAK2', 'CDKN1A', 'BAD', 'MAPK10', 'PIK3R1'}, number: 23
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'GADD45G', 'GADD45A', 'CDKN1A', 'CCND1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'CDK6', 'RB1', 'NFKB1'}, number: 18
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'BRAF', 'MAP2K1', 'AKT1'}, number: 3
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'PAK1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 13
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CD', 'STAT1', 'BAD', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 11
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 6
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DDB2', 'TGFB2', 'BAX', 'TGFBR2', 'GADD45A', 'CDKN1A', 'CCND1', 'TGFA', 'MAPK10', 'BRCA2', 'NFKB1'}, number: 11
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'BAX', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'TGFA', 'CDK6', 'TGFB2', 'TGFBR2', 'CCND1', 'CDKN2A', 'GADD45A', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'BAD', 'MAPK10', 'PIK3R1', 'RB1'}, number: 21
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'BRAF', 'PIK3CD', 'TGFBR2', 'PAK1', 'STAT1', 'MAPK10', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 14
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BRAF', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'MAP2K1', 'NFKB1'}, number: 11
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'BRAF', 'STAT1', 'BAD', 'MAPK10', 'PIK3R1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 11
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'TGFB2', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'TGFBR2', 'STAT1', 'BAD', 'MAPK10', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 14
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'TGFBR2', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 7
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'BRAF', 'MAP2K1', 'AKT1'}, number: 3
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'GADD45B', 'AKT1', 'MAP2K1', 'PIK3CB', 'PIK3CD', 'CDKN1A', 'STAT1', 'BAD', 'RPS6KB2', 'PIK3R1', 'RB1', 'STAT3', 'JAK1', 'GADD45A'}, number: 15
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'CDK4', 'BAD', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'PIK3CD', 'BCL2L1', 'CDKN1A', 'CCND1', 'TGFA', 'RPS6KB2', 'PIK3R1', 'CDK6', 'JAK1', 'NFKB1'}, number: 17
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'PIK3CB', 'TGFBR2', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 9
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TGFB2', 'AKT1', 'TGFBR2', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 7
Term: Pancreatic Adenocarcinoma Pathway WP4263, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'RELA', 'BAX', 'AKT1', 'BCL2L1', 'BAD', 'MAPK10', 'CDKN2A', 'PIK3R1', 'NFKB1'}, number: 9
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'HSPA1A', 'HSPA1L', 'HSPA6', 'HSPA1B'}, number: 4
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CUL1'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'HSPA1A', 'HSPA1L', 'HSPA6', 'HSPA1B'}, number: 4
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'HSPA1A', 'HSPA1L', 'HSPA6', 'HSPA1B'}, number: 4
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'PSMD2', 'CUL1'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'HSPA1A', 'HSPA1L', 'HSPA6', 'HSPA1B'}, number: 4
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'HSPA1A', 'HSPA1L', 'HSPA6', 'HSPA1B'}, number: 4
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HSPA1A', 'HSPA5'}, number: 2
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Parkin Ubiquitin Proteasomal System Pathway WP2359, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'HSPA1A'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'JUN', 'MAPK13'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'JUN', 'MAPK13'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'JUN', 'MAPK13'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'JUN', 'MAPK13'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'JUN', 'MAPK13'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'JUN', 'NFE2L2'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'NFE2L2', 'ABCC3', 'ABCC4', 'HMOX1', 'JUN', 'GSTP1', 'NQO1', 'KEAP1', 'ABCC2'}, number: 12
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SRXN1', 'GCLM', 'GCLC', 'NFE2L2', 'ABCC3', 'ABCC4', 'HMOX1', 'JUN', 'GSTP1', 'NQO1', 'KEAP1', 'ABCC2'}, number: 12
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'JUN'}, number: 5
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'JUN'}, number: 5
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'PAK1', 'GRB2', 'JUN', 'STAT1', 'PIK3R1', 'FLNA', 'MAP2K1', 'NFKB1'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'MAP2K1', 'PIK3CB', 'SOS1', 'PAK1', 'GRB2', 'EIF4EBP1', 'STAT1', 'JUN', 'SHC1', 'JAK1', 'NFKB1'}, number: 14
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 6
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'PAK1', 'GRB2', 'JUN', 'STAT1', 'PIK3R1', 'FLNA', 'MAP2K1', 'NFKB1'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'PAK1', 'GRB2', 'JUN', 'STAT1', 'PIK3R1', 'FLNA', 'MAP2K1', 'NFKB1'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'GAB2', 'AKT1', 'MAP2K1', 'SOS1', 'PAK1', 'GRB2', 'EIF4EBP1', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'PAK1', 'GRB2', 'JUN', 'STAT1', 'PIK3R1', 'FLNA', 'MAP2K1', 'NFKB1'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'SOS1', 'CASP3', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 10
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'PIK3CB', 'SOS1', 'CASP3', 'GRB2', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 10
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'PAK1', 'GRB2', 'JUN', 'STAT1', 'PIK3R1', 'FLNA', 'MAP2K1', 'NFKB1'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'SOS1', 'CASP3', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 10
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 17
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP3', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'GAB2', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'SOS1', 'PAK1', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'SHC1', 'JAK1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'SOS1', 'CASP3', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'NFKB1'}, number: 10
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'HRAS', 'GAB2', 'AKT1', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'GAB2', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'SOS1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'FLNA', 'STAT3', 'JAK1', 'NFKB1'}, number: 16
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'PIK3R1', 'JUN', 'MAP2K1', 'NFKB1'}, number: 9
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PIK3CB', 'SOS1', 'CASP3', 'JUN', 'GRB2', 'PIK3R1', 'FYN', 'SHC1', 'NFKB1'}, number: 11
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'NFKBIA', 'SOS1', 'NFKBIB', 'PXN', 'PAK1', 'GRB2', 'STAT1', 'SHC1', 'PIK3R1', 'JUN', 'STAT3', 'JAK1', 'NFKB1'}, number: 18
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HRAS', 'GAB2', 'RELA', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'CASP3', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 15
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'FYN', 'NFKB1', 'GAB2', 'RELA', 'STAT3', 'IRS2', 'NFKBIA', 'CASP3', 'GRB2', 'EIF4EBP1', 'SIRPA', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'SOS1', 'STAT1', 'PIK3R1', 'SHC1'}, number: 20
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'FYN', 'NFKB1', 'RELA', 'PIK3CB', 'STAT3', 'JAK1', 'IRS2', 'NFKBIA', 'CASP3', 'GRB2', 'EIF4EBP1', 'SIRPA', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'STAT1', 'PIK3R1', 'SHC1'}, number: 20
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 5
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'HRAS', 'GAB2', 'AKT1', 'SOS1', 'GRB2', 'EIF4EBP1', 'SHC1', 'MAP2K1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'AKT1', 'MAP2K1', 'PIK3CB', 'SOS1', 'GRB2', 'EIF4EBP1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 13
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'IRS2', 'HRAS', 'RELA', 'AKT1', 'MAP2K1', 'PIK3CB', 'SOS1', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'JAK1', 'NFKB1'}, number: 13
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'STAT1', 'SHC1', 'PIK3R1', 'STAT3', 'JAK1', 'NFKB1'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'STAT1', 'STAT3', 'JAK1', 'NFKB1'}, number: 5
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'PIK3R1', 'JUN', 'NFKB1'}, number: 8
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'NEDD4'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'PSMD2'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'PSMB9'}, number: 1
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Proteasome Degradation WP183, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'RRM2B'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'RRM2B'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'RRM2B'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'RRM2B'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'XDH', 'RRM2B'}, number: 2
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RRM2B'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Purine Metabolism And Related Disorders WP4224, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAD1L1'}, number: 1
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'TSC1', 'HRAS', 'AKT1', 'MAP2K1', 'SOS1', 'PTEN', 'AKT1S1', 'GRB2', 'EIF4EBP1', 'DEPTOR', 'PDK1'}, number: 12
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RICTOR', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 12
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'PIK3R1', 'PDK1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'MAP2K1', 'BRAF', 'SOS1', 'SOS2', 'GRB2', 'PIK3R1', 'PDK1'}, number: 11
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'PIK3R1', 'PDK1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PARP1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MAP2K2', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'AKT1S1', 'SOS2', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'DEPTOR', 'MAP2K1'}, number: 14
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'PIK3R1', 'PDK1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'SOS1', 'GRB2', 'PIK3R1', 'MAP2K1'}, number: 6
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'PIK3R1', 'MAP2K1', 'AKT1'}, number: 4
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'AKT1S1', 'DEPTOR', 'PARP1', 'PTEN'}, number: 4
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'SOS2', 'GRB2', 'PIK3R1', 'PDK1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'SOS2', 'PIK3R1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 10
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MAP2K2', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 11
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'PTEN', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 8
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'AKT1', 'BRAF', 'SOS1', 'GRB2', 'EIF4EBP1', 'MAP2K1'}, number: 9
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MAP2K2', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'AKT1S1', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 12
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'TSC1', 'MAP2K2', 'HRAS', 'AKT1', 'SOS1', 'PTEN', 'AKT1S1', 'SOS2', 'GRB2', 'EIF4EBP1', 'PIK3R1', 'MAP2K1'}, number: 13
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PIK3R1', 'PTEN'}, number: 3
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Relevant Molecular Pathways And Targeted Agents In TNBC WP5215, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CDC25B', 'MAPK13'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'RBBP4', 'CDK2', 'BARD1', 'CDKN1A', 'CCND1'}, number: 6
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CDC25B', 'MAPK13'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CDC25B', 'MAPK13'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CDC25B', 'MAPK13'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'SMC1A', 'MCM7', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'RB1'}, number: 16
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'CCND1', 'CDK6', 'RB1'}, number: 5
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CDC25B', 'MAPK13'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'SMC1A', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'RB1'}, number: 15
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'POLE2', 'CCNB1', 'CCNB2', 'RPA1', 'RFC5', 'CDK4', 'CDK1', 'RFC3', 'RPA2', 'CHEK1', 'CDKN1B', 'POLE', 'CDK6', 'FANCG', 'MSH6', 'CDK2', 'RPA3', 'CCND1', 'CCNE2', 'RFC4', 'POLD3', 'SMC1A', 'CDC25A', 'PCNA', 'CDKN1A', 'RB1'}, number: 26
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2'}, number: 7
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'SMC1A', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'RB1'}, number: 15
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'POLE2', 'POLD3', 'FANCG', 'CDC25A', 'RFC3', 'RPA2', 'MSH6', 'RPA1', 'CDK2', 'PCNA', 'CHEK1', 'RPA3', 'CDKN1A', 'CCND1', 'POLE', 'RFC5', 'RFC4'}, number: 17
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'SMC1A', 'CDC25A', 'CDK1', 'CCNB1', 'RPA2', 'CCNB2', 'CDK2', 'CHEK1', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2', 'RB1'}, number: 15
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1B', 'CDKN1A', 'RB1'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2'}, number: 7
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PCNA', 'NCOA3'}, number: 2
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PCNA'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PCNA', 'MAFG'}, number: 2
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFG'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CREBBP'}, number: 1
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Rubinstein Taybi Syndrome 1 WP5367, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2', 'JUN', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'JUN', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX3', 'TXNRD3', 'NFE2L2', 'TXNRD2', 'NFKB1', 'JUN', 'TXNRD1'}, number: 7
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GPX3', 'TXNRD3', 'NFE2L2', 'NFKB1', 'JUN', 'TXNRD1'}, number: 6
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GPX3', 'RELA', 'NFE2L2', 'TXNRD2', 'NFKB1', 'JUN', 'TXNRD1'}, number: 7
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'GPX3', 'RELA', 'NFE2L2', 'TXNRD2', 'NFKB1', 'JUN', 'TXNRD1'}, number: 7
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'JUN', 'CREM', 'RELA', 'NFKB1'}, number: 4
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'CREM', 'NFKB1'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B', 'IL6', 'CCL2', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'ICAM1', 'SERPINE1', 'NFKB1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'SERPINE1', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1', 'TXN'}, number: 6
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CAT', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'CCL2', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'CAT', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'ICAM1', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CAT', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'SERPINE1', 'NFKB1'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B', 'CCL2', 'RELA', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX3', 'SOD2', 'XDH', 'TXN', 'TXNRD3', 'CCL2', 'ICAM1', 'TXNRD2', 'CAT', 'NFKB1', 'SERPINE1', 'TXNRD1'}, number: 12
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IL1B', 'GPX3', 'TXN', 'TXNRD3', 'CAT', 'NFKB1', 'TXNRD1'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GPX3', 'SOD2', 'RELA', 'XDH', 'TXNRD2', 'CAT', 'NFKB1', 'SERPINE1', 'TXNRD1'}, number: 9
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'GPX3', 'SOD2', 'RELA', 'XDH', 'TXNRD2', 'CAT', 'NFKB1', 'TXNRD1'}, number: 8
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'IL6', 'RELA', 'NFKB1'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IL1B', 'IL6', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ABCA1', 'IL6', 'SERPINE1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL6', 'RELA', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'IL1B', 'IL6', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IL1B', 'IL6', 'NFKB1'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'RELA', 'NFKB1'}, number: 2
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CXCL8', 'RPS6KA3', 'IL6', 'RELA', 'JUN', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'RPS6KA3', 'IL6', 'RPS6KA1', 'CDK2', 'CDKN1A', 'CDKN2A', 'JUN', 'NFKB1'}, number: 9
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CXCL8', 'RPS6KA3', 'IL6', 'RELA', 'JUN', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'CXCL8', 'IL6', 'RELA', 'JUN', 'STAT3', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CXCL8', 'RPS6KA3', 'IL6', 'RELA', 'JUN', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL6', 'RELA', 'JUN', 'STAT3', 'NFKB1'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA3', 'JUN', 'STAT3', 'RPS6KA1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'IL6', 'RELA', 'JUN', 'STAT3', 'NFKB1'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CXCL8', 'RPS6KA3', 'IL6', 'RELA', 'JUN', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDKN2A', 'CDK6', 'JUN', 'NFKB1'}, number: 8
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'CDKN1A', 'CDKN2A', 'CDK6', 'STAT3'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CXCL8', 'RPS6KA3', 'IL6', 'RELA', 'JUN', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDKN2A', 'CDK6', 'JUN', 'NFKB1'}, number: 8
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'STAT3', 'IL6', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDK6'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'IL6', 'RELA', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDK6', 'NFKB1'}, number: 8
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDKN2A', 'CDK6', 'JUN', 'NFKB1'}, number: 8
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL6', 'RELA', 'JUN', 'STAT3', 'NFKB1'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'STAT3', 'CEBPB', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'JUN', 'RELA', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'JUN', 'CDK2', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'CDK2', 'CDKN1B', 'JUN', 'CDKN1A', 'CDKN2A', 'CDK6', 'CEBPB', 'NFKB1'}, number: 9
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'STAT3', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'RELA', 'RPS6KA1', 'CDKN2A', 'JUN', 'NFKB1'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RPS6KA3', 'RELA', 'RPS6KA1', 'JUN', 'STAT3', 'NFKB1'}, number: 6
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RPS6KA3', 'IL6', 'RELA', 'RPS6KA1', 'JUN', 'STAT3', 'NFKB1'}, number: 7
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IL6', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6', 'CDKN1B', 'CDKN1A', 'CEBPB', 'STAT3'}, number: 5
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'IL6', 'RELA', 'CDK2', 'CDKN1B', 'CDKN1A', 'CDK6', 'NFKB1'}, number: 8
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'IL6', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IL6', 'STAT3', 'NFKB1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'CDKN2A', 'JUN', 'RELA', 'NFKB1'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'LAMC2', 'RELA', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'CASP3', 'GADD45A', 'FN1', 'NFKB1'}, number: 12
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'COL4A4', 'BAX', 'COL4A2', 'LAMA1', 'FN1', 'LAMB3', 'NFKB1', 'LAMA2', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'COL4A1', 'COL4A3', 'CDK2', 'CCND1', 'LAMC2', 'ITGA6', 'COL4A5', 'AKT1', 'CDKN1A', 'ITGA3'}, number: 22
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'NFKB1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'LAMC2', 'RELA', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'CASP3', 'GADD45A', 'FN1', 'NFKB1'}, number: 12
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'PIK3R1', 'NFKB1'}, number: 8
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'LAMC2', 'RELA', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'CASP3', 'GADD45A', 'FN1', 'NFKB1'}, number: 12
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'PIK3R1', 'NFKB1'}, number: 8
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1', 'PIK3R1', 'PTEN'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'SKP1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 14
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'LAMC2', 'RELA', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'CASP3', 'GADD45A', 'FN1', 'NFKB1'}, number: 12
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'BAX', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'CCND1', 'CCNE2', 'GADD45A', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'PIK3R1', 'RB1'}, number: 21
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'AKT1', 'PIK3CB', 'PIK3CD', 'CASP3', 'GADD45G', 'CDKN1A', 'CCND1', 'PIK3R1', 'CDK6', 'RB1', 'GADD45A'}, number: 15
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'LAMC2', 'RELA', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'CASP3', 'GADD45A', 'FN1', 'NFKB1'}, number: 12
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'BAX', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'CCND1', 'CCNE2', 'GADD45A', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'PIK3R1', 'RB1'}, number: 21
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'LAMC2', 'RELA', 'PIK3R1', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'FN1', 'NFKB1'}, number: 10
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'APAF1', 'DDB2', 'BAX', 'AKT1', 'CDK2', 'CASP3', 'GADD45G', 'CDKN1B', 'CDKN1A', 'CCND1', 'RB1', 'CDK6', 'CCNE2', 'GADD45A'}, number: 16
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL4A4', 'COL4A2', 'LAMA1', 'FN1', 'LAMB3', 'NFKB1', 'LAMA2', 'CDK4', 'RELA', 'PIK3CB', 'PIK3CD', 'PTEN', 'COL4A1', 'CDKN1B', 'CDK6', 'COL4A3', 'CDK2', 'BCL2L1', 'CCND1', 'CCNE2', 'LAMC2', 'ITGA6', 'COL4A5', 'AKT1', 'CDKN1A', 'ITGA3', 'PIK3R1'}, number: 27
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'BAX', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'CCND1', 'CCNE2', 'GADD45A', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'PIK3R1', 'RB1'}, number: 21
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'PIK3R1', 'NFKB1'}, number: 8
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'PIK3CD', 'PIK3R1', 'NFKB1'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'NFKBIB', 'PIK3R1', 'NFKB1'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APAF1', 'DDB2', 'BAX', 'TRAF4', 'PTEN', 'CDK2', 'GADD45A', 'CDKN1A', 'CCND1', 'NFKB1'}, number: 10
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'BAX', 'NFKB1', 'CDK4', 'PIK3CB', 'PIK3CD', 'PTEN', 'CDKN1B', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'CCND1', 'CCNE2', 'GADD45A', 'DDB2', 'AKT1', 'GADD45G', 'CDKN1A', 'PIK3R1', 'RB1'}, number: 21
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'PIK3CD', 'NFKBIA', 'NFKBIB', 'PIK3R1', 'NFKB1'}, number: 8
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RELA', 'AKT1', 'NFKBIA', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RELA', 'AKT1', 'PIK3CB', 'NFKBIA', 'PTEN', 'TRAF5', 'CASP3', 'PIK3R1', 'NFKB1'}, number: 9
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'TRAF5', 'AKT1', 'NFKB1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GADD45B', 'COL4A4', 'COL4A2', 'LAMA1', 'FN1', 'LAMB3', 'LAMA2', 'PIK3CB', 'PIK3CD', 'PTEN', 'COL4A1', 'CDKN1B', 'GADD45A', 'LAMC2', 'ITGA6', 'AKT1', 'CDKN1A', 'ITGA3', 'PIK3R1', 'RB1'}, number: 20
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL4A4', 'COL4A2', 'LAMA1', 'FN1', 'LAMB3', 'NFKB1', 'LAMA2', 'CDK4', 'RELA', 'PIK3CB', 'PIK3CD', 'PTEN', 'COL4A1', 'CDKN1B', 'CDK6', 'COL4A3', 'CDK2', 'BCL2L1', 'CCND1', 'CCNE2', 'LAMC2', 'ITGA6', 'COL4A5', 'AKT1', 'CDKN1A', 'ITGA3', 'PIK3R1'}, number: 27
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'PIK3CB', 'PTEN', 'TRAF5', 'PIK3R1', 'NFKB1'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'TRAF5', 'AKT1', 'NFKB1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'APAF1', 'RELA', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'BCL2L1', 'PIK3R1', 'BIRC3', 'NFKB1'}, number: 11
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'YY1', 'AKT1', 'PRKAB1', 'PRKAB2', 'PRKAG1'}, number: 5
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'ATF6', 'MBTPS2', 'MBTPS1'}, number: 3
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1', 'ATF6', 'MBTPS2', 'MBTPS1'}, number: 4
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'ATF6', 'MBTPS2', 'MBTPS1'}, number: 3
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'AKT1', 'PRKAB2', 'PRKAB1', 'PRKAG1'}, number: 4
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DBI', 'PRKAB1', 'PRKAB2', 'PPARG', 'PRKAG1'}, number: 5
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1', 'ATF6', 'MBTPS2', 'MBTPS1'}, number: 4
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'AKT1', 'FDFT1', 'PPARG', 'HMGCR', 'NR1H2', 'FDPS', 'IDI1', 'LPIN1'}, number: 9
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 14
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'REL', 'CASP3', 'MAP3K1', 'GRB2', 'MAP3K5', 'MAP2K3', 'JUN', 'PRKCZ', 'NFKB1'}, number: 16
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'CUL1', 'BAX', 'AKT1', 'SOS1', 'CSNK2A1', 'MAP3K1', 'GRB2', 'MAP3K5', 'MAP2K3', 'JUN', 'NFKB1'}, number: 13
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'MAP3K5', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 15
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'JUN', 'CREBBP', 'NFKB1'}, number: 4
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'MAP3K5', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 15
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'REL', 'CASP3', 'MAP3K1', 'GRB2', 'MAP3K5', 'MAP2K3', 'JUN', 'PRKCZ', 'NFKB1'}, number: 16
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'GRB2', 'CREBBP', 'JUN', 'PRKCZ', 'NFKB1'}, number: 11
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'REL', 'CASP3', 'MAP3K1', 'GRB2', 'MAP3K5', 'MAP2K3', 'JUN', 'PRKCZ', 'NFKB1'}, number: 16
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'GRB2', 'CREBBP', 'JUN', 'PRKCZ', 'NFKB1'}, number: 11
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'AKT1', 'SOS1', 'MAP3K1', 'GRB2', 'JUN', 'PRKCZ'}, number: 7
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'MAP3K5', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 15
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'CUL1', 'PPP2CA', 'BAX', 'NFKBIB', 'MAP3K5', 'CDC37', 'BIRC3', 'NFKB1', 'MAP2K6', 'NSMAF', 'TNFAIP3', 'SKP1', 'REL', 'CREBBP', 'PSMD2', 'FBXW11', 'DIABLO', 'APAF1', 'PYGL', 'NFKBIA', 'CSNK2A1', 'CASP3', 'MAP3K1', 'BCL2L1', 'GRB2', 'JUN', 'PRKCZ', 'TRADD', 'AKT1', 'HSP90AA1', 'SOS1', 'GLUL', 'MAP2K3', 'BAD', 'TXN'}, number: 37
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'REL', 'CASP3', 'MAP3K1', 'GRB2', 'MAP3K5', 'MAP2K3', 'JUN', 'PRKCZ', 'NFKB1'}, number: 16
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'APAF1', 'HRAS', 'BAX', 'AKT1', 'SOS1', 'CASP3', 'MAP3K1', 'GRB2', 'BAD', 'JUN', 'NFKB1'}, number: 12
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'AKT1', 'SOS1', 'CASP3', 'GRB2', 'BAD'}, number: 8
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'MAP2K6', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'REL', 'CASP3', 'MAP3K1', 'GRB2', 'MAP3K5', 'MAP2K3', 'JUN', 'PRKCZ', 'NFKB1'}, number: 16
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'APAF1', 'HRAS', 'BAX', 'AKT1', 'SOS1', 'CASP3', 'MAP3K1', 'GRB2', 'BAD', 'JUN', 'NFKB1'}, number: 12
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'MAP3K5', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 15
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'GRB2', 'PRKCZ', 'NFKB1'}, number: 9
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CASP3', 'APAF1', 'AKT1', 'BAX'}, number: 4
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PPP2CA', 'AKT1', 'HSP90AA1', 'SOS1', 'REL', 'BCL2L1', 'GRB2', 'BAD', 'CDC37', 'NFKB1'}, number: 12
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'APAF1', 'HRAS', 'BAX', 'AKT1', 'SOS1', 'CASP3', 'MAP3K1', 'GRB2', 'BAD', 'JUN', 'NFKB1'}, number: 12
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'GRB2'}, number: 5
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'GRB2', 'CREBBP', 'JUN', 'PRKCZ', 'NFKB1'}, number: 11
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'NFKBIA', 'SOS1', 'GRB2', 'BAD', 'NFKB1'}, number: 6
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'AKT1', 'NFKBIA', 'NFKBIB', 'REL', 'MAP3K1', 'MAP2K3', 'JUN', 'PRKCZ', 'NFKB1'}, number: 10
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APAF1', 'BAX', 'HSP90AA1', 'TXN', 'CSNK2A1', 'JUN', 'NFKB1'}, number: 7
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'APAF1', 'HRAS', 'BAX', 'AKT1', 'HSP90AA1', 'TXN', 'SOS1', 'CASP3', 'MAP3K1', 'GRB2', 'BAD', 'JUN', 'NFKB1'}, number: 14
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'NFKBIA', 'SOS1', 'NFKBIB', 'GRB2', 'CREBBP', 'JUN', 'PRKCZ', 'NFKB1'}, number: 11
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'HRAS', 'BAX', 'NFKBIB', 'MAP3K5', 'BIRC3', 'NFKB1', 'DIABLO', 'APAF1', 'NFKBIA', 'CASP3', 'MAP3K1', 'BCL2L1', 'GRB2', 'JUN', 'TRADD', 'AKT1', 'SOS1', 'BAD'}, number: 19
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PPP2CA', 'AKT1', 'NFKBIA', 'SOS1', 'CSNK2A1', 'CASP3', 'MAP3K1', 'GRB2', 'BAD', 'JUN', 'NFKB1'}, number: 13
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'PPP2CA', 'AKT1', 'NFKBIA', 'CSNK2A1', 'CASP3', 'MAP3K1', 'GRB2', 'GLUL', 'BAD', 'JUN', 'NFKB1'}, number: 12
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'GLUL', 'NFKB1'}, number: 3
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'HRAS', 'AKT1', 'SOS1', 'GRB2'}, number: 5
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PPP2CA', 'AKT1', 'HSP90AA1', 'SOS1', 'GRB2', 'BAD', 'CDC37'}, number: 9
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'HRAS', 'PPP2CA', 'AKT1', 'HSP90AA1', 'SOS1', 'BCL2L1', 'GRB2', 'BAD', 'CDC37', 'NFKB1'}, number: 11
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 14
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'AKT1', 'GLUL', 'NFKB1'}, number: 3
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'GLUL', 'NFKB1'}, number: 3
Term: TNF Alpha Signaling WP231, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'DIABLO', 'APAF1', 'TRADD', 'BAX', 'AKT1', 'NFKBIA', 'NFKBIB', 'CASP3', 'MAP3K1', 'BCL2L1', 'MAP3K5', 'BAD', 'JUN', 'BIRC3', 'NFKB1'}, number: 15
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'NRAS', 'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'GRB2', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TSC1', 'RPS6KA3', 'HRAS', 'RPS6KA1', 'ACTG1', 'PRKAB1', 'SOS1', 'AKT1S1', 'FGFR1', 'GRB2', 'MAP3K5', 'PRKAB2', 'MAP2K3', 'RPS6KB2', 'PRKAG1'}, number: 15
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'MAP3K5'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'MAP3K5'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'NRAS', 'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'GRB2', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3'}, number: 9
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'NRAS', 'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'GRB2', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3'}, number: 9
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'RPS6KA1', 'SOS1', 'SOS2', 'GRB2'}, number: 6
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'MAP3K5'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'MAP3K5', 'GRB2', 'MAP2K3', 'ADCY9', 'ADCY3'}, number: 11
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'NRAS', 'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'GRB2', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'NRAS', 'RPS6KA3', 'HRAS', 'SOS1', 'FGFR1', 'SOS2', 'MAP3K5', 'GRB2', 'MAPK13', 'MAP2K3'}, number: 10
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'MAP3K5'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3'}, number: 9
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'CREB5', 'SOS1', 'CREB3', 'PRKAB1', 'AKT1S1', 'FGFR1', 'SOS2', 'GRB2', 'PRKAB2', 'RPS6KB2', 'CREB3L4', 'PRKAG1'}, number: 15
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'RPS6KA1', 'SOS1', 'GRB2'}, number: 6
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3'}, number: 9
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'GRB2', 'SOS1'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K3'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ACSL5', 'ACSL1', 'PRKAB1', 'CPT1A', 'AKT1S1', 'PRKAB2', 'PPARG', 'PRKAG1'}, number: 8
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'GRB2', 'SOS2'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NRAS', 'HRAS', 'SOS1', 'ADCY6', 'ADCY7', 'SOS2', 'GRB2', 'ADCY9', 'ADCY3'}, number: 9
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'RPS6KA1', 'SOS1', 'GRB2', 'MAP3K5'}, number: 7
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NRAS', 'TSC1', 'RPS6KA3', 'HRAS', 'RPS6KA1', 'SOS1', 'GRB2'}, number: 7
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'RPS6KA3', 'HRAS', 'RPS6KA1', 'GRB2', 'ADCY3'}, number: 5
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'ADCY3'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'RPS6KA1', 'SOS1', 'GRB2'}, number: 6
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'CREB5', 'ACSL1', 'CREB3', 'SOS1', 'AKT1S1', 'FGFR1', 'GRB2', 'RPS6KB2', 'PPARG', 'CREB3L4'}, number: 13
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'NRAS', 'TSC1', 'HRAS', 'CREB5', 'SOS1', 'CREB3', 'AKT1S1', 'FGFR1', 'SOS2', 'GRB2', 'RPS6KB2', 'CREB3L4'}, number: 12
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'ADCY3'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'ADCY3'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'MAP3K5'}, number: 1
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'AKT1', 'MAP2K1', 'BRAF', 'STAT1', 'MAP2K3', 'PIK3R1', 'GNA12'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K6', 'CDK4', 'HRAS', 'RPS6KA1', 'AKT1', 'MAP2K1', 'CDK2', 'STAT1', 'MAP2K3', 'JAK1'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT1', 'STAT3', 'JAK1'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'AKT1', 'MAP2K1', 'BRAF', 'STAT1', 'MAP2K3', 'PIK3R1', 'GNA12'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'GNB1', 'GNAI2', 'GNAI1', 'AKT1', 'PIK3R1', 'MAP2K1', 'BRAF', 'STAT1', 'ADCY3', 'GNAI3', 'STAT3', 'JAK1'}, number: 13
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'AKT1', 'MAP2K1', 'BRAF', 'STAT1', 'MAP2K3', 'PIK3R1', 'GNA12'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'GNB1', 'GNAI2', 'GNAI1', 'AKT1', 'PIK3R1', 'MAP2K1', 'BRAF', 'STAT1', 'ADCY3', 'GNAI3', 'STAT3', 'JAK1'}, number: 13
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'RPS6KA1', 'AKT1', 'MAP2K1', 'BRAF', 'PLD1', 'STAT1', 'PIK3R1', 'STAT3', 'JAK1'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'GNB1', 'GNAI2', 'GNAI1', 'AKT1', 'PIK3R1', 'BRAF', 'STAT1', 'MAP2K3', 'ADCY3', 'GNAI3', 'STAT3', 'MAP2K1'}, number: 14
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'AKT1', 'MAP2K1', 'BRAF', 'STAT1', 'MAP2K3', 'PIK3R1', 'GNA12'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDK4', 'HRAS', 'AKT1', 'CDK2', 'CDKN1B', 'RBL2', 'PIK3R1', 'RB1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'HRAS', 'AKT1', 'BRAF', 'PIK3R1', 'STAT3', 'MAP2K1', 'RB1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'MAP2K6', 'HRAS', 'AKT1', 'MAP2K1', 'BRAF', 'STAT1', 'MAP2K3', 'PIK3R1', 'GNA12'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDK4', 'HRAS', 'AKT1', 'CDK2', 'CDKN1B', 'RBL2', 'PIK3R1', 'RB1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'GNB1', 'GNAI2', 'GNAI1', 'AKT1', 'PIK3R1', 'MAP2K1', 'BRAF', 'STAT1', 'ADCY3', 'GNAI3', 'STAT3', 'JAK1'}, number: 13
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'APEX1', 'AKT1', 'CDK2', 'CDKN1B', 'RB1'}, number: 6
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'HRAS', 'GNB1', 'AKT1', 'MAP2K1', 'PLD1', 'CDK2', 'CDKN1B', 'RBL2', 'PIK3R1', 'JAK1'}, number: 11
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDK4', 'HRAS', 'AKT1', 'CDK2', 'CDKN1B', 'RBL2', 'PIK3R1', 'RB1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'HRAS', 'AKT1', 'RPS6KA1', 'BRAF', 'MAP2K1'}, number: 5
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'GNB1', 'GNAI2', 'GNAI1', 'AKT1', 'PIK3R1', 'MAP2K1', 'BRAF', 'STAT1', 'ADCY3', 'GNAI3', 'STAT3', 'JAK1'}, number: 13
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'AKT1', 'JAK1', 'STAT1', 'PIK3R1', 'GNAQ', 'STAT3', 'MAP2K1'}, number: 7
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K6', 'AKT1', 'MAP2K3', 'PIK3R1', 'MAP2K1'}, number: 5
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APEX1', 'CDK2'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK4', 'HRAS', 'AKT1', 'CDK2', 'CDKN1B', 'RBL2', 'PIK3R1', 'RB1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'GNB1', 'GNAI2', 'GNAI1', 'AKT1', 'PIK3R1', 'MAP2K1', 'BRAF', 'STAT1', 'ADCY3', 'GNAI3', 'STAT3', 'JAK1'}, number: 13
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HRAS', 'AKT1', 'RPS6KA1', 'BRAF', 'PIK3R1', 'MAP2K1'}, number: 6
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'RPS6KA1', 'AKT1', 'BRAF', 'STAT1', 'PIK3R1', 'STAT3', 'MAP2K1'}, number: 8
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'HRAS', 'PIK3R1', 'RPS6KA1', 'AKT1', 'MAP2K1', 'STAT1', 'ADCY3', 'STAT3', 'JAK1'}, number: 9
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'AKT1', 'STAT1', 'ADCY3', 'STAT3', 'JAK1'}, number: 5
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'HRAS', 'AKT1', 'RPS6KA1', 'BRAF', 'MAP2K1'}, number: 5
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'GNB1', 'AKT1', 'MAP2K1', 'CDKN1B', 'STAT1', 'RBL2', 'PIK3R1', 'STAT3', 'JAK1', 'RB1'}, number: 11
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'HRAS', 'GNB1', 'AKT1', 'MAP2K1', 'CDK2', 'CDKN1B', 'RBL2', 'PIK3R1', 'JAK1'}, number: 10
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PIK3R1', 'AKT1', 'STAT1', 'ADCY3', 'STAT3', 'JAK1'}, number: 6
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'AKT1', 'STAT1', 'ADCY3', 'STAT3', 'JAK1'}, number: 5
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'PIK3R1', 'AKT1'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'DNM1', 'PLD1'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PLD1'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GCLM', 'GSS', 'GPX3', 'GCLC'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'GPX3', 'GCLC'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GPX3', 'GCLC'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'GPX3', 'GCLC'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PSAT1', 'PHGDH', 'SHMT1', 'SHMT2'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PSAT1', 'PHGDH', 'SHMT1', 'SHMT2'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PSAT1', 'PHGDH', 'SHMT1', 'SHMT2'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1', 'PHGDH'}, number: 2
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PSAT1', 'PHGDH', 'SHMT1', 'SHMT2'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'GOT1'}, number: 1
Term: Trans Sulfuration Pathway WP2333, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'NFE2L2', 'HMOX1', 'NQO1', 'KEAP1'}, number: 8
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC7A11', 'PRKCA', 'GCLM', 'GCLC', 'EPHB2', 'MAF', 'NFE2L2', 'HMOX1', 'NQO1', 'CEBPB', 'KEAP1'}, number: 11
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFE2L2'}, number: 4
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'NQO1', 'HMOX1', 'GCLC', 'NFE2L2'}, number: 4
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CEBPB'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EIF4EBP1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EIF4EBP1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'EIF4EBP1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'EEF2K', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'EEF2K', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF2S1', 'EIF2S2', 'EEF2', 'EEF2K', 'EIF4EBP1'}, number: 5
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'EEF2', 'EIF2S1', 'EIF2S2', 'EIF4EBP1'}, number: 4
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'EEF2K', 'EIF4EBP1'}, number: 2
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EIF4EBP1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EIF4EBP1'}, number: 1
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Translation Factors WP107, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'EED', 'RBBP4', 'EZH2', 'CDKN2A', 'SUZ12'}, number: 6
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN2A', 'CDK4', 'CDK6', 'RB1'}, number: 4
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN2A', 'CDK4', 'CDK6', 'RB1'}, number: 4
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN2A', 'CDK4', 'CDK6', 'RB1'}, number: 4
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK4', 'CDK6', 'RB1'}, number: 3
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'CDK6'}, number: 2
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN2A', 'CDK4', 'CDK6', 'RB1'}, number: 4
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN2A', 'CDK4', 'CDK6', 'RB1'}, number: 4
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RB1'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'CDK6'}, number: 2
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Tumor Suppressor Activity Of SMARCB1 WP4204, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'CDKN2A'}, number: 1
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FZD1', 'SERPINF1', 'LRP6'}, number: 3
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'MBTPS2', 'MBTPS1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MBTPS2', 'MBTPS1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'MBTPS2', 'MBTPS1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FZD1', 'SERPINF1', 'LRP6'}, number: 3
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MBTPS2', 'MBTPS1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FZD1'}, number: 1
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA1', 'P4HA2', 'PLOD1'}, number: 3
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'RTCB', 'PPP1R15A', 'ERN1', 'TXNIP', 'PMAIP1', 'NFE2L2', 'HSPA5', 'CASP2', 'MBTPS2', 'ATF6', 'MBTPS1'}, number: 13
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'RTCB', 'PPP1R15A', 'ERN1', 'TXNIP', 'PMAIP1', 'NFE2L2', 'HSPA5', 'CASP2', 'MBTPS2', 'ATF6', 'MBTPS1'}, number: 13
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'RTCB', 'PPP1R15A', 'ERN1', 'TXNIP', 'PMAIP1', 'NFE2L2', 'HSPA5', 'CASP2', 'MBTPS2', 'ATF6', 'MBTPS1'}, number: 13
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1', 'NFE2L2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'IL1B', 'EIF2S1', 'RTCB', 'PPP1R15A', 'ERN1', 'TXNIP', 'PMAIP1', 'NFE2L2', 'HSPA5', 'CASP2', 'MBTPS2', 'ATF6', 'MBTPS1'}, number: 13
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'PMAIP1', 'CASP2', 'NFE2L2'}, number: 3
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'EIF2S1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'IL1B', 'EIF2S1'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'IL1B'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'PMAIP1', 'CASP2'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'BCL2L1', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'FN1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'NFKBIA', 'PAK1', 'GRB2', 'FAS', 'JUN', 'PRKCZ', 'MAP2K1', 'CACNA2D1', 'MAP2K2', 'AKT1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'HBEGF', 'MAP3K5', 'FN1', 'DKK1', 'NFKB1', 'MAP2K6', 'MKNK1', 'NDRG1', 'ACTG1', 'TEAD4', 'EPHA2', 'AMOT', 'PLAU', 'PAK1', 'GRB2', 'CCND1', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'RPS6KA5', 'AKT1S1', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'SHC1'}, number: 28
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'HSPA1A', 'BCL2L1', 'PRKD1', 'MAP3K5', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS', 'STAT1', 'CREBBP', 'JUN', 'STAT3', 'NFKB1'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'HSPA1A', 'BCL2L1', 'PRKD1', 'MAP3K5', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'FN1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'NFKBIA', 'PAK1', 'GRB2', 'FAS', 'JUN', 'PRKCZ', 'MAP2K1', 'CACNA2D1', 'MAP2K2', 'AKT1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): {'HRAS', 'NFKB1', 'CXCL8', 'RELA', 'PXN', 'CREBBP', 'STAT3', 'NFKBIA', 'PAK1', 'GRB2', 'JUN', 'PRKCZ', 'MAP2K1', 'PRKCB', 'AKT1', 'CCL2', 'ICAM1', 'STAT1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 21
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'FN1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'NFKBIA', 'PAK1', 'GRB2', 'FAS', 'JUN', 'PRKCZ', 'MAP2K1', 'CACNA2D1', 'MAP2K2', 'AKT1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'STAT3', 'NFKBIA', 'FOXO3', 'PRKCZ', 'PAK1', 'STAT1', 'PXN', 'CREBBP', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 18
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'EPS15', 'RAB5A', 'RICTOR', 'CFL1', 'GRB10', 'GJA1', 'STAT3', 'ITCH', 'PAK1', 'GRB2', 'SYNJ1', 'JUN', 'MAP2K1', 'HGS', 'PRKCZ', 'MAP2K2', 'PRKCB', 'IQGAP1', 'SH2D2A', 'AKT1', 'GAB1', 'RPS6KA5', 'STAT1', 'PIK3R1', 'CAV1', 'SHC1'}, number: 28
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'HSPA1A', 'BCL2L1', 'PRKD1', 'MAP3K5', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'HRAS', 'PPP2CA', 'MAP3K5', 'NFKB1', 'MAP2K6', 'RELA', 'PXN', 'CREBBP', 'FBXW11', 'STAT3', 'NFKBIA', 'BCL2L1', 'PAK1', 'GRB2', 'JUN', 'PRKCZ', 'MAP2K1', 'PRKCB', 'AKT1', 'HSP90AA1', 'CCL2', 'STAT1', 'MAP2K3', 'PIK3R1', 'FOXO3', 'SHC1', 'TXN'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'ATF6', 'ERN1', 'TXNIP'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'FN1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'NFKBIA', 'PAK1', 'GRB2', 'FAS', 'JUN', 'PRKCZ', 'MAP2K1', 'CACNA2D1', 'MAP2K2', 'AKT1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PLAU', 'FOXO3', 'GRB2', 'CCND1', 'PIK3R1', 'FAS', 'JUN', 'SHC1', 'NFKB1'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'MAP2K2', 'PRKCA', 'HRAS', 'PRKCB', 'AKT1', 'GRB2', 'CCND1', 'PIK3R1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'HSPA1A', 'MAP3K5', 'FN1', 'NFKB1', 'MAP2K6', 'CXCL8', 'MKNK1', 'RELA', 'FLNB', 'NFKBIA', 'PAK1', 'GRB2', 'FAS', 'JUN', 'PRKCZ', 'MAP2K1', 'CACNA2D1', 'MAP2K2', 'AKT1', 'RPS6KA5', 'CCL2', 'PAK2', 'STAT1', 'MAP2K3', 'PIK3R1'}, number: 27
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'ERN1', 'AKT1', 'PLAU', 'FOXO3', 'TXNIP', 'ATF6', 'GRB2', 'CCND1', 'PIK3R1', 'FAS', 'JUN', 'SHC1', 'NFKB1'}, number: 14
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'ATF6', 'ERN1', 'TXNIP'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'HSPA1A', 'BCL2L1', 'PRKD1', 'MAP3K5', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'STAT3', 'NFKBIA', 'PRKCZ', 'PAK1', 'ICAM1', 'STAT1', 'PXN', 'GRB2', 'PIK3R1', 'FN1', 'FOXO3', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 18
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'FAS', 'CCND1', 'AKT1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PPP2CA', 'FN1', 'RAB5A', 'NFKB1', 'RELA', 'EPHA2', 'BCL2L1', 'PAK1', 'GRB2', 'CCND1', 'MAP2K1', 'MAP2K2', 'ETS1', 'PRKCB', 'AKT1', 'GAB1', 'ITGB5', 'HSP90AA1', 'AKT1S1', 'PAK2', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 25
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1', 'PLAU', 'FOXO3', 'GRB2', 'CCND1', 'PIK3R1', 'FAS', 'JUN', 'SHC1', 'NFKB1'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): {'HRAS', 'MKNK1', 'AKT1', 'GAB1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): {'HRAS', 'PRKCB', 'RELA', 'AKT1', 'STAT3', 'NFKBIA', 'FOXO3', 'PRKCZ', 'PAK1', 'STAT1', 'PXN', 'CREBBP', 'GRB2', 'PIK3R1', 'JUN', 'SHC1', 'MAP2K1', 'NFKB1'}, number: 18
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'MAP2K2', 'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'SHC1', 'GRB2', 'STAT1', 'ADRB2', 'PIK3R1', 'STAT3', 'MAP2K1', 'NFKB1'}, number: 13
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): {'MAP2K2', 'MAP2K6', 'RELA', 'AKT1', 'MAP2K1', 'NFKBIA', 'CCL2', 'MAP2K3', 'PIK3R1', 'JUN', 'PRKCZ', 'NFKB1'}, number: 12
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'PGD', 'HSPA1A', 'HBEGF', 'DKK1', 'NFKB1', 'EPHA2', 'NCF2', 'PLAU', 'CCND1', 'FAS', 'JUN', 'SOD2', 'PRKCB', 'HSP90AA1', 'AKT1S1', 'CCL2', 'ICAM1', 'PRDX6', 'TXN'}, number: 20
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PGD', 'EPHB2', 'HSPA1A', 'HBEGF', 'FYN', 'NFKB1', 'TXNIP', 'EPHA2', 'ERN1', 'PLAU', 'GRB2', 'CCND1', 'SHC1', 'FAS', 'JUN', 'AKT1', 'HSP90AA1', 'PIK3R1', 'PRDX6', 'FOXO3', 'ATF6', 'TXN'}, number: 24
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'HRAS', 'NFKB1', 'RELA', 'PXN', 'CREBBP', 'STAT3', 'NFKBIA', 'PAK1', 'GRB2', 'JUN', 'PRKCZ', 'MAP2K1', 'SOD2', 'PRKCB', 'AKT1', 'STAT1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 19
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'HRAS', 'HSPA1A', 'MAP3K5', 'NFKB1', 'MKNK1', 'RELA', 'PRKD1', 'BIRC5', 'NFKBIA', 'BCL2L1', 'GRB2', 'FAS', 'JUN', 'MAP2K1', 'SOD2', 'AKT1', 'GAB1', 'PIK3R1', 'SHC1'}, number: 19
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'PPP2CA', 'FYN', 'NFKB1', 'MKNK1', 'CFL1', 'RELA', 'STAT3', 'NCF2', 'NFKBIA', 'GRB2', 'JUN', 'MAP2K1', 'MAP2K2', 'AKT1', 'GAB1', 'RPS6KA5', 'STAT1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 21
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'PRKCA', 'HRAS', 'PPP2CA', 'FYN', 'NFKB1', 'CFL1', 'RELA', 'STAT3', 'NCF2', 'NFKBIA', 'GRB2', 'JUN', 'MAP2K1', 'MAP2K2', 'PRKCB', 'AKT1', 'RPS6KA5', 'STAT1', 'PIK3R1', 'FOXO3', 'SHC1'}, number: 21
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'CFL1', 'AKT1', 'STAT1', 'STAT3', 'NFKB1'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): {'HRAS', 'MKNK1', 'AKT1', 'GAB1', 'GRB2', 'SHC1', 'MAP2K1'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'EPHA2', 'HRAS', 'PPP2CA', 'AKT1', 'HSP90AA1', 'ITGB5', 'AKT1S1', 'FAS', 'STAT1', 'GRB2', 'PIK3R1', 'FN1', 'FOXO3', 'STAT3', 'MAP2K1'}, number: 16
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'EPHA2', 'PRKCA', 'HRAS', 'PPP2CA', 'RELA', 'AKT1', 'HSP90AA1', 'ITGB5', 'AKT1S1', 'BCL2L1', 'GRB2', 'CCND1', 'PIK3R1', 'FN1', 'FOXO3', 'MAP2K1', 'NFKB1'}, number: 18
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'BCL2L1', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'CFL1', 'AKT1', 'STAT3', 'STAT1', 'PIK3R1', 'SHC1', 'NFKB1'}, number: 9
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): {'PRKCA', 'PRKCB', 'CFL1', 'AKT1', 'STAT1', 'STAT3', 'NFKB1'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'BIRC5', 'RELA', 'AKT1', 'NFKBIA', 'HSPA1A', 'BCL2L1', 'PRKD1', 'MAP3K5', 'PIK3R1', 'FAS', 'JUN', 'NFKB1'}, number: 12
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDKN1A', 'USP1'}, number: 2
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'USP1'}, number: 2
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: miR 517 Relationship With ARCN1 And USP1 WP3596, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1086, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1087, Title of overlapping gene(s): {'CASP3', 'FAS', 'GADD45A'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK4', 'BAX', 'BRCA1', 'CDK2', 'CDKN1A', 'CCND1'}, number: 6
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1262, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1365, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/149, Title of overlapping gene(s): {'CASP3', 'FAS', 'GADD45A'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1493, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1497, Title of overlapping gene(s): {'CASP3', 'FAS', 'GADD45A'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1500, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1575, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1579, Title of overlapping gene(s): {'CASP3', 'APAF1', 'BAX'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1633, Title of overlapping gene(s): {'CASP3', 'FAS', 'GADD45A'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CCNG1', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 34
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1670, Title of overlapping gene(s): {'CDK4', 'GADD45B', 'DDB2', 'BAX', 'CASP3', 'GADD45G', 'CDKN1A', 'CCND1', 'RB1', 'CDK6', 'GADD45A'}, number: 11
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1750, Title of overlapping gene(s): {'CASP3', 'FAS', 'GADD45A'}, number: 3
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 33
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1817, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1818, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 33
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2'}, number: 8
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 33
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/201, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2012, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/202, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BAX', 'CCNG1', 'SFN', 'RRM2B', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'APAF1', 'CDK2', 'MRE11', 'CCND1', 'FAS', 'GADD45A', 'DDB2', 'CDC25C', 'CDC25A', 'BRCA1', 'CDKN1A'}, number: 19
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GADD45B', 'BAX', 'CCNB1', 'CCNB2', 'CDK5', 'CDK4', 'SFN', 'RRM2B', 'CDK1', 'SESN1', 'RPA2', 'PMAIP1', 'CHEK1', 'CDKN1B', 'TLK1', 'CDK6', 'APAF1', 'CDK2', 'CASP3', 'MRE11', 'CCND1', 'FAS', 'CCNE2', 'GADD45A', 'DDB2', 'SMC1A', 'CDC25C', 'CDC25A', 'BRCA1', 'GADD45G', 'CDKN1A', 'RAD1', 'RB1'}, number: 33
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'CASP3', 'CDK5'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/386, Title of overlapping gene(s): {'CASP3', 'CDK5'}, number: 2
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/388, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/389, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GADD45B', 'CDKN1B', 'CDKN1A', 'RB1', 'FAS', 'GADD45A'}, number: 6
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDK4', 'BRCA1', 'CDK2', 'CDKN1B', 'CDKN1A', 'CCND1', 'CDK6', 'CCNE2'}, number: 8
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/55, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/618, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/875, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/898, Title of overlapping gene(s): {'APAF1', 'BAX', 'PMAIP1', 'CASP3', 'FAS'}, number: 5
Section 8.5.4 Tabulation gene overlap
In this section, a table is created that contains the number of overlapping genes and number of total genes in preparation for section 8.5.5.
final_geneoverlaptable_C4=pd.DataFrame.from_dict(overlapping_genes_betweenORA_and_significantKEs4,orient='index')
Section 8.5.5 Percent overlap calculation
In this section, the percent overlap for the genesets are calculated.
Step 73. Lastly, the percent overlap is calculated and add the result as a column to the dataframe. This is first done by running a for loop to calculate the total number of genes belonging to the enriched pathways of ORA.
variable_count4= {}
for index, row in exploded_df4_ORApathwaytable.iterrows():
unique_KE = row['Term']
gene_expression_value = row['Genes']
if unique_KE not in variable_count4:
variable_count4[unique_KE] = 1
else:
variable_count4[unique_KE] += 1
print("The total number of genes: ")
print(variable_count4)
The total number of genes:
{'Retinoblastoma Gene In Cancer WP2446': 66, 'VEGFA VEGFR2 Signaling WP3888': 184, 'Cell Cycle WP179': 68, 'G1 To S Cell Cycle Control WP45': 42, 'DNA Replication WP466': 30, 'Ferroptosis WP4313': 37, 'Nuclear Receptors Meta Pathway WP2882': 127, 'DNA Repair Pathways Full Network WP4946': 59, 'P53 Transcriptional Gene Network WP4963': 48, 'DNA Mismatch Repair WP531': 18, 'Ciliary Landscape WP4352': 93, 'mRNA Processing WP411': 59, 'Androgen Receptor Network In Prostate Cancer WP2263': 53, 'DNA IR Damage And Cellular Response Via ATR WP4016': 42, 'Ebola Virus Infection In Host WP4217': 58, 'Proteasome Degradation WP183': 32, 'Glucocorticoid Receptor Pathway WP2880': 36, 'Parkin Ubiquitin Proteasomal System Pathway WP2359': 34, 'Nucleotide Excision Repair WP4753': 24, 'NRF2 Pathway WP2884': 57, 'Copper Homeostasis WP3286': 26, 'Tumor Suppressor Activity Of SMARCB1 WP4204': 19, 'Small Cell Lung Cancer WP4658': 43, 'miRNA Regulation Of DNA Damage Response WP1530': 34, 'DNA Damage Response WP707': 34, 'EGFR Tyrosine Kinase Inhibitor Resistance WP4806': 40, 'Non Small Cell Lung Cancer WP4255': 35, 'Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612': 15, 'NRF2 ARE Regulation WP4357': 15, 'Transcriptional Activation By NRF2 In Response To Phytochemicals WP3': 11, 'Gastrin Signaling WP4659': 50, 'Selenium Metabolism And Selenoproteins WP28': 24, 'Integrated Cancer Pathway WP1971': 24, 'Nucleotide Excision Repair In Xeroderma Pigmentosum WP5114': 32, 'Cytoplasmic Ribosomal Proteins WP477': 25, 'Glioblastoma Signaling WP2261': 38, 'MAPK Cascade WP422': 19, 'Relevant Molecular Pathways And Targeted Agents In TNBC WP5215': 21, 'IL6 Signaling WP364': 23, 'Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982': 33, 'Gastric Cancer Network 1 WP2361': 15, 'Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864': 26, 'Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113': 17, 'Prolactin Signaling WP2037': 34, 'Pancreatic Adenocarcinoma Pathway WP4263': 38, 'Selenium Micronutrient Network WP15': 35, 'Clear Cell Renal Cell Carcinoma Pathways WP4018': 37, 'Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240': 10, 'Base Excision Repair WP4752': 17, 'BDNF TrkB Signaling WP3676': 18, 'Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535': 23, 'Head And Neck Squamous Cell Carcinoma WP4674': 33, 'Translation Factors WP107': 21, 'NF1 Copy Number Variation Syndrome WP5366': 39, 'miR 517 Relationship With ARCN1 And USP1 WP3596': 5, 'Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525': 28, '4 Hydroxytamoxifen DEX And Retinoic Acids Regulation Of P27 WP3879': 14, 'Amino Acid Metabolism WP3925': 37, 'Insulin Signaling WP481': 62, 'Cohesin Complex Cornelia De Lange Syndrome WP5117': 18, 'Cancer Pathways WP5434': 167, 'Exercise Induced Circadian Regulation WP410': 23, 'Rubinstein Taybi Syndrome 1 WP5367': 10, 'Unfolded Protein Response WP4925': 13, 'Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213': 6, 'Type I Collagen Synthesis Osteogenesis Imperfecta WP4786': 17, 'Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879': 25, 'PAFAH1B1 Copy Number Variation WP5409': 8, 'Trans Sulfuration Pathway WP2333': 7, 'Mesodermal Commitment Pathway WP2857': 55, 'Thyroid Stimulating Hormone TSH Signaling WP2032': 26, 'Oncostatin M Signaling WP2374': 26, 'Metabolic Reprogramming In Colon Cancer WP4290': 20, 'Senescence Associated Secretory Phenotype SASP WP3391': 37, 'Metabolic Epileptic Disorders WP5355': 37, 'TNF Alpha Signaling WP231': 37, 'Fluoropyrimidine Activity WP1601': 16, 'Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239': 60, 'Cholesterol Synthesis Disorders WP5193': 11, 'Thermogenesis WP4321': 43, 'Purine Metabolism And Related Disorders WP4224': 13}
Step 74. The result is converted into a dataframe and added to the final dataframe. This is followed by some data manipulation prior to calculation of gene set overlap.
variable_count_df4=pd.DataFrame.from_dict(variable_count4,orient='index')
reset_variable_count_df4 = variable_count_df4.reset_index()
reset_variable_count_df4.columns = ['Term', 'Total number of genes']
Genesetoverlaptable_C4=final_geneoverlaptable_C4.reset_index(level=[1])
Genesetoverlaptable_C4.reset_index(inplace=True)
Genesetoverlaptable_C4.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C4=pd.merge(reset_variable_count_df4,Genesetoverlaptable_C4, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_C4.loc[:,'Percent geneset overlap']= tabulation_C4.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_C4
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Retinoblastoma Gene In Cancer WP2446 | 66 | https://identifiers.org/aop.events/1086 | {} | 0 | 0.0 |
1 | Retinoblastoma Gene In Cancer WP2446 | 66 | https://identifiers.org/aop.events/1087 | {CDC25B, MAPK13} | 2 | 3.0303030303030303 |
2 | Retinoblastoma Gene In Cancer WP2446 | 66 | https://identifiers.org/aop.events/1090 | {CDK4, RBBP4, CDK2, BARD1, CDKN1A, CCND1} | 6 | 9.090909090909092 |
3 | Retinoblastoma Gene In Cancer WP2446 | 66 | https://identifiers.org/aop.events/1262 | {} | 0 | 0.0 |
4 | Retinoblastoma Gene In Cancer WP2446 | 66 | https://identifiers.org/aop.events/1271 | {} | 0 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
3559 | Purine Metabolism And Related Disorders WP4224 | 13 | https://identifiers.org/aop.events/55 | {} | 0 | 0.0 |
3560 | Purine Metabolism And Related Disorders WP4224 | 13 | https://identifiers.org/aop.events/618 | {} | 0 | 0.0 |
3561 | Purine Metabolism And Related Disorders WP4224 | 13 | https://identifiers.org/aop.events/68 | {} | 0 | 0.0 |
3562 | Purine Metabolism And Related Disorders WP4224 | 13 | https://identifiers.org/aop.events/875 | {} | 0 | 0.0 |
3563 | Purine Metabolism And Related Disorders WP4224 | 13 | https://identifiers.org/aop.events/898 | {} | 0 | 0.0 |
3564 rows × 6 columns
Copyright (c) Shakira Agata.
References:
- Martens M, Meuleman AB, Kearns J, de Windt C, Evelo CT, Willighagen EL. Molecular Adverse Outcome Pathways: towards the implementation of transcriptomics data in risk assessments. bioRxiv. 2023:2023.03.02.530766.
- How can I iterate over rows in a Pandas DataFrame? \[Internet\]. Stack Overflow. Available from: https://stackoverflow.com/questions/16476924/how-can-i-iterate-over-rows-in-a-pandas-dataframe
- Python - Loop Dictionaries \[Internet\]. www.w3schools.com. Available from: https://www.w3schools.com/python/python_dictionaries_loop.asp
- Priya. apply(set) to two columns in a pandas dataframe \[Internet\]. Stack Overflow. 2018. Available from: https://stackoverflow.com/questions/52367388/applyset-to-two-columns-in-a-pandas-dataframe
- amnesic. Converting pandas dataframe to dictionary with same keys over multiple rows \[Internet\]. Stack Overflow. 2022. Available from: https://stackoverflow.com/questions/71006325/converting-pandas-dataframe-to-dictionary-with-same-keys-over-multiple-rows/71006478#71006478
- SuperDougDougy. GroupBy results to dictionary of lists \[Internet\]. Stack Overflow. 2015. Available from: https://stackoverflow.com/questions/29876184/groupby-results-to-dictionary-of-lists%E2%80%8C
Section 9. Comparison 5: cyclosporin A timepoint 1
Section 9.1 Calculation of n variable
In this section, variable n will be calculated for the comparison 3.
Step 75. The table containing the differential expressed genes for Bisphenol A 1uM to control is loaded with the filter for significance.
C5_DEG= pd.read_csv('topTable_X12_CsA_.5 - X12_vehicle...control_.0.TSV.tsv',sep='\t')
Comparison5_DEG= C5_DEG[C5_DEG['adj. p-value'] < 0.05]
Comparison_5_DEG= Comparison5_DEG.copy()
Comparison_5_DEG.rename(columns={Comparison_5_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison_5_DEG['Entrez.Gene'] = Comparison_5_DEG['Entrez.Gene'].astype(str)
Step 76. Here, the results of the DEG table are integrated into the mergeddataframe dataframe. This is followed by adjustment of the dataframe columns to remove non-relevant columns.
merged_dataframe_DEG_C5= pd.merge(mergeddataframe,Comparison_5_DEG, on='Entrez.Gene')
Step 77. Lastly, the following for loop for the key events is run to retrieve the n variable. It is comparable to the for loop of N, but adds a condition to check for significance of genes by p adjusted value being smaller than 0.05.
variable_n_dictionary_count5= {}
for index, row in merged_dataframe_DEG_C5.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['adj. p-value']
if gene_expression_value < 0.05:
if unique_KE not in variable_n_dictionary_count5:
variable_n_dictionary_count5[unique_KE] = 1
else:
variable_n_dictionary_count5[unique_KE] += 1
print("The total number of significant genes: ")
print(variable_n_dictionary_count5)
The total number of significant genes:
{'https://identifiers.org/aop.events/486': 6, 'https://identifiers.org/aop.events/875': 14, 'https://identifiers.org/aop.events/2007': 19, 'https://identifiers.org/aop.events/1495': 11, 'https://identifiers.org/aop.events/105': 22, 'https://identifiers.org/aop.events/1816': 22, 'https://identifiers.org/aop.events/1668 ': 5, 'https://identifiers.org/aop.events/244 ': 50, 'https://identifiers.org/aop.events/1814 ': 27, 'https://identifiers.org/aop.events/888': 5, 'https://identifiers.org/aop.events/41': 35, 'https://identifiers.org/aop.events/1270': 7, 'https://identifiers.org/aop.events/1086': 9, 'https://identifiers.org/aop.events/1487 ': 3, 'https://identifiers.org/aop.events/1539': 18, 'https://identifiers.org/aop.events/201': 5, 'https://identifiers.org/aop.events/457': 70, 'https://identifiers.org/aop.events/55': 18, 'https://identifiers.org/aop.events/188': 2, 'https://identifiers.org/aop.events/618': 15, 'https://identifiers.org/aop.events/389': 5, 'https://identifiers.org/aop.events/177': 66, 'https://identifiers.org/aop.events/2013': 10, 'https://identifiers.org/aop.events/2006': 24, 'https://identifiers.org/aop.events/1497': 30, 'https://identifiers.org/aop.events/870': 3, 'https://identifiers.org/aop.events/1669': 43, 'https://identifiers.org/aop.events/1115': 10, 'https://identifiers.org/aop.events/202': 16, 'https://identifiers.org/aop.events/1917': 23, 'https://identifiers.org/aop.events/1633': 60, 'https://identifiers.org/aop.events/1392': 30, 'https://identifiers.org/aop.events/1815': 4, 'https://identifiers.org/aop.events/386': 30, 'https://identifiers.org/aop.events/1944': 3, 'https://identifiers.org/aop.events/1582': 8, 'https://identifiers.org/aop.events/1896': 40, 'https://identifiers.org/aop.events/1172': 3, 'https://identifiers.org/aop.events/1496': 21, 'https://identifiers.org/aop.events/68': 14, 'https://identifiers.org/aop.events/1493': 42, 'https://identifiers.org/aop.events/265': 25, 'https://identifiers.org/aop.events/1817': 18, 'https://identifiers.org/aop.events/1819': 6, 'https://identifiers.org/aop.events/1750': 30, 'https://identifiers.org/aop.events/1901': 2, 'https://identifiers.org/aop.events/1848': 6, 'https://identifiers.org/aop.events/1365': 18, 'https://identifiers.org/aop.events/890': 10, 'https://identifiers.org/aop.events/1587': 3, 'https://identifiers.org/aop.events/1457': 3, 'https://identifiers.org/aop.events/1586': 3, 'https://identifiers.org/aop.events/149': 60, 'https://identifiers.org/aop.events/1575': 18, 'https://identifiers.org/aop.events/1579': 18, 'https://identifiers.org/aop.events/87': 6, 'https://identifiers.org/aop.events/249': 10, 'https://identifiers.org/aop.events/288': 4, 'https://identifiers.org/aop.events/209': 84, 'https://identifiers.org/aop.events/1498': 14, 'https://identifiers.org/aop.events/1500': 15, 'https://identifiers.org/aop.events/1488': 14, 'https://identifiers.org/aop.events/1494': 3, 'https://identifiers.org/aop.events/52': 16, 'https://identifiers.org/aop.events/381': 20, 'https://identifiers.org/aop.events/484': 59, 'https://identifiers.org/aop.events/388': 14, 'https://identifiers.org/aop.events/1262': 18, 'https://identifiers.org/aop.events/1945': 92, 'https://identifiers.org/aop.events/2009': 3, 'https://identifiers.org/aop.events/2012': 15, 'https://identifiers.org/aop.events/1770': 9, 'https://identifiers.org/aop.events/1818': 18, 'https://identifiers.org/aop.events/1752': 5, 'https://identifiers.org/aop.events/887': 14, 'https://identifiers.org/aop.events/1585': 3, 'https://identifiers.org/aop.events/214': 4, 'https://identifiers.org/aop.events/1271': 4, 'https://identifiers.org/aop.events/1087': 30, 'https://identifiers.org/aop.events/1538': 10, 'https://identifiers.org/aop.events/898': 18, 'https://identifiers.org/aop.events/195': 14, 'https://identifiers.org/aop.events/459': 24, 'https://identifiers.org/aop.events/341': 2, 'https://identifiers.org/aop.events/1670': 8, 'https://identifiers.org/aop.events/759': 2, 'https://identifiers.org/aop.events/1090': 42, 'https://identifiers.org/aop.events/344': 1, 'https://identifiers.org/aop.events/1841': 2, 'https://identifiers.org/aop.events/1820': 3, 'https://identifiers.org/aop.events/896': 5, 'https://identifiers.org/aop.events/1549': 11, 'https://identifiers.org/aop.events/357': 2, 'https://identifiers.org/aop.events/352': 33}
Step 78. The output of the n variable dictionary is saved as a dataframe and integrated as a separate column into a dataframe.
n_variable_dataframe5=pd.DataFrame.from_dict(variable_n_dictionary_count5,orient='index')
n_variable_dataframe5
0 | |
---|---|
https://identifiers.org/aop.events/486 | 6 |
https://identifiers.org/aop.events/875 | 14 |
https://identifiers.org/aop.events/2007 | 19 |
https://identifiers.org/aop.events/1495 | 11 |
https://identifiers.org/aop.events/105 | 22 |
... | ... |
https://identifiers.org/aop.events/1820 | 3 |
https://identifiers.org/aop.events/896 | 5 |
https://identifiers.org/aop.events/1549 | 11 |
https://identifiers.org/aop.events/357 | 2 |
https://identifiers.org/aop.events/352 | 33 |
94 rows × 1 columns
n_variable_dataframe5_reset = n_variable_dataframe5.reset_index()
n_variable_dataframe5_reset.columns = ['KEID', 'n']
n_variable_dataframe5_reset
KEID | n | |
---|---|---|
0 | https://identifiers.org/aop.events/486 | 6 |
1 | https://identifiers.org/aop.events/875 | 14 |
2 | https://identifiers.org/aop.events/2007 | 19 |
3 | https://identifiers.org/aop.events/1495 | 11 |
4 | https://identifiers.org/aop.events/105 | 22 |
... | ... | ... |
89 | https://identifiers.org/aop.events/1820 | 3 |
90 | https://identifiers.org/aop.events/896 | 5 |
91 | https://identifiers.org/aop.events/1549 | 11 |
92 | https://identifiers.org/aop.events/357 | 2 |
93 | https://identifiers.org/aop.events/352 | 33 |
94 rows × 2 columns
merged_dataframe5= pd.merge(mergeddataframeDEG, n_variable_dataframe5_reset, on='KEID')
Section 9.2. Calculation of variable B and variable b.
In this section, variable B and variable b are calculated.
Step 79. Variable B is calculated by taking the length of the dataframe which includes all genes in 1 DEG table.
B=len(C5_DEG.index)
B
20412
Step 80. Variable b is calculated by taking the length of the dataframe which includes all genes in 1 DEG table with the condition for significance.
C5_DEG_filtered=C5_DEG[C5_DEG['adj. p-value'] < 0.05]
b=len(C5_DEG_filtered)
b
1595
Section 9.3. Calculation of enrichment score and hypergeometric p-value
In this section, the enrichment score and hypergeometric p-value will be calculated. This requires the four variables of the enrichment score per KE for which the formula will be applied to and stored in an additional dataframe.
Step 81. The final dataframe will be created that contains the KEID and the four variables: variable N, variable n, variable B and variable b.
Final_dataframe_ES= merged_dataframe5.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([20412 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([1595 for x in range(len(Final_dataframe_ES.index))])
Final_Dataframe_ES=Final_dataframe_ES.drop_duplicates(subset=['KEID'],keep='first')
Final_Dataframe_ES.reset_index(drop=True,inplace=True)
Copy_Final_DataFrame_ES=Final_Dataframe_ES.copy()
Step 82. The following for loop will be used to calculate the enrichment score for individual key events and the results will be saved as a separate column into the dataframe.
def calculate_Enrichment_Score(row):
return f"{(row['n']/row['N'])/(row['b']/row['B'])}"
Copy_Final_DataFrame_ES.loc[:,'Enrichmentscore']= Copy_Final_DataFrame_ES.apply(calculate_Enrichment_Score,axis=1)
Copy_Final_DataFrame_ES
KEID | N | n | B | b | Enrichmentscore | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | 129 | 6 | 20412 | 1595 | 0.5952321936283443 |
1 | https://identifiers.org/aop.events/875 | 169 | 14 | 20412 | 1595 | 1.060147279775927 |
2 | https://identifiers.org/aop.events/2007 | 184 | 19 | 20412 | 1595 | 1.3214801690064057 |
3 | https://identifiers.org/aop.events/1495 | 253 | 11 | 20412 | 1595 | 0.5564127027395392 |
4 | https://identifiers.org/aop.events/105 | 165 | 22 | 20412 | 1595 | 1.7063322884012537 |
... | ... | ... | ... | ... | ... | ... |
86 | https://identifiers.org/aop.events/1820 | 57 | 3 | 20412 | 1595 | 0.673552219105758 |
87 | https://identifiers.org/aop.events/896 | 82 | 5 | 20412 | 1595 | 0.7803348879883782 |
88 | https://identifiers.org/aop.events/1549 | 101 | 11 | 20412 | 1595 | 1.393786275179242 |
89 | https://identifiers.org/aop.events/357 | 21 | 2 | 20412 | 1595 | 1.218808777429467 |
90 | https://identifiers.org/aop.events/352 | 398 | 33 | 20412 | 1595 | 1.0610985964304278 |
91 rows × 6 columns
Step 83. The following for loop will be used to calculate the hypergeometric p-value for individual Key Events and save the result as a separate column into the dataframe. This requires some in between steps for manipulation of the dataframe.
p_value_dataframe5=[]
for index, row in Copy_Final_DataFrame_ES.iterrows():
M = row['B']
n = row['b']
N = row['N']
k = row['n']
hpd = ss.hypergeom(M, n, N)
p = hpd.pmf(k)
p_value_dataframe5.append(p)
Hypergeometricpvalue_dataframe5=pd.DataFrame(p_value_dataframe5)
Hypergeometricpvalue_dataframe5.columns= ['Hypergeometric p-value']
Hypergeometricpvalue_dataframe5
Hypergeometric p-value | |
---|---|
0 | 0.058129 |
1 | 0.108337 |
2 | 0.045948 |
3 | 0.009956 |
4 | 0.004769 |
... | ... |
86 | 0.172549 |
87 | 0.151322 |
88 | 0.069619 |
89 | 0.273433 |
90 | 0.068622 |
91 rows × 1 columns
merged_finaltable_C5=pd.concat([Copy_Final_DataFrame_ES,Hypergeometricpvalue_dataframe5],axis=1)
Section 9.4. Filtering the results for significant KEs
In this section, the results will be filtered to only include significant KEs. Significant KEs have an enrichment score above 1 and a hypergeometric p-value below 0.05.
Step 84. Lastly, we filter the results to showcase the significant KEs for comparison 5.
filteredversion_C5= merged_finaltable_C5[(merged_finaltable_C5['Enrichmentscore']>str(1))& (merged_finaltable_C5['Hypergeometric p-value'] < 0.05)]
filteredversion_C5
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | |
---|---|---|---|---|---|---|---|
2 | https://identifiers.org/aop.events/2007 | 184 | 19 | 20412 | 1595 | 1.3214801690064057 | 4.594816e-02 |
4 | https://identifiers.org/aop.events/105 | 165 | 22 | 20412 | 1595 | 1.7063322884012537 | 4.769309e-03 |
5 | https://identifiers.org/aop.events/1816 | 165 | 22 | 20412 | 1595 | 1.7063322884012537 | 4.769309e-03 |
7 | https://identifiers.org/aop.events/244 | 417 | 50 | 20412 | 1595 | 1.5344714823752283 | 6.773117e-04 |
8 | https://identifiers.org/aop.events/1814 | 251 | 27 | 20412 | 1595 | 1.3766226629532028 | 2.052624e-02 |
9 | https://identifiers.org/aop.events/41 | 275 | 35 | 20412 | 1595 | 1.6287717298375604 | 1.343511e-03 |
13 | https://identifiers.org/aop.events/1539 | 170 | 18 | 20412 | 1595 | 1.3550285819657015 | 4.331385e-02 |
15 | https://identifiers.org/aop.events/457 | 584 | 70 | 20412 | 1595 | 1.533945978442908 | 9.046752e-05 |
20 | https://identifiers.org/aop.events/177 | 495 | 66 | 20412 | 1595 | 1.7063322884012537 | 6.358974e-06 |
22 | https://identifiers.org/aop.events/2006 | 216 | 24 | 20412 | 1595 | 1.4219435736677113 | 1.987165e-02 |
25 | https://identifiers.org/aop.events/1669 | 400 | 43 | 20412 | 1595 | 1.3757304075235108 | 7.149319e-03 |
26 | https://identifiers.org/aop.events/1115 | 34 | 10 | 20412 | 1595 | 3.76396828323806 | 1.554876e-04 |
28 | https://identifiers.org/aop.events/1917 | 166 | 23 | 20412 | 1595 | 1.773146504513351 | 2.674261e-03 |
30 | https://identifiers.org/aop.events/1392 | 102 | 30 | 20412 | 1595 | 3.76396828323806 | 8.829160e-11 |
34 | https://identifiers.org/aop.events/1582 | 51 | 8 | 20412 | 1595 | 2.0074497510602987 | 2.668231e-02 |
35 | https://identifiers.org/aop.events/1896 | 205 | 40 | 20412 | 1595 | 2.4970716415628105 | 3.909315e-08 |
37 | https://identifiers.org/aop.events/68 | 64 | 14 | 20412 | 1595 | 2.799451410658307 | 2.530572e-04 |
46 | https://identifiers.org/aop.events/890 | 34 | 10 | 20412 | 1595 | 3.76396828323806 | 1.554876e-04 |
54 | https://identifiers.org/aop.events/249 | 34 | 10 | 20412 | 1595 | 3.76396828323806 | 1.554876e-04 |
56 | https://identifiers.org/aop.events/209 | 617 | 84 | 20412 | 1595 | 1.7422841842670822 | 1.878217e-07 |
62 | https://identifiers.org/aop.events/381 | 199 | 20 | 20412 | 1595 | 1.2861801168853673 | 4.946219e-02 |
63 | https://identifiers.org/aop.events/484 | 706 | 59 | 20412 | 1595 | 1.069478806823732 | 4.767166e-02 |
69 | https://identifiers.org/aop.events/1770 | 60 | 9 | 20412 | 1595 | 1.9196238244514103 | 2.523318e-02 |
72 | https://identifiers.org/aop.events/887 | 116 | 14 | 20412 | 1595 | 1.544524916225273 | 3.173682e-02 |
77 | https://identifiers.org/aop.events/1538 | 34 | 10 | 20412 | 1595 | 3.76396828323806 | 1.554876e-04 |
80 | https://identifiers.org/aop.events/459 | 132 | 24 | 20412 | 1595 | 2.3268167569108007 | 5.269361e-05 |
83 | https://identifiers.org/aop.events/1090 | 459 | 42 | 20412 | 1595 | 1.171012354785174 | 3.750508e-02 |
# Ensure numeric types
filteredversion_C5['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C5['Hypergeometric p-value'], errors='coerce')
filteredversion_C5['Enrichmentscore'] = pd.to_numeric(filteredversion_C5['Enrichmentscore'], errors='coerce')
filteredversion_C5['combined_score'] = -np.log(filteredversion_C5['Hypergeometric p-value']) * filteredversion_C5['Enrichmentscore']
# Sort by combined score (highest first)
C5_sorted = filteredversion_C5.sort_values(by='combined_score', ascending=False)
C5_sorted
# Show top rows
#C5_sorted.to_excel('ConsistentKE-CyclosporinA-T1.xlsx')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\4088201890.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C5['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C5['Hypergeometric p-value'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\4088201890.py:3: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C5['Enrichmentscore'] = pd.to_numeric(filteredversion_C5['Enrichmentscore'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\4088201890.py:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C5['combined_score'] = -np.log(filteredversion_C5['Hypergeometric p-value']) * filteredversion_C5['Enrichmentscore']
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | combined_score | |
---|---|---|---|---|---|---|---|---|
30 | https://identifiers.org/aop.events/1392 | 102 | 30 | 20412 | 1595 | 3.763968 | 8.829160e-11 | 87.137281 |
35 | https://identifiers.org/aop.events/1896 | 205 | 40 | 20412 | 1595 | 2.497072 | 3.909315e-08 | 42.593347 |
77 | https://identifiers.org/aop.events/1538 | 34 | 10 | 20412 | 1595 | 3.763968 | 1.554876e-04 | 33.006030 |
54 | https://identifiers.org/aop.events/249 | 34 | 10 | 20412 | 1595 | 3.763968 | 1.554876e-04 | 33.006030 |
46 | https://identifiers.org/aop.events/890 | 34 | 10 | 20412 | 1595 | 3.763968 | 1.554876e-04 | 33.006030 |
26 | https://identifiers.org/aop.events/1115 | 34 | 10 | 20412 | 1595 | 3.763968 | 1.554876e-04 | 33.006030 |
56 | https://identifiers.org/aop.events/209 | 617 | 84 | 20412 | 1595 | 1.742284 | 1.878217e-07 | 26.984101 |
37 | https://identifiers.org/aop.events/68 | 64 | 14 | 20412 | 1595 | 2.799451 | 2.530572e-04 | 23.184763 |
80 | https://identifiers.org/aop.events/459 | 132 | 24 | 20412 | 1595 | 2.326817 | 5.269361e-05 | 22.921510 |
20 | https://identifiers.org/aop.events/177 | 495 | 66 | 20412 | 1595 | 1.706332 | 6.358974e-06 | 20.417364 |
15 | https://identifiers.org/aop.events/457 | 584 | 70 | 20412 | 1595 | 1.533946 | 9.046752e-05 | 14.281834 |
7 | https://identifiers.org/aop.events/244 | 417 | 50 | 20412 | 1595 | 1.534471 | 6.773117e-04 | 11.197620 |
9 | https://identifiers.org/aop.events/41 | 275 | 35 | 20412 | 1595 | 1.628772 | 1.343511e-03 | 10.770203 |
28 | https://identifiers.org/aop.events/1917 | 166 | 23 | 20412 | 1595 | 1.773147 | 2.674261e-03 | 10.504266 |
5 | https://identifiers.org/aop.events/1816 | 165 | 22 | 20412 | 1595 | 1.706332 | 4.769309e-03 | 9.121291 |
4 | https://identifiers.org/aop.events/105 | 165 | 22 | 20412 | 1595 | 1.706332 | 4.769309e-03 | 9.121291 |
34 | https://identifiers.org/aop.events/1582 | 51 | 8 | 20412 | 1595 | 2.007450 | 2.668231e-02 | 7.274505 |
69 | https://identifiers.org/aop.events/1770 | 60 | 9 | 20412 | 1595 | 1.919624 | 2.523318e-02 | 7.063439 |
25 | https://identifiers.org/aop.events/1669 | 400 | 43 | 20412 | 1595 | 1.375730 | 7.149319e-03 | 6.797124 |
22 | https://identifiers.org/aop.events/2006 | 216 | 24 | 20412 | 1595 | 1.421944 | 1.987165e-02 | 5.571830 |
8 | https://identifiers.org/aop.events/1814 | 251 | 27 | 20412 | 1595 | 1.376623 | 2.052624e-02 | 5.349626 |
72 | https://identifiers.org/aop.events/887 | 116 | 14 | 20412 | 1595 | 1.544525 | 3.173682e-02 | 5.329040 |
13 | https://identifiers.org/aop.events/1539 | 170 | 18 | 20412 | 1595 | 1.355029 | 4.331385e-02 | 4.253818 |
2 | https://identifiers.org/aop.events/2007 | 184 | 19 | 20412 | 1595 | 1.321480 | 4.594816e-02 | 4.070478 |
62 | https://identifiers.org/aop.events/381 | 199 | 20 | 20412 | 1595 | 1.286180 | 4.946219e-02 | 3.866961 |
83 | https://identifiers.org/aop.events/1090 | 459 | 42 | 20412 | 1595 | 1.171012 | 3.750508e-02 | 3.844760 |
63 | https://identifiers.org/aop.events/484 | 706 | 59 | 20412 | 1595 | 1.069479 | 4.767166e-02 | 3.254871 |
Section 9.5. Calculation of percent gene overlap to ORA
Section 9.5.1 Creation of the significant KEs table
In this section, you merge the dataframes to retrieve the genes connected to only the significant KEs.
Step 85. The significant KE table is created using the significan KEs from the previous merggeddataframe_final.
significantKEID_genetable5=mergeddataframe_final2[(mergeddataframe_final2['KEID'] == 'https://identifiers.org/aop.events/2007')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/105') | (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1816')|(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/244')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1814')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/41')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1539')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/457')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/177')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2006')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1669')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1115')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1917')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1392')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1582')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1896')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/68')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/890')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/249')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/209')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/381')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/484')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1770')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/887')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1538')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/459')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1090')]
significantKEIDgenetable5=significantKEID_genetable5.drop(columns={'WPtitle','ID'})
significantKEIDgenetable5
KEID | gene | Entrez.Gene | |
---|---|---|---|
298 | https://identifiers.org/aop.events/2007 | MIR15B | 406949 |
299 | https://identifiers.org/aop.events/2007 | MIR27B | 407019 |
300 | https://identifiers.org/aop.events/2007 | MIR16-1 | 406950 |
301 | https://identifiers.org/aop.events/2007 | MIR15A | 406948 |
302 | https://identifiers.org/aop.events/2007 | MIR221 | 407006 |
... | ... | ... | ... |
20172 | https://identifiers.org/aop.events/1090 | SETD5 | 55209 |
20173 | https://identifiers.org/aop.events/1090 | CTNNA3 | 29119 |
20174 | https://identifiers.org/aop.events/1090 | MAD1L1 | 8379 |
20175 | https://identifiers.org/aop.events/1090 | CD44 | 960 |
20176 | https://identifiers.org/aop.events/1090 | CDH10 | 1008 |
6335 rows × 3 columns
Section 9.5.2 Significant ORA pathway table plus splitting
In this section, the significant ORA pathway table is created.
Step 86. The significant ORA pathway table is created using the significant enriched patwhays identified from the ORA analysis. This requires data manipulation to restructure the table in a way that the individual genes for the enriched pathways are placed on individual rows.
datafile_ORA5 = pd.read_csv("C:/Users/shaki/Downloads/EMEXP-2599_ORApathwaytable/Comparison 5-CyclosporinA-timepoint1.txt", sep='\t')
datafileORA5=pd.DataFrame(datafile_ORA5)
filtereddatafileORA_5=datafileORA5[datafileORA5['Adjusted P-value'] < 0.05]
dropped_datafileORA_df5=filtereddatafileORA_5.drop(['Adjusted P-value','Odds Ratio','Old P-value','Gene_set','P-value','Old adjusted P-value','Combined Score'],axis=1)
droppeddatafileORAdf5=dropped_datafileORA_df5.copy()
droppeddatafileORAdf5['Genes']= droppeddatafileORAdf5['Genes'].replace({';':','},regex=True)
df5_ORApathwaytable=droppeddatafileORAdf5.copy()
df5_ORApathwaytable['Genes'] = df5_ORApathwaytable['Genes'].astype(str)
df5_ORApathwaytable['Genes'] = df5_ORApathwaytable['Genes'].str.split(',')
exploded_df5_ORApathwaytable = df5_ORApathwaytable.explode('Genes', ignore_index=True)
Section 9.5.3 For loop to get overlapping genes
In this section, the number of overlapping genes between the significant enrichment score-based Key Events and enriched pathways from ORA are calculated.
Step 87. Next, two sets are created by converting the significant KE table and ORA pathway table into dictionaries where the values of the genes are grouped together per key. This is followed by running a for loop to calculate the number of overlapping genes along with the symbols.
ORA_gene_sets5 = exploded_df5_ORApathwaytable.groupby('Term')['Genes'].apply(set).to_dict()
SignificantKE_gene_sets5 = significantKEIDgenetable5.groupby('KEID')['gene'].apply(set).to_dict()
overlapping_genes_betweenORA_and_significantKEs5 = {}
for term, ORA_genes in ORA_gene_sets5.items():
for KEID, KEID_genes in SignificantKE_gene_sets5.items():
overlap = ORA_genes.intersection(KEID_genes)
print(f"{term} x {KEID}: {len(overlap)} overlaps")
overlapping_genes_betweenORA_and_significantKEs5[(term, KEID)] = {
'overlapping genes': overlap,
'number of genes that overlap': len(overlap)
}
if overlapping_genes_betweenORA_and_significantKEs5:
print("\ntitle of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:")
for (term, KEID), result in overlapping_genes_betweenORA_and_significantKEs5.items():
print(f"Term: {term}, KEID: {KEID}, Title of overlapping gene(s): {result['overlapping genes']}, number: {result['number of genes that overlap']}")
else:
print("No overlapping genes")
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/105: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1090: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1115: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1392: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1538: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1539: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1582: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1669: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/177: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1770: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1814: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1816: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1896: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/1917: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/2006: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/2007: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/209: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/244: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/249: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/381: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/41: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/457: 1 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/459: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/484: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/68: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/887: 0 overlaps
Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104 x https://identifiers.org/aop.events/890: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/105: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1090: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1115: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1392: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1538: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1539: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1582: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1669: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/177: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1770: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1814: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1816: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1896: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/1917: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/2006: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/2007: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/209: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/244: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/249: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/381: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/41: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/457: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/459: 1 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/484: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/68: 1 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/887: 0 overlaps
Aerobic Glycolysis WP4629 x https://identifiers.org/aop.events/890: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/105: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1090: 6 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1115: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1392: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1538: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1539: 4 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1582: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1669: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/177: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1770: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1814: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1816: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1896: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1917: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2006: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2007: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/209: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/244: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/249: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/381: 4 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/41: 2 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/457: 6 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/459: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/484: 6 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/68: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/887: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/890: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/105: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1090: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1115: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1392: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1538: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1539: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1582: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1669: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/177: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1770: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1814: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1816: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1896: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1917: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2006: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2007: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/209: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/244: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/249: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/381: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/41: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/457: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/459: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/484: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/68: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/887: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/890: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/105: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1090: 7 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1115: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1392: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1538: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1539: 7 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1582: 2 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1669: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/177: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1770: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1814: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1816: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1896: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/1917: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2006: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/2007: 3 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/209: 2 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/244: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/249: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/381: 5 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/41: 2 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/457: 6 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/459: 1 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/484: 4 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/68: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/887: 0 overlaps
Androgen Receptor Network In Prostate Cancer WP2263 x https://identifiers.org/aop.events/890: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/105: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1090: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1115: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1392: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1538: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1539: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1582: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1669: 3 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/177: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1770: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1814: 4 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1816: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1896: 3 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/1917: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/2006: 3 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/2007: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/209: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/244: 4 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/249: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/381: 2 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/41: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/457: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/459: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/484: 1 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/68: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/887: 0 overlaps
Apoptosis WP254 x https://identifiers.org/aop.events/890: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/105: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1090: 4 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1115: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1392: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1538: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1539: 6 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1582: 1 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1669: 2 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/177: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1770: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1814: 2 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1816: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1896: 1 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/1917: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/2006: 2 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/2007: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/209: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/244: 2 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/249: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/381: 6 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/41: 1 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/457: 3 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/459: 1 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/484: 3 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/68: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/887: 0 overlaps
B Cell Receptor Signaling WP23 x https://identifiers.org/aop.events/890: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/105: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 14 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1115: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1392: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1538: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1539: 8 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1582: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1669: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/177: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1770: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1814: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1816: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1896: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1917: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2006: 7 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2007: 4 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 5 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 8 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/249: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/381: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/41: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/457: 18 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/459: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/484: 14 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/68: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/887: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/890: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/105: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1090: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1115: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1392: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1538: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1539: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1582: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1669: 4 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/177: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1770: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1814: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1816: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1896: 4 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1917: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2006: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2007: 4 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/209: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/244: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/249: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/381: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/41: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/457: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/459: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/484: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/68: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/887: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/890: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/105: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1090: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1115: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1392: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1538: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1539: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1582: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1669: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/177: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1770: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1814: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1816: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1896: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1917: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2006: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2007: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/209: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/244: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/249: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/381: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/41: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/457: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/459: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/484: 1 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/68: 2 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/887: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/890: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/105: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1090: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1115: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1392: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1538: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1539: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1582: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1669: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/177: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1770: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1814: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1816: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1896: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/1917: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/2006: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/2007: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/209: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/244: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/249: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/381: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/41: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/457: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/459: 1 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/484: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/68: 1 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/887: 0 overlaps
Cori Cycle WP1946 x https://identifiers.org/aop.events/890: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/105: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1090: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1539: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1582: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1669: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/177: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1770: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1814: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1816: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1896: 3 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/2006: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/2007: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/209: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/244: 2 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/249: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/381: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/41: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/457: 1 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/459: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/484: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/68: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/887: 0 overlaps
DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959 x https://identifiers.org/aop.events/890: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/105: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1090: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1115: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1392: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1538: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1539: 14 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1582: 2 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1669: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/177: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1770: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1814: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1816: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1896: 2 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1917: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/2006: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/2007: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/209: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/244: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/249: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/381: 8 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/41: 2 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/457: 7 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/459: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/484: 4 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/68: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/887: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/890: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/105: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1090: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1115: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1392: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1538: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1539: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1582: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1669: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/177: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1770: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1814: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1816: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1896: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/1917: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/2006: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/2007: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/209: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/244: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/249: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/381: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/41: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/457: 1 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/459: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/484: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/68: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/887: 0 overlaps
Effect Of Progerin On Genes Involved In Progeria WP4320 x https://identifiers.org/aop.events/890: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/105: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1090: 9 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1115: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1392: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1538: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1539: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1582: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1669: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/177: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1770: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1814: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1816: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1896: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1917: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2006: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2007: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/209: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/244: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/249: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/381: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/41: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/457: 10 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/459: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/484: 11 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/68: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/887: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/890: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/105: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1090: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1115: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1392: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1538: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1539: 2 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1582: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1669: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/177: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1770: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1814: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1816: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1896: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1917: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2006: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2007: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/209: 1 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/244: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/249: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/381: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/41: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/457: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/459: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/484: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/887: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/890: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/105: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1115: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1392: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1538: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1539: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1582: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1669: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/177: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1770: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1814: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1816: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1896: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1917: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2006: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2007: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/209: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/249: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/381: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/41: 3 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/457: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/459: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/484: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/68: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/887: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/890: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/105: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1090: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1115: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1392: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1538: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1539: 5 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1582: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1669: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/177: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1770: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1814: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1816: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1896: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/1917: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/2006: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/2007: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/209: 2 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/244: 3 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/249: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/381: 5 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/41: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/457: 7 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/459: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/484: 4 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/68: 0 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/887: 1 overlaps
Hepatitis B Infection WP4666 x https://identifiers.org/aop.events/890: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/105: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1090: 3 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1115: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1392: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1538: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1539: 4 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1582: 1 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1669: 1 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/177: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1770: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1814: 1 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1816: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1896: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/1917: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/2006: 1 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/2007: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/209: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/244: 1 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/249: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/381: 3 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/41: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/457: 4 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/459: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/484: 3 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/68: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/887: 0 overlaps
Hepatocyte Growth Factor Receptor Signaling WP313 x https://identifiers.org/aop.events/890: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/105: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1090: 4 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1115: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1392: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1538: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1539: 5 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1582: 2 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1669: 2 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/177: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1770: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1814: 2 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1816: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1896: 1 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/1917: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/2006: 2 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/2007: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/209: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/244: 2 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/249: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/381: 5 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/41: 1 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/457: 5 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/459: 1 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/484: 3 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/68: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/887: 0 overlaps
IL11 Signaling WP2332 x https://identifiers.org/aop.events/890: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/105: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1090: 3 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1115: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1392: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1538: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1539: 6 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1582: 2 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1669: 2 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/177: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1770: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1814: 2 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1816: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1896: 1 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/1917: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/2006: 2 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/2007: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/209: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/244: 2 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/249: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/381: 5 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/41: 1 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/457: 5 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/459: 1 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/484: 3 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/68: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/887: 0 overlaps
IL2 Signaling WP49 x https://identifiers.org/aop.events/890: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/105: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1090: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1115: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1392: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1538: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1539: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1582: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1669: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/177: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1770: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1814: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1816: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1896: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/1917: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/2006: 2 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/2007: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/209: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/244: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/249: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/381: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/41: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/457: 3 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/459: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/484: 1 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/68: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/887: 0 overlaps
IL26 Signaling WP5347 x https://identifiers.org/aop.events/890: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/105: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1090: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1115: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1392: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1538: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1539: 5 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1582: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1669: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/177: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1770: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1814: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1816: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1896: 1 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/1917: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/2006: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/2007: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/209: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/244: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/249: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/381: 4 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/41: 1 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/457: 4 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/459: 1 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/484: 2 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/68: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/887: 0 overlaps
IL3 Signaling WP286 x https://identifiers.org/aop.events/890: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/105: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1090: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1115: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1392: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1538: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1539: 3 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1582: 2 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1669: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/177: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1770: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1814: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1816: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1896: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/1917: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/2006: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/2007: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/209: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/244: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/249: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/381: 4 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/41: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/457: 5 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/459: 1 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/484: 2 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/68: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/887: 0 overlaps
IL4 Signaling WP395 x https://identifiers.org/aop.events/890: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/105: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1090: 5 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1115: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1392: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1538: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1539: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1582: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1669: 2 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/177: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1770: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1814: 3 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1816: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1896: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/1917: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2006: 2 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/2007: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/209: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/244: 3 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/249: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/381: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/41: 3 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/457: 6 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/459: 1 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/484: 5 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/68: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/887: 0 overlaps
Insulin Signaling WP481 x https://identifiers.org/aop.events/890: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/105: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1090: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1115: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1392: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1538: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1539: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1582: 2 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1669: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/177: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1770: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1814: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1816: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1896: 2 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1917: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/2006: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/2007: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/209: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/244: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/249: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/381: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/41: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/457: 4 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/459: 1 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/484: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/68: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/887: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/890: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/105: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1090: 4 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1115: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1392: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1538: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1539: 7 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1582: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1669: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/177: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1770: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1814: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1816: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1896: 1 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/1917: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/2006: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/2007: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/209: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/244: 2 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/249: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/381: 6 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/41: 1 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/457: 5 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/459: 1 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/484: 3 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/68: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/887: 0 overlaps
Kit Receptor Signaling WP304 x https://identifiers.org/aop.events/890: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/105: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1090: 4 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1115: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1392: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1538: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1539: 5 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1582: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1669: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/177: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1770: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1814: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1816: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1896: 1 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/1917: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/2006: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/2007: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/209: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/244: 2 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/249: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/381: 4 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/41: 1 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/457: 5 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/459: 1 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/484: 4 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/68: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/887: 0 overlaps
MET In Type 1 Papillary Renal Cell Carcinoma WP4205 x https://identifiers.org/aop.events/890: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/105: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1090: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1115: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1392: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1538: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1539: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1582: 1 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1669: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/177: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1770: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1814: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1816: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1896: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/1917: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/2006: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/2007: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/209: 1 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/244: 2 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/249: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/381: 1 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/41: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/457: 3 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/459: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/484: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/68: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/887: 0 overlaps
Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815 x https://identifiers.org/aop.events/890: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/105: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1090: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1115: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1392: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1538: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1539: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1582: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1669: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/177: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1770: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1816: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1896: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/1917: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/2007: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/209: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/244: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/249: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/381: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/41: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/457: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/459: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/484: 1 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/68: 5 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/887: 0 overlaps
Metabolic Pathways Of Fibroblasts WP5312 x https://identifiers.org/aop.events/890: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/105: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1090: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1115: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1392: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1538: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1539: 5 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1582: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1669: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/177: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1770: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1814: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1816: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1896: 1 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/1917: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2006: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/2007: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/209: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/244: 2 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/249: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/381: 6 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/41: 1 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/457: 5 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/459: 1 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/484: 3 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/68: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/887: 0 overlaps
Oncostatin M Signaling WP2374 x https://identifiers.org/aop.events/890: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/105: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1090: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1115: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1392: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1538: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1539: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1582: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1669: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/177: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1770: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1814: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1816: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1896: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/1917: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/2006: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/2007: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/209: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/244: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/249: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/381: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/41: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/457: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/459: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/484: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/68: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/887: 0 overlaps
One Carbon Metabolism WP241 x https://identifiers.org/aop.events/890: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/105: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1090: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1115: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1392: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1538: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1539: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1582: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1669: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/177: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1770: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1814: 3 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1816: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1896: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/1917: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/2006: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/2007: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/209: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/244: 3 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/249: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/381: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/41: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/457: 3 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/459: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/484: 1 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/887: 0 overlaps
Photodynamic Therapy Induced Unfolded Protein Response WP3613 x https://identifiers.org/aop.events/890: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/105: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1090: 33 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1115: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1392: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1538: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1539: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1582: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1669: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/177: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1770: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1814: 7 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1816: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1896: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1917: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2006: 6 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2007: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/209: 8 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/244: 8 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/249: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/381: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/41: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/457: 14 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/459: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/484: 13 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/68: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/887: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/890: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/105: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1090: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1115: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1392: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1538: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1539: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1582: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1669: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/177: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1770: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1814: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1816: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1896: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/1917: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/2006: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/2007: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/209: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/244: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/249: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/381: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/41: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/457: 3 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/459: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/484: 2 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/68: 1 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/887: 0 overlaps
Prion Disease Pathway WP3995 x https://identifiers.org/aop.events/890: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/105: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1090: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1115: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1392: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1538: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1539: 6 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1582: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1669: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/177: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1770: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1814: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1816: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1896: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1917: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2006: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2007: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/209: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/244: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/249: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/381: 8 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/41: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/457: 6 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/459: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/484: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/68: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/887: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/890: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/105: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1090: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1115: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1392: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1538: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1539: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1582: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1669: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/177: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1770: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1814: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1816: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1896: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1917: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/2006: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/2007: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/209: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/244: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/249: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/381: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/41: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/457: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/459: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/484: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/68: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/887: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/890: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/105: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1090: 4 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1115: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1392: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1538: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1539: 5 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1582: 2 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1669: 3 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/177: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1770: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1814: 3 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1816: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1896: 2 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/1917: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/2006: 3 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/2007: 1 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/209: 1 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/244: 3 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/249: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/381: 6 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/41: 2 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/457: 5 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/459: 1 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/484: 3 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/68: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/887: 0 overlaps
RAC1 PAK1 P38 MMP2 Pathway WP3303 x https://identifiers.org/aop.events/890: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/105: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1090: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1115: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1392: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1538: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1539: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1582: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1669: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/177: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1770: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1814: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1816: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1896: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1917: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2006: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2007: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/209: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/244: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/249: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/381: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/41: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/457: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/459: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/484: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/68: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/887: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/890: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/105: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1090: 2 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1115: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1392: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1538: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1539: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1582: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1669: 4 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/177: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1770: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1814: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1816: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1896: 4 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1917: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2006: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2007: 4 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/209: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/244: 3 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/249: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/381: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/41: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/457: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/459: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/484: 1 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/68: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/887: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/890: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/105: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1090: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1115: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1392: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1538: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1539: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1582: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1669: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/177: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1770: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1814: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1816: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1896: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/1917: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/2006: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/2007: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/209: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/244: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/249: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/381: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/41: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/457: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/459: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/484: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/68: 1 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/887: 0 overlaps
Serine Metabolism WP4688 x https://identifiers.org/aop.events/890: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/105: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1090: 8 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1115: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1392: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1538: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1539: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1582: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1669: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/177: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1770: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1814: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1816: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1896: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1917: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2006: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/2007: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 3 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/249: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/381: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/41: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/457: 7 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/459: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/484: 6 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/68: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/887: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/890: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/105: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1090: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1115: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1392: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1538: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1539: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1582: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1669: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/177: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1770: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1814: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1816: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1896: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1917: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2006: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2007: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/209: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/244: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/249: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/381: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/41: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/457: 5 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/459: 2 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/484: 1 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/68: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/887: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/890: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/105: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1090: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1115: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1392: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1538: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1539: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1582: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1669: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/177: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1770: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1814: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1816: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1896: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/1917: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2006: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/2007: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/209: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/244: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/249: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/381: 2 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/41: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/457: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/459: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/484: 3 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/68: 1 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/887: 0 overlaps
Thermogenesis WP4321 x https://identifiers.org/aop.events/890: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/105: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1090: 3 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1115: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1392: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1538: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1539: 5 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1582: 2 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1669: 1 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/177: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1770: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1814: 1 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1816: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1896: 1 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/1917: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/2006: 1 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/2007: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/209: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/244: 1 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/249: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/381: 6 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/41: 2 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/457: 6 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/459: 1 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/484: 3 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/68: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/887: 0 overlaps
Thymic Stromal Lymphopoietin TSLP Signaling WP2203 x https://identifiers.org/aop.events/890: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/105: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1090: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1115: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1392: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1538: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1539: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1582: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1669: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/177: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1770: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1814: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1816: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1896: 2 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/1917: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/2006: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/2007: 1 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/209: 1 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/244: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/249: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/381: 4 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/41: 1 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/457: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/459: 1 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/484: 3 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/68: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/887: 0 overlaps
Thyroid Stimulating Hormone TSH Signaling WP2032 x https://identifiers.org/aop.events/890: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/105: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1090: 5 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1115: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1392: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1538: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1539: 5 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1582: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1669: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/177: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1770: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1814: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1816: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1896: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/1917: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/2006: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/2007: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/209: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/244: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/249: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/381: 5 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/41: 2 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/457: 3 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/459: 1 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/484: 3 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/68: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/887: 0 overlaps
Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566 x https://identifiers.org/aop.events/890: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/105: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1090: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1115: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1392: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1538: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1539: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1582: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1669: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/177: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1770: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1814: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1816: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1896: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/1917: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/2006: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/2007: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/209: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/244: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/249: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/381: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/41: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/457: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/459: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/484: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/68: 1 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/887: 0 overlaps
UDP Derived Sugars Synthesis In Fibroblasts WP5394 x https://identifiers.org/aop.events/890: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/105: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1090: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1115: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1392: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1538: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1539: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1582: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1669: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/177: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1770: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1814: 5 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1816: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1896: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/1917: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2006: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/2007: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/209: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/244: 5 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/249: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/381: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/41: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/457: 1 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/459: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/484: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/68: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/887: 0 overlaps
Unfolded Protein Response WP4925 x https://identifiers.org/aop.events/890: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/105: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 8 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1115: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1392: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1538: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1539: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1582: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1669: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/177: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1770: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1814: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1816: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1896: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1917: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2006: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2007: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/249: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/381: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/41: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/457: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/459: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/484: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/68: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/887: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/890: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/105: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1090: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1115: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1392: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1538: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1539: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1582: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1669: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/177: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1770: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1814: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1816: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1896: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/1917: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2006: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/2007: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/209: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/244: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/249: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/381: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/41: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/457: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/459: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/484: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/68: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/887: 0 overlaps
mRNA Processing WP411 x https://identifiers.org/aop.events/890: 0 overlaps
title of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LMNA'}, number: 1
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'TPI1'}, number: 1
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GPI'}, number: 1
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Aerobic Glycolysis WP4629, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'AKT1', 'EIF4EBP1', 'LAMB2', 'LAMB3', 'LAMA5'}, number: 6
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1', 'HRAS', 'EIF4EBP1', 'PRKCD'}, number: 4
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1', 'HRAS', 'EIF4EBP1', 'PRKCD'}, number: 4
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'AKT1', 'EIF4EBP1', 'LAMB2', 'LAMB3', 'LAMA5'}, number: 6
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'AKT1', 'EIF4EBP1', 'LAMB2', 'LAMB3', 'LAMA5'}, number: 6
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'NDRG1', 'BAX', 'AKT1', 'E2F1', 'EIF4EBP1'}, number: 7
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'E2F1', 'CRKL', 'EIF4EBP1', 'STAT3'}, number: 7
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'CDC25A', 'BAX', 'AKT1', 'E2F1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'CDC25A', 'BAX', 'AKT1', 'E2F1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'E2F1', 'CDC25A', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'CDC25A', 'BAX', 'AKT1', 'E2F1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'BAX'}, number: 3
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25A', 'BAX'}, number: 2
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'CDC25A', 'BAX', 'AKT1', 'E2F1'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'EIF4EBP1', 'STAT3'}, number: 5
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'E2F1', 'EIF4EBP1', 'STAT3'}, number: 6
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EIF4EBP1', 'AKT1'}, number: 4
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Androgen Receptor Network In Prostate Cancer WP2263, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'AKT1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'AKT1'}, number: 3
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'CASP2', 'AKT1'}, number: 4
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'AKT1'}, number: 3
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'AKT1'}, number: 3
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'PMAIP1', 'BAX'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1', 'BAX'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'PMAIP1', 'CASP2', 'AKT1'}, number: 4
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKBIA', 'AKT1'}, number: 2
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis WP254, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'HRAS', 'RPS6KA1'}, number: 4
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'PRKCD', 'CRKL'}, number: 6
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'PRKCD', 'NFKBIA'}, number: 6
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: B Cell Receptor Signaling WP23, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DVL3', 'MAP2K2', 'HRAS', 'BAX', 'AKT1', 'MET', 'E2F1', 'COL4A2', 'LAMC3', 'FGFR1', 'LAMB2', 'LAMB3', 'LAMA5', 'CCND3'}, number: 14
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'E2F1', 'CRKL', 'NCOA3', 'STAT5A', 'STAT3'}, number: 8
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'HRAS', 'BAX', 'AKT1', 'E2F1', 'PMAIP1', 'CCND3'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'HRAS', 'BAX', 'AKT1', 'E2F1', 'PMAIP1', 'CCND3'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1', 'BAX', 'E2F1', 'PMAIP1', 'CCND3'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'KEAP1'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'HRAS', 'BAX', 'AKT1', 'E2F1', 'PMAIP1', 'CCND3'}, number: 7
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'CCND3', 'E2F1', 'PMAIP1', 'BAX'}, number: 4
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DVL3', 'BAX', 'PMAIP1', 'KEAP1', 'CCND3'}, number: 5
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'HRAS', 'BAX', 'AKT1', 'E2F1', 'PMAIP1', 'KEAP1', 'CCND3'}, number: 8
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'NFKBIA', 'STAT5A', 'STAT3'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'KEAP1', 'AKT1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'GNB2', 'AKT1', 'MET', 'E2F1', 'COL4A2', 'HSP90B1', 'IL4R', 'LAMC3', 'STAT6', 'FGFR1', 'STAT5A', 'LAMB2', 'IL6ST', 'LAMB3', 'STAT3', 'LAMA5'}, number: 18
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'GNB2', 'AKT1', 'MET', 'COL4A2', 'HSP90B1', 'IL4R', 'LAMC3', 'FGFR1', 'LAMB2', 'LAMB3', 'LAMA5', 'CCND3'}, number: 14
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDK7', 'E2F1', 'CCND3'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'E2F1', 'MCM7', 'CDC25A', 'CCND3'}, number: 4
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'CCND3'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK7', 'E2F1', 'CDC25A', 'CCND3'}, number: 4
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'CCND3'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1', 'MCM7', 'CDC25A', 'CCND3'}, number: 4
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDK7', 'CDC25A', 'CCND3'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'CCND3'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAP1', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'TPI1', 'AKT1'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GPI', 'PHGDH'}, number: 2
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'TPI1'}, number: 1
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GPI'}, number: 1
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Cori Cycle WP1946, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'E2F1', 'PARP1', 'BAX'}, number: 3
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PARP1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'E2F1', 'EIF4EBP1'}, number: 6
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RPS6KA1', 'PXDN', 'PRKCD', 'AKT1', 'E2F1', 'CRKL', 'NCOA3', 'STAT5A', 'EIF4EBP1', 'CSK', 'PEBP1', 'STAT3'}, number: 14
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'E2F1', 'AKT1'}, number: 2
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'PRKCD', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 8
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'E2F1', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 7
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EIF4EBP1', 'AKT1'}, number: 4
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Effect Of Progerin On Genes Involved In Progeria WP4320, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MET', 'COL4A2', 'LAMC3', 'LAMB2', 'LAMB3', 'LAMA5', 'CCND3'}, number: 9
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'CRKL', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND3', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'AKT1', 'MET', 'COL4A2', 'LAMC3', 'RELN', 'LAMB2', 'LAMB3', 'LAMA5', 'COL6A2'}, number: 10
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'AKT1', 'CCND3', 'MET', 'COL4A2', 'LAMC3', 'RELN', 'LAMB2', 'LAMB3', 'LAMA5', 'COL6A2'}, number: 11
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MYBL2', 'AURKA'}, number: 2
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'AURKA'}, number: 1
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'AKT1', 'E2F1', 'FGFR1', 'EIF4EBP1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EIF4EBP1', 'HRAS', 'E2F1', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'E2F1', 'AKT1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'KEAP1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'E2F1', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'KEAP1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'KEAP1', 'E2F1', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'KEAP1', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'AKT1', 'E2F1', 'FGFR1', 'EIF4EBP1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR1', 'HRAS', 'EIF4EBP1', 'AKT1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): {'ATP6AP1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'BAX', 'AKT1'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): {'ATP6AP1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): {'ATP6AP1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): {'ATP6AP1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'DDB1', 'AKT1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'BAX'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DDB1', 'BAX'}, number: 2
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'CREB3L2', 'STAT6', 'STAT5A', 'STAT3'}, number: 7
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'CREB3L2', 'AKT1'}, number: 4
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): {'ATP6AP1'}, number: 1
Term: Hepatitis B Infection WP4666, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MET', 'HRAS'}, number: 3
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'CRKL', 'STAT3'}, number: 4
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'STAT3'}, number: 3
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'MET', 'HRAS', 'STAT3'}, number: 4
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'MET', 'HRAS'}, number: 3
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Hepatocyte Growth Factor Receptor Signaling WP313, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA1', 'HRAS', 'AKT1'}, number: 4
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RPS6KA1', 'AKT1', 'STAT3'}, number: 5
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RPS6KA1', 'AKT1', 'STAT3'}, number: 5
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT3', 'IL6ST'}, number: 5
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: IL11 Signaling WP2332, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'CRKL', 'STAT5A', 'STAT3'}, number: 6
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: IL2 Signaling WP49, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'DDIT3', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'AKT1'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'DDIT3', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'AKT1'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'AKT1'}, number: 2
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'BAX'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BAX'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'DDIT3', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKBIA', 'STAT3', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'DDIT3', 'STAT3', 'AKT1'}, number: 3
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: IL26 Signaling WP5347, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'AKT1', 'CRKL', 'STAT5A', 'STAT3'}, number: 5
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: IL3 Signaling WP286, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT5A', 'STAT3', 'AKT1'}, number: 3
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKBIA', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1', 'IL4R', 'STAT6', 'STAT5A', 'STAT3'}, number: 5
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IL4R', 'AKT1'}, number: 2
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: IL4 Signaling WP395, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'EIF4EBP1'}, number: 5
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'PRKCD', 'EIF4EBP1'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'XBP1', 'AKT1'}, number: 3
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'XBP1', 'AKT1'}, number: 3
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'PRKCD', 'EIF4EBP1'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GYS1', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'EIF4EBP1', 'GYS1', 'TRIB3'}, number: 6
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'EIF4EBP1', 'GYS1'}, number: 5
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Insulin Signaling WP481, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND3', 'HRAS', 'FOXM1', 'AKT1'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND3', 'AKT1'}, number: 2
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'STAT5A', 'STAT3', 'AKT1'}, number: 4
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA1', 'HRAS', 'AKT1'}, number: 4
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RPS6KA1', 'AKT1', 'CRKL', 'STAT5A', 'STAT3'}, number: 7
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'RPS6KA1', 'AKT1', 'STAT5A', 'STAT3'}, number: 6
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'STAT3'}, number: 5
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Kit Receptor Signaling WP304, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'MET', 'HRAS', 'AKT1'}, number: 4
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'CRKL', 'STAT3'}, number: 5
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'STAT3', 'AKT1'}, number: 4
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'MET', 'STAT3'}, number: 5
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'MET', 'HRAS', 'AKT1'}, number: 4
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: MET In Type 1 Papillary Renal Cell Carcinoma WP4205, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'STAT3'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BAX'}, number: 1
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'E2F1', 'IL6ST', 'STAT3'}, number: 3
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GPI', 'P3H3', 'PLOD1', 'FGFR1', 'PHGDH'}, number: 5
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathways Of Fibroblasts WP5312, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PRKCD', 'AKT1', 'STAT3'}, number: 5
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PRKCD', 'AKT1', 'NFKBIA', 'STAT3'}, number: 6
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT3', 'IL6ST'}, number: 5
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1'}, number: 3
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Oncostatin M Signaling WP2374, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: One Carbon Metabolism WP241, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DDIT3', 'XBP1', 'HSPA5'}, number: 3
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DDIT3', 'XBP1', 'HSPA5'}, number: 3
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'DDIT3', 'TRIB3', 'HSP90B1'}, number: 3
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HSP90B1'}, number: 1
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced Unfolded Protein Response WP3613, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS', 'BAX', 'COL4A2', 'FGFR1', 'LAMB2', 'CSNK2A2', 'LAMC3', 'LAMB3', 'CCND3', 'NDRG1', 'DDIT3', 'TEAD4', 'EPHA2', 'RPS6KA1', 'MET', 'FOXM1', 'CDH16', 'MAPKAPK2', 'WWC1', 'CIT', 'EIF4EBP1', 'EZH2', 'EIF4G1', 'CSNK1A1', 'LAMA5', 'DVL3', 'MAP2K2', 'CDK7', 'AKT1', 'E2F1', 'BAP1', 'CHD8', 'ITPR3'}, number: 33
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'E2F1', 'EIF4EBP1'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'MAPKAPK2', 'AKT1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'DVL3', 'HRAS', 'AKT1', 'BAX', 'E2F1', 'CCND3'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'DVL3', 'HRAS', 'BAX', 'AKT1', 'E2F1', 'DDIT3', 'CCND3'}, number: 7
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CDK7', 'AKT1', 'BAX', 'E2F1', 'CCND3'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EPHA2'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'DVL3', 'HRAS', 'AKT1', 'BAX', 'E2F1', 'CCND3'}, number: 6
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'CCND3', 'E2F1', 'BAX'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DVL3', 'EPHA2', 'CDK7', 'BAX', 'CSNK2A2', 'CSNK1A1', 'CHD8', 'CCND3'}, number: 8
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'DVL3', 'EPHA2', 'HRAS', 'BAX', 'AKT1', 'E2F1', 'DDIT3', 'CCND3'}, number: 8
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'RPS6KA1', 'EIF4EBP1'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EPHA2', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'EPHA2', 'HRAS', 'AKT1', 'MET', 'E2F1', 'COL4A2', 'LAMC3', 'FGFR1', 'DDIT3', 'EIF4EBP1', 'LAMB2', 'LAMB3', 'LAMA5'}, number: 14
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'EPHA2', 'HRAS', 'AKT1', 'MET', 'COL4A2', 'LAMC3', 'FGFR1', 'EIF4EBP1', 'LAMB2', 'LAMB3', 'LAMA5', 'CCND3'}, number: 13
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HSPA5'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'STAT3'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGFR1', 'HSP90B1', 'STAT3'}, number: 3
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR1', 'HSP90B1'}, number: 2
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Prion Disease Pathway WP3995, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EIF4EBP1', 'AKT1'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 6
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'NFKBIA', 'STAT5A', 'EIF4EBP1', 'SIRPA', 'STAT3'}, number: 8
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'AKT1', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 6
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'EIF4EBP1', 'AKT1'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'HRAS', 'EIF4EBP1', 'AKT1'}, number: 4
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'AKT1', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 5
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'AKT1'}, number: 2
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'BAX'}, number: 1
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BAX'}, number: 1
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'HRAS', 'AKT1'}, number: 3
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'AKT1', 'NFKBIA', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 6
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'AKT1', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 5
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS', 'EIF4EBP1', 'AKT1'}, number: 3
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: RAC1 PAK1 P38 MMP2 Pathway WP3303, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'E2F1', 'CCND3'}, number: 2
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'E2F1', 'MCM7', 'CDC25A', 'CCND3'}, number: 4
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'CCND3'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'POLE', 'CCND3'}, number: 4
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'CCND3'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1', 'MCM7', 'CDC25A', 'CCND3'}, number: 4
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDC25A', 'POLE', 'CCND3'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'E2F1', 'CDC25A', 'CCND3'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'E2F1'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PHGDH'}, number: 1
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Serine Metabolism WP4688, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BAX', 'AKT1', 'E2F1', 'COL4A2', 'LAMC3', 'LAMB2', 'LAMB3', 'LAMA5'}, number: 8
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'E2F1', 'AKT1'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'BAX', 'E2F1', 'AKT1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BAX', 'E2F1', 'AKT1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'BAX', 'E2F1', 'AKT1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BAX', 'E2F1', 'AKT1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'E2F1', 'BAX'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BAX'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BAX', 'E2F1', 'AKT1'}, number: 3
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'NFKBIA', 'AKT1'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1', 'E2F1', 'COL4A2', 'LAMC3', 'LAMB2', 'LAMB3', 'LAMA5'}, number: 7
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1', 'COL4A2', 'LAMB3', 'LAMB2', 'LAMC3', 'LAMA5'}, number: 6
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SCD'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS1', 'SCD', 'AKT1', 'LSS', 'LPIN1'}, number: 5
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'SCD', 'AKT1'}, number: 2
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR1', 'HRAS', 'RPS6KA1'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS', 'RPS6KA1'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'HRAS', 'RPS6KA1'}, number: 2
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CREB3L2', 'FGFR1', 'HRAS'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CREB3L2', 'FGFR1', 'HRAS'}, number: 3
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'FGFR1'}, number: 1
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Thermogenesis WP4321, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 5
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'NFKBIA', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 6
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'AKT1', 'STAT6', 'STAT5A', 'EIF4EBP1', 'STAT3'}, number: 6
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Thymic Stromal Lymphopoietin TSLP Signaling WP2203, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND3', 'RPS6KA1', 'HRAS', 'AKT1'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA1', 'HRAS', 'STAT3', 'AKT1'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'STAT3', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'CCND3', 'AKT1'}, number: 2
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND3'}, number: 1
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'RPS6KA1', 'HRAS', 'STAT3', 'AKT1'}, number: 4
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HRAS', 'STAT3', 'AKT1'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND3', 'HRAS', 'AKT1'}, number: 3
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Stimulating Hormone TSH Signaling WP2032, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA1', 'AKT1', 'EIF4G1', 'EIF4EBP1'}, number: 5
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA1', 'PRKCD', 'AKT1', 'EIF4EBP1'}, number: 5
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'RPS6KA1', 'PRKCD', 'AKT1', 'EIF4EBP1'}, number: 5
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EIF4EBP1', 'AKT1'}, number: 2
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'EIF4EBP1', 'AKT1'}, number: 3
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GPI'}, number: 1
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: UDP Derived Sugars Synthesis In Fibroblasts WP5394, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PMAIP1', 'DDIT3', 'XBP1', 'CASP2', 'HSPA5'}, number: 5
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PMAIP1'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PMAIP1', 'DDIT3', 'XBP1', 'CASP2', 'HSPA5'}, number: 5
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'DDIT3'}, number: 1
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: Unfolded Protein Response WP4925, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TEAD4', 'EPHA2', 'MAP2K2', 'HRAS', 'NDRG1', 'AKT1', 'MAPKAPK2', 'EIF4G1'}, number: 8
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PRKCD', 'AKT1', 'CSK', 'STAT3'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): {'MAPKAPK2', 'STAT3', 'AKT1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'EPHA2'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'HRAS', 'AKT1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'EPHA2'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'EPHA2', 'HRAS', 'AKT1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): {'MAP2K2', 'HRAS', 'PRKCD', 'AKT1', 'NFKBIA', 'STAT3'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'EPHA2', 'AKT1'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MAP2K2', 'EPHA2', 'HRAS', 'AKT1', 'STAT6', 'STAT3'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): {'AKT1'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'MAP2K2', 'EPHA2', 'HRAS', 'AKT1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/105, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1582, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1669, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/177, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1770, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1816, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1896, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/2007, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/381, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/459, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/887, Title of overlapping gene(s): set(), number: 0
Term: mRNA Processing WP411, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Section 9.5.4 Tabulation gene overlap
In this section, a table is created that contains the number of overlapping genes and number of total genes in preparation for section 7.5.5.
final_geneoverlaptable_C5=pd.DataFrame.from_dict(overlapping_genes_betweenORA_and_significantKEs5,orient='index')
Section 9.5.5 Percent overlap calculation
In this section, the percent overlap for the genesets are calculated.
Step 57. Lastly, the percent overlap is calculated and add the result as a column to the dataframe. This is first done by running a for loop to calculate the total number of genes belonging to the enriched pathways of ORA.
variable_count5= {}
for index, row in exploded_df5_ORApathwaytable.iterrows():
unique_KE = row['Term']
gene_expression_value = row['Genes']
if unique_KE not in variable_count5:
variable_count5[unique_KE] = 1
else:
variable_count5[unique_KE] += 1
print("The total number of genes: ")
print(variable_count5)
The total number of genes:
{'Photodynamic Therapy Induced Unfolded Protein Response WP3613': 12, 'VEGFA VEGFR2 Signaling WP3888': 40, 'Prolactin Signaling WP2037': 12, 'Retinoblastoma Gene In Cancer WP2446': 13, 'Pleural Mesothelioma WP5087': 33, 'Androgen Receptor Network In Prostate Cancer WP2263': 14, 'Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240': 5, 'Prion Disease Pathway WP3995': 7, 'Alpha 6 Beta 4 Signaling WP244': 7, 'Focal Adhesion WP306': 18, 'Acquired Partial Lipodystrophy Barraquer Simons Syndrome WP5104': 4, 'Thymic Stromal Lymphopoietin TSLP Signaling WP2203': 7, 'Mammary Gland Development Pathway Involution Stage 4 Of 4 WP2815': 4, 'IL4 Signaling WP395': 8, 'B Cell Receptor Signaling WP23': 11, 'UDP Derived Sugars Synthesis In Fibroblasts WP5394': 4, 'Kit Receptor Signaling WP304': 8, 'Effect Of Progerin On Genes Involved In Progeria WP4320': 6, 'IL11 Signaling WP2332': 7, 'Hepatocyte Growth Factor Receptor Signaling WP313': 6, 'Cell Cycle WP179': 12, 'Unfolded Protein Response WP4925': 5, 'JAK STAT Signaling In The Regulation Of Beta Cells WP5358': 6, 'Cori Cycle WP1946': 4, 'Small Cell Lung Cancer WP4658': 10, 'Gastric Cancer Network 1 WP2361': 5, 'IL3 Signaling WP286': 7, 'Serine Metabolism WP4688': 3, 'EGF EGFR Signaling WP437': 14, 'IL2 Signaling WP49': 6, 'Cancer Pathways WP5434': 30, 'Apoptosis WP254': 9, 'RAC1 PAK1 P38 MMP2 Pathway WP3303': 8, 'One Carbon Metabolism WP241': 5, 'Clear Cell Renal Cell Carcinoma Pathways WP4018': 9, 'DNA IR Double Strand Breaks And Cellular Response Via ATM WP3959': 7, 'Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982': 8, 'mRNA Processing WP411': 11, 'Amino Acid Metabolism WP3925': 9, 'MET In Type 1 Papillary Renal Cell Carcinoma WP4205': 7, 'Proteoglycan Biosynthesis WP4784': 4, 'Thyroid Stimulating Hormone TSH Signaling WP2032': 7, 'Oncostatin M Signaling WP2374': 7, 'Translation Inhibitors In Chronically Activated PDGFRA Cells WP4566': 6, 'Thermogenesis WP4321': 10, 'Insulin Signaling WP481': 13, 'Head And Neck Squamous Cell Carcinoma WP4674': 8, 'Hepatitis B Infection WP4666': 12, 'IL26 Signaling WP5347': 6, 'Metabolic Pathways Of Fibroblasts WP5312': 5, 'Aerobic Glycolysis WP4629': 3}
Step 88. The result is converted into a dataframe and added to the final dataframe. This is followed by some data manipulation prior to calculation of gene set overlap.
variable_count_df5=pd.DataFrame.from_dict(variable_count5,orient='index')
reset_variable_count_df5 = variable_count_df5.reset_index()
reset_variable_count_df5.columns = ['Term', 'Total number of genes']
Genesetoverlaptable_C5=final_geneoverlaptable_C5.reset_index(level=[1])
Genesetoverlaptable_C5.reset_index(inplace=True)
Genesetoverlaptable_C5.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C5=pd.merge(reset_variable_count_df5,Genesetoverlaptable_C5, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_C5.loc[:,'Percent geneset overlap']= tabulation_C5.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_C5
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Photodynamic Therapy Induced Unfolded Protein ... | 12 | https://identifiers.org/aop.events/105 | {} | 0 | 0.0 |
1 | Photodynamic Therapy Induced Unfolded Protein ... | 12 | https://identifiers.org/aop.events/1090 | {DDIT3} | 1 | 8.333333333333332 |
2 | Photodynamic Therapy Induced Unfolded Protein ... | 12 | https://identifiers.org/aop.events/1115 | {} | 0 | 0.0 |
3 | Photodynamic Therapy Induced Unfolded Protein ... | 12 | https://identifiers.org/aop.events/1392 | {} | 0 | 0.0 |
4 | Photodynamic Therapy Induced Unfolded Protein ... | 12 | https://identifiers.org/aop.events/1538 | {} | 0 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
1372 | Aerobic Glycolysis WP4629 | 3 | https://identifiers.org/aop.events/459 | {TPI1} | 1 | 33.33333333333333 |
1373 | Aerobic Glycolysis WP4629 | 3 | https://identifiers.org/aop.events/484 | {} | 0 | 0.0 |
1374 | Aerobic Glycolysis WP4629 | 3 | https://identifiers.org/aop.events/68 | {GPI} | 1 | 33.33333333333333 |
1375 | Aerobic Glycolysis WP4629 | 3 | https://identifiers.org/aop.events/887 | {} | 0 | 0.0 |
1376 | Aerobic Glycolysis WP4629 | 3 | https://identifiers.org/aop.events/890 | {} | 0 | 0.0 |
1377 rows × 6 columns
Section 10. Comparison 6: cyclosporin A timepoint 2
Section 10.1 Calculation of n variable
In this section, variable n will be calculated for the comparison 6.
Step 89. The table containing the differential expressed genes for comparison 6 to control is loaded with the filter for significance.
C6_DEG= pd.read_csv('topTable_X48_CsA_.5 - X48_vehicle...control_.0.TSV.tsv',sep='\t')
Comparison6_DEG= C6_DEG[C6_DEG['adj. p-value'] < 0.05]
Comparison_6_DEG= Comparison6_DEG.copy()
Comparison_6_DEG.rename(columns={Comparison_6_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison_6_DEG['Entrez.Gene'] = Comparison_6_DEG['Entrez.Gene'].astype(str)
Step 90. Here, the results of the DEG table are integrated into the mergeddataframe dataframe. This is followed by adjustment of the dataframe columns to remove non-relevant columns.
merged_dataframe_DEG_C6= pd.merge(mergeddataframe,Comparison_6_DEG, on='Entrez.Gene')
merged_dataframe_DEG_C6
KEID | WPtitle | WPID | Gene.Symbol | Entrez.Gene | N | meanExpr | log2FC | log2FC SE | p-value | adj. p-value | |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CX3CL1 | 6376 | 129 | 7.722092 | 0.280741 | 0.079671 | 1.264692e-03 | 0.022882 |
1 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | TNFSF13B | 10673 | 129 | 4.209082 | 0.346971 | 0.110732 | 3.308014e-03 | 0.044293 |
2 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | LIF | 3976 | 129 | 7.442730 | 0.412032 | 0.060500 | 5.269755e-07 | 0.000087 |
3 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL28 | 56477 | 129 | 5.870869 | -0.372479 | 0.083658 | 1.265157e-04 | 0.004429 |
4 | https://identifiers.org/aop.events/486 | Overview of proinflammatory and profibrotic me... | WP5095 | CCL2 | 6347 | 129 | 5.881613 | -0.941644 | 0.213924 | 1.433178e-04 | 0.004843 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1714 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | HOMER1 | 9456 | 398 | 8.586114 | -0.549873 | 0.090769 | 2.788510e-06 | 0.000295 |
1715 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | NRAS | 4893 | 398 | 8.890645 | -0.376871 | 0.120729 | 3.404745e-03 | 0.045113 |
1716 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | BDNF | 627 | 398 | 6.500470 | 0.261420 | 0.065942 | 4.233877e-04 | 0.010590 |
1717 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | RPS6KB1 | 6198 | 398 | 7.989280 | 0.228385 | 0.071914 | 2.982152e-03 | 0.040934 |
1718 | https://identifiers.org/aop.events/352 | BDNF-TrkB signaling | WP3676 | MTOR | 2475 | 398 | 6.234285 | 0.271610 | 0.075657 | 1.073098e-03 | 0.020375 |
1719 rows × 11 columns
Step 91. Lastly, the following for loop for the key events is run to retrieve the n variable. It is comparable to the for loop of N, but adds a condition to check for significance of genes by p adjusted value being smaller than 0.05.
variable_n_dictionary_count6= {}
for index, row in merged_dataframe_DEG_C6.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['adj. p-value']
if gene_expression_value < 0.05:
if unique_KE not in variable_n_dictionary_count6:
variable_n_dictionary_count6[unique_KE] = 1
else:
variable_n_dictionary_count6[unique_KE] += 1
print("The total number of significant genes: ")
print(variable_n_dictionary_count6)
The total number of significant genes:
{'https://identifiers.org/aop.events/486': 6, 'https://identifiers.org/aop.events/875': 14, 'https://identifiers.org/aop.events/2007': 19, 'https://identifiers.org/aop.events/1495': 11, 'https://identifiers.org/aop.events/105': 22, 'https://identifiers.org/aop.events/1816': 22, 'https://identifiers.org/aop.events/1668 ': 5, 'https://identifiers.org/aop.events/244 ': 50, 'https://identifiers.org/aop.events/1814 ': 27, 'https://identifiers.org/aop.events/888': 5, 'https://identifiers.org/aop.events/41': 35, 'https://identifiers.org/aop.events/1270': 7, 'https://identifiers.org/aop.events/1086': 9, 'https://identifiers.org/aop.events/1487 ': 3, 'https://identifiers.org/aop.events/1539': 18, 'https://identifiers.org/aop.events/201': 5, 'https://identifiers.org/aop.events/457': 70, 'https://identifiers.org/aop.events/55': 18, 'https://identifiers.org/aop.events/188': 2, 'https://identifiers.org/aop.events/618': 15, 'https://identifiers.org/aop.events/389': 5, 'https://identifiers.org/aop.events/177': 66, 'https://identifiers.org/aop.events/2013': 10, 'https://identifiers.org/aop.events/2006': 24, 'https://identifiers.org/aop.events/1497': 30, 'https://identifiers.org/aop.events/870': 3, 'https://identifiers.org/aop.events/1669': 43, 'https://identifiers.org/aop.events/1115': 10, 'https://identifiers.org/aop.events/202': 16, 'https://identifiers.org/aop.events/1917': 23, 'https://identifiers.org/aop.events/1633': 60, 'https://identifiers.org/aop.events/1392': 30, 'https://identifiers.org/aop.events/1815': 4, 'https://identifiers.org/aop.events/386': 30, 'https://identifiers.org/aop.events/1944': 3, 'https://identifiers.org/aop.events/1582': 8, 'https://identifiers.org/aop.events/1896': 40, 'https://identifiers.org/aop.events/1172': 3, 'https://identifiers.org/aop.events/1496': 21, 'https://identifiers.org/aop.events/68': 14, 'https://identifiers.org/aop.events/1493': 42, 'https://identifiers.org/aop.events/265': 25, 'https://identifiers.org/aop.events/1817': 18, 'https://identifiers.org/aop.events/1819': 6, 'https://identifiers.org/aop.events/1750': 30, 'https://identifiers.org/aop.events/1901': 2, 'https://identifiers.org/aop.events/1848': 6, 'https://identifiers.org/aop.events/1365': 18, 'https://identifiers.org/aop.events/890': 10, 'https://identifiers.org/aop.events/1587': 3, 'https://identifiers.org/aop.events/1457': 3, 'https://identifiers.org/aop.events/1586': 3, 'https://identifiers.org/aop.events/149': 60, 'https://identifiers.org/aop.events/1575': 18, 'https://identifiers.org/aop.events/1579': 18, 'https://identifiers.org/aop.events/87': 6, 'https://identifiers.org/aop.events/249': 10, 'https://identifiers.org/aop.events/288': 4, 'https://identifiers.org/aop.events/209': 84, 'https://identifiers.org/aop.events/1498': 14, 'https://identifiers.org/aop.events/1500': 15, 'https://identifiers.org/aop.events/1488': 14, 'https://identifiers.org/aop.events/1494': 3, 'https://identifiers.org/aop.events/52': 16, 'https://identifiers.org/aop.events/381': 20, 'https://identifiers.org/aop.events/484': 59, 'https://identifiers.org/aop.events/388': 14, 'https://identifiers.org/aop.events/1262': 18, 'https://identifiers.org/aop.events/1945': 92, 'https://identifiers.org/aop.events/2009': 3, 'https://identifiers.org/aop.events/2012': 15, 'https://identifiers.org/aop.events/1770': 9, 'https://identifiers.org/aop.events/1818': 18, 'https://identifiers.org/aop.events/1752': 5, 'https://identifiers.org/aop.events/887': 14, 'https://identifiers.org/aop.events/1585': 3, 'https://identifiers.org/aop.events/214': 4, 'https://identifiers.org/aop.events/1271': 4, 'https://identifiers.org/aop.events/1087': 30, 'https://identifiers.org/aop.events/1538': 10, 'https://identifiers.org/aop.events/898': 18, 'https://identifiers.org/aop.events/195': 14, 'https://identifiers.org/aop.events/459': 24, 'https://identifiers.org/aop.events/341': 2, 'https://identifiers.org/aop.events/1670': 8, 'https://identifiers.org/aop.events/759': 2, 'https://identifiers.org/aop.events/1090': 42, 'https://identifiers.org/aop.events/344': 1, 'https://identifiers.org/aop.events/1841': 2, 'https://identifiers.org/aop.events/1820': 3, 'https://identifiers.org/aop.events/896': 5, 'https://identifiers.org/aop.events/1549': 11, 'https://identifiers.org/aop.events/357': 2, 'https://identifiers.org/aop.events/352': 33}
Step 92. The output of the n variable dictionary is saved as a dataframe and integrated as a separate column into a dataframe.
n_variable_dataframe6=pd.DataFrame.from_dict(variable_n_dictionary_count6,orient='index')
n_variable_dataframe6
0 | |
---|---|
https://identifiers.org/aop.events/486 | 6 |
https://identifiers.org/aop.events/875 | 14 |
https://identifiers.org/aop.events/2007 | 19 |
https://identifiers.org/aop.events/1495 | 11 |
https://identifiers.org/aop.events/105 | 22 |
... | ... |
https://identifiers.org/aop.events/1820 | 3 |
https://identifiers.org/aop.events/896 | 5 |
https://identifiers.org/aop.events/1549 | 11 |
https://identifiers.org/aop.events/357 | 2 |
https://identifiers.org/aop.events/352 | 33 |
94 rows × 1 columns
n_variable_dataframe6_reset = n_variable_dataframe6.reset_index()
n_variable_dataframe6_reset.columns = ['KEID', 'n']
n_variable_dataframe6_reset
KEID | n | |
---|---|---|
0 | https://identifiers.org/aop.events/486 | 6 |
1 | https://identifiers.org/aop.events/875 | 14 |
2 | https://identifiers.org/aop.events/2007 | 19 |
3 | https://identifiers.org/aop.events/1495 | 11 |
4 | https://identifiers.org/aop.events/105 | 22 |
... | ... | ... |
89 | https://identifiers.org/aop.events/1820 | 3 |
90 | https://identifiers.org/aop.events/896 | 5 |
91 | https://identifiers.org/aop.events/1549 | 11 |
92 | https://identifiers.org/aop.events/357 | 2 |
93 | https://identifiers.org/aop.events/352 | 33 |
94 rows × 2 columns
merged_dataframe6= pd.merge(mergeddataframeDEG, n_variable_dataframe6_reset, on='KEID')
Section 10.2. Calculation of variable B and variable b.
In this section, variable B and variable b are calculated.
Step 93. Variable B is calculated by taking the length of the dataframe which includes all genes in 1 DEG table.
B=len(C6_DEG.index)
B
20411
Step 94. Variable b is calculated by taking the length of the dataframe which includes all genes in 1 DEG table with the condition for significance.
C6_DEG_filtered=C6_DEG[C6_DEG['adj. p-value'] < 0.05]
b=len(C6_DEG_filtered)
b
1596
Section 10.3. Calculation of enrichment score and hypergeometric p-value
In this section, the enrichment score and hypergeometric p-value will be calculated. This requires the four variables of the enrichment score per KE for which the formula will be applied to and stored in an additional dataframe.
Step 94. The final dataframe will be created that contains the KEID and the four variables: variable N, variable n, variable B and variable b.
Final_dataframe_ES= merged_dataframe4.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([20411 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([1596 for x in range(len(Final_dataframe_ES.index))])
Final_Dataframe_ES=Final_dataframe_ES.drop_duplicates(subset=['KEID'],keep='first')
Final_Dataframe_ES.reset_index(drop=True,inplace=True)
Copy_Final_DataFrame_ES=Final_Dataframe_ES.copy()
Step 95. The following for loop will be used to calculate the enrichment score for individual key events and the results will be saved as a separate column into the dataframe.
def calculate_Enrichment_Score(row):
return f"{(row['n']/row['N'])/(row['b']/row['B'])}"
Copy_Final_DataFrame_ES.loc[:,'Enrichmentscore']= Copy_Final_DataFrame_ES.apply(calculate_Enrichment_Score,axis=1)
Copy_Final_DataFrame_ES
KEID | N | n | B | b | Enrichmentscore | |
---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/486 | 129 | 1 | 20411 | 1596 | 0.09913834975034486 |
1 | https://identifiers.org/aop.events/875 | 169 | 9 | 20411 | 1596 | 0.6810628642612448 |
2 | https://identifiers.org/aop.events/2007 | 184 | 9 | 20411 | 1596 | 0.6255414351095129 |
3 | https://identifiers.org/aop.events/1495 | 253 | 9 | 20411 | 1596 | 0.45493922553419125 |
4 | https://identifiers.org/aop.events/105 | 165 | 3 | 20411 | 1596 | 0.23252449305080883 |
... | ... | ... | ... | ... | ... | ... |
76 | https://identifiers.org/aop.events/1841 | 17 | 2 | 20411 | 1596 | 1.5045702491522925 |
77 | https://identifiers.org/aop.events/1820 | 57 | 3 | 20411 | 1596 | 0.6730972167260255 |
78 | https://identifiers.org/aop.events/896 | 82 | 4 | 20411 | 1596 | 0.6238462008680238 |
79 | https://identifiers.org/aop.events/1549 | 101 | 4 | 20411 | 1596 | 0.5064889947641381 |
80 | https://identifiers.org/aop.events/352 | 398 | 20 | 20411 | 1596 | 0.6426556340600245 |
81 rows × 6 columns
Step 96. The following for loop will be used to calculate the hypergeometric p-value for individual Key Events and save the result as a separate column into the dataframe. This requires some in between steps for manipulation of the dataframe.
p_value_dataframe6=[]
for index, row in Copy_Final_DataFrame_ES.iterrows():
M = row['B']
n = row['b']
N = row['N']
k = row['n']
hpd = ss.hypergeom(M, n, N)
p = hpd.pmf(k)
p_value_dataframe6.append(p)
Hypergeometricpvalue_dataframe6=pd.DataFrame(p_value_dataframe6)
Hypergeometricpvalue_dataframe6.columns= ['Hypergeometric p-value']
Hypergeometricpvalue_dataframe6
Hypergeometric p-value | |
---|---|
0 | 0.000292 |
1 | 0.059794 |
2 | 0.038438 |
3 | 0.002515 |
4 | 0.000636 |
... | ... |
76 | 0.245286 |
77 | 0.172365 |
78 | 0.114053 |
79 | 0.056501 |
80 | 0.007626 |
81 rows × 1 columns
merged_finaltable_C6=pd.concat([Copy_Final_DataFrame_ES,Hypergeometricpvalue_dataframe6],axis=1)
Section 10.4. Filtering the results for significant KEs
In this section, the results will be filtered to only include significant KEs. Significant KEs have an enrichment score above 1 and a hypergeometric p-value below 0.05.
Step 97. Lastly, we filter the results to showcase the significant KEs for the comparison: 6.
filteredversion_C6= merged_finaltable_C6[(merged_finaltable_C6['Enrichmentscore']>str(1))& (merged_finaltable_C6['Hypergeometric p-value'] < 0.05)]
filteredversion_C6
KEID | N | n | B | b | Enrichmentscore | Hypergeometric p-value | |
---|---|---|---|---|---|---|---|
20 | https://identifiers.org/aop.events/2013 | 100 | 13 | 20411 | 1596 | 1.6625501253132833 | 0.024238 |
28 | https://identifiers.org/aop.events/1815 | 58 | 10 | 20411 | 1596 | 2.2049736409990497 | 0.008887 |
33 | https://identifiers.org/aop.events/68 | 64 | 10 | 20411 | 1596 | 1.9982573621553885 | 0.015856 |
66 | https://identifiers.org/aop.events/1585 | 35 | 6 | 20411 | 1596 | 2.192373791621912 | 0.034925 |
# Ensure numeric types
filteredversion_C6['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C6['Hypergeometric p-value'], errors='coerce')
filteredversion_C6['Enrichmentscore'] = pd.to_numeric(filteredversion_C6['Enrichmentscore'], errors='coerce')
filteredversion_C6['combined_score'] = -np.log(filteredversion_C6['Hypergeometric p-value']) * filteredversion_C6['Enrichmentscore']
# Sort by combined score (highest first)
C6_sorted = filteredversion_C6.sort_values(by='combined_score', ascending=False)
# Show top rows
C6_sorted.to_excel('ConsistentKE-CyclosporinA-T2.xlsx')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\1192694649.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C6['Hypergeometric p-value'] = pd.to_numeric(filteredversion_C6['Hypergeometric p-value'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\1192694649.py:3: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C6['Enrichmentscore'] = pd.to_numeric(filteredversion_C6['Enrichmentscore'], errors='coerce')
C:\Users\shaki\AppData\Local\Temp\ipykernel_12508\1192694649.py:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filteredversion_C6['combined_score'] = -np.log(filteredversion_C6['Hypergeometric p-value']) * filteredversion_C6['Enrichmentscore']
Section 10.5. Calculation of percent gene overlap to ORA
Section 10.5.1 Creation of the significant KEs table
In this section, you merge the dataframes to retrieve the genes connected to only the significant KEs.
Step 98. The significant KE table is created using the significan KEs from the previous merggeddataframe_final.
significantKEID_genetable6=mergeddataframe_final2[(mergeddataframe_final2['KEID'] == 'https://identifiers.org/aop.events/2013')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1815') | (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/68')|(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1585')]
significantKEIDgenetable6=significantKEID_genetable6.drop(columns={'WPtitle','ID'})
significantKEIDgenetable6
KEID | gene | Entrez.Gene | |
---|---|---|---|
4343 | https://identifiers.org/aop.events/2013 | SOCS5 | 9655 |
4344 | https://identifiers.org/aop.events/2013 | FES | 2242 |
4345 | https://identifiers.org/aop.events/2013 | INPP5D | 3635 |
4346 | https://identifiers.org/aop.events/2013 | NFIL3 | 4783 |
4347 | https://identifiers.org/aop.events/2013 | GAB2 | 9846 |
... | ... | ... | ... |
18214 | https://identifiers.org/aop.events/1585 | PFDN5 | 5204 |
18215 | https://identifiers.org/aop.events/1585 | PFDN1 | 5201 |
18216 | https://identifiers.org/aop.events/1585 | PFDN2 | 5202 |
18217 | https://identifiers.org/aop.events/1585 | VBP1 | 7411 |
18218 | https://identifiers.org/aop.events/1585 | PFDN6 | 10471 |
257 rows × 3 columns
Section 10.5.2 Significant ORA pathway table plus splitting
In this section, the significant ORA pathway table is created.
Step 99. The significant ORA pathway table is created using the significant enriched patwhays identified from the ORA analysis. This requires data manipulation to restructure the table in a way that the individual genes for the enriched pathways are placed on individual rows.
datafile_ORA6 = pd.read_csv("C:/Users/shaki/Downloads/EMEXP-2599_ORApathwaytable/Comparison 6-CyclosporinA-timepoint2.txt", sep='\t')
datafileORA6=pd.DataFrame(datafile_ORA6)
filtereddatafileORA_6=datafileORA6[datafileORA6['Adjusted P-value'] < 0.05]
filtereddatafileORA_6
Gene_set | Term | P-value | Adjusted P-value | Old P-value | Old adjusted P-value | Odds Ratio | Combined Score | Genes | |
---|---|---|---|---|---|---|---|---|---|
0 | WikiPathways_2024_Human | Retinoblastoma Gene In Cancer WP2446 | 5.777480e-26 | 4.188673e-23 | 0 | 0 | 12.199140 | 708.93180 | TOP2A;RB1;CDKN1A;PCNA;MCM7;PRIM1;HMGB2;TTK;TYM... |
1 | WikiPathways_2024_Human | DNA Replication WP466 | 3.466155e-17 | 1.256481e-14 | 0 | 0 | 17.166140 | 650.61210 | PCNA;MCM7;PRIM1;GMNN;ORC4;CDC45;ORC1;RFC5;CDT1... |
2 | WikiPathways_2024_Human | Cell Cycle WP179 | 2.912721e-15 | 7.039075e-13 | 0 | 0 | 5.818540 | 194.74470 | RB1;CDKN1A;HDAC2;PCNA;MCM7;TTK;CDC14B;CDC20;OR... |
3 | WikiPathways_2024_Human | G1 To S Cell Cycle Control WP45 | 2.686793e-12 | 4.869812e-10 | 0 | 0 | 7.512052 | 200.14110 | RB1;CDKN1A;PCNA;MCM7;PRIM1;ORC4;CCNB1;CDC45;OR... |
4 | WikiPathways_2024_Human | DNA Mismatch Repair WP531 | 2.604210e-09 | 3.776105e-07 | 0 | 0 | 15.752660 | 311.36910 | RFC5;RFC3;PCNA;RFC4;RFC2;RPA1;RPA2;MSH6;MSH2;E... |
5 | WikiPathways_2024_Human | DNA IR Damage And Cellular Response Via ATR WP... | 1.356167e-08 | 1.638702e-06 | 0 | 0 | 4.868647 | 88.20051 | FANCI;BARD1;PCNA;RMI1;CEP164;PLK1;RPA1;RPA2;BR... |
6 | WikiPathways_2024_Human | Gastric Cancer Network 2 WP2363 | 1.086035e-06 | 1.124822e-04 | 0 | 0 | 8.170594 | 112.20660 | TOP2A;FANCI;RNF144B;RFC3;RFC4;UBE2C;DSCC1;UBE2... |
7 | WikiPathways_2024_Human | Gastric Cancer Network 1 WP2361 | 1.358478e-06 | 1.199395e-04 | 0 | 0 | 9.213797 | 124.47050 | TOP2A;TPX2;CENPF;UBE2C;MCM4;MYBL2;LIN9;ECT2;E2... |
8 | WikiPathways_2024_Human | Amino Acid Metabolism WP3925 | 1.503684e-06 | 1.199395e-04 | 0 | 0 | 3.818352 | 51.19491 | DDC;MAOA;GSS;GSR;PYCR1;HNMT;ADH5;WARS1;GLS;SRM... |
9 | WikiPathways_2024_Human | Cholesterol Metab With Bloch And Kandutsch Rus... | 1.654338e-06 | 1.199395e-04 | 0 | 0 | 5.641477 | 75.09997 | ABCA1;MYLIP;FDPS;SREBF1;HMGCS1;MSMO1;DHCR24;AC... |
10 | WikiPathways_2024_Human | Enterocyte Cholesterol Metabolism WP5333 | 2.709856e-06 | 1.786042e-04 | 0 | 0 | 6.439306 | 82.54298 | ABCA1;FDPS;HMGCS1;MSMO1;DHCR24;ACAT2;TM7SF2;SQ... |
11 | WikiPathways_2024_Human | VEGFA VEGFR2 Signaling WP3888 | 4.330585e-06 | 2.616395e-04 | 0 | 0 | 1.977793 | 24.42536 | ARF4;SRP54;PLOD3;GJA1;CSRP2;PNP;CFL1;BSG;PBK;G... |
12 | WikiPathways_2024_Human | Regulation Sister Chromatid Sep At Meta-Anapha... | 4.864727e-06 | 2.699193e-04 | 0 | 0 | 14.496670 | 177.34500 | CDC20;CENPE;ESPL1;PTTG1;RAD21;BUB1B;BUB1;MAD2L1 |
13 | WikiPathways_2024_Human | Cholesterol Synthesis Disorders WP5193 | 5.212235e-06 | 2.699193e-04 | 0 | 0 | 10.877580 | 132.32030 | FDPS;SQLE;EBP;HMGCS1;SC5D;MSMO1;DHCR24;DHCR7;F... |
14 | WikiPathways_2024_Human | Cholesterol Biosynthesis Pathway In Hepatocyte... | 1.478559e-05 | 7.146370e-04 | 0 | 0 | 5.245287 | 58.33733 | ABCA1;MYLIP;FDPS;SREBF1;HMGCS1;MSMO1;DHCR24;AC... |
15 | WikiPathways_2024_Human | DNA Repair Pathways Full Network WP4946 | 2.414420e-05 | 1.063211e-03 | 0 | 0 | 2.914943 | 30.99011 | FANCI;RFC5;RFC3;RFC4;PCNA;RFC2;POLM;RPA1;RPA2;... |
16 | WikiPathways_2024_Human | Fatty Acid Biosynthesis WP357 | 2.493047e-05 | 1.063211e-03 | 0 | 0 | 8.156733 | 86.45664 | ACLY;ACSS2;SCD;ECH1;ECHDC1;ECHDC3;HADH;ACACA;D... |
17 | WikiPathways_2024_Human | P53 Transcriptional Gene Network WP4963 | 2.986297e-05 | 1.153382e-03 | 0 | 0 | 3.258981 | 33.95497 | CDKN1A;PCNA;GADD45A;SERPINE1;LIF;TNFRSF10B;CDC... |
18 | WikiPathways_2024_Human | miRNA Regulation Of DNA Damage Response WP1530 | 3.022655e-05 | 1.153382e-03 | 0 | 0 | 3.708510 | 38.59369 | RB1;CDKN1A;GADD45A;TNFRSF10B;RPA2;BRCA1;CDC25C... |
19 | WikiPathways_2024_Human | Cohesin Complex Cornelia De Lange Syndrome WP5117 | 7.044815e-05 | 2.553745e-03 | 0 | 0 | 5.204712 | 49.76035 | SGO2;MAU2;PTTG1;PPP2R1B;ESPL1;CDCA5;RAD21;PLK1... |
20 | WikiPathways_2024_Human | Cholesterol Biosynthesis Pathway WP197 | 1.071128e-04 | 3.697942e-03 | 0 | 0 | 9.506194 | 86.90209 | FDPS;SQLE;HMGCS1;SC5D;MSMO1;DHCR7;FDFT1 |
21 | WikiPathways_2024_Human | DNA Damage Response WP707 | 1.127191e-04 | 3.714608e-03 | 0 | 0 | 3.419506 | 31.08540 | RB1;CDKN1A;GADD45A;TNFRSF10B;RPA2;BRCA1;CDC25C... |
22 | WikiPathways_2024_Human | Clear Cell Renal Cell Carcinoma Pathways WP4018 | 1.386429e-04 | 4.370266e-03 | 0 | 0 | 3.067138 | 27.24725 | GPI;TPI1;SHMT1;PLOD2;EGFR;ACACA;MTOR;VEGFA;ACL... |
23 | WikiPathways_2024_Human | Oxidative Stress Response WP408 | 1.544750e-04 | 4.666433e-03 | 0 | 0 | 5.179454 | 45.45219 | NQO1;MAOA;GPX3;TXNRD1;GSR;CAT;MGST1;MT1X;FOS;SOD1 |
24 | WikiPathways_2024_Human | Integrated Cancer Pathway WP1971 | 1.656458e-04 | 4.803728e-03 | 0 | 0 | 4.213332 | 36.67983 | RB1;BARD1;MSH6;CDKN1A;CDKN2B;MSH2;STAT1;CHEK1;... |
25 | WikiPathways_2024_Human | N Glycan Biosynthesis WP5153 | 1.771291e-04 | 4.939178e-03 | 0 | 0 | 3.630468 | 31.36227 | GPI;RPN2;ALG5;SRD5A3;ALG2;MOGS;DDOST;GMPPB;GAN... |
26 | WikiPathways_2024_Human | Network Map Of SARS CoV 2 Signaling WP5115 | 2.096079e-04 | 5.447805e-03 | 0 | 0 | 2.001218 | 16.95087 | IFITM1;CEBPB;CFH;SERPINE1;SRP54;IFIT1;CCNB2;ER... |
27 | WikiPathways_2024_Human | Neurodegeneration W Brain Fe Accumulation NBIA... | 2.103980e-04 | 5.447805e-03 | 0 | 0 | 4.081423 | 34.55541 | PANK2;DEPTOR;SCP2;ATG2A;C19ORF12;WIPI1;ULK1;WD... |
28 | WikiPathways_2024_Human | Arsenic Metabolism And Reactive Oxygen Species... | 2.379597e-04 | 5.948993e-03 | 0 | 0 | 43.391140 | 362.03000 | COA3;CAT;ATP1A1;SOD1 |
29 | WikiPathways_2024_Human | Spinal Cord Injury WP2431 | 4.160071e-04 | 1.005350e-02 | 0 | 0 | 2.517483 | 19.59812 | RB1;RTN4R;EPHA4;EGR1;SEMA6A;GADD45A;BDNF;MIF;F... |
30 | WikiPathways_2024_Human | Nucleotide Excision Repair WP4753 | 4.480719e-04 | 1.047910e-02 | 0 | 0 | 3.988624 | 30.75451 | RFC5;RFC3;PCNA;RFC4;RFC2;POLE2;RPA3;POLE3;RPA1... |
31 | WikiPathways_2024_Human | NF1 Copy Number Variation Syndrome WP5366 | 4.694854e-04 | 1.063678e-02 | 0 | 0 | 2.725049 | 20.88443 | RTN4R;RFC5;RFC3;RFC4;PCNA;MAP3K1;RFC2;LIMK1;SU... |
32 | WikiPathways_2024_Human | Sterol Regulatory Element Binding Proteins SRE... | 5.435340e-04 | 1.159006e-02 | 0 | 0 | 3.025190 | 22.74162 | SREBF1;FDPS;HMGCS1;DBI;ACACA;MTOR;ACLY;SQLE;SC... |
33 | WikiPathways_2024_Human | Cholesterol Metabolism WP5304 | 5.435340e-04 | 1.159006e-02 | 0 | 0 | 3.025190 | 22.74162 | ABCA1;MYLIP;FDPS;HMGCS1;MSMO1;DHCR24;ACAT2;TM7... |
34 | WikiPathways_2024_Human | Trans Sulfuration One Carbon Metabolism And Re... | 1.289628e-03 | 2.671373e-02 | 0 | 0 | 3.009676 | 20.02458 | DMGDH;GPX3;SHMT1;GSS;GSR;TYMS;SOD1;MTHFD1;PSAT... |
35 | WikiPathways_2024_Human | SREBF And miR33 In Cholesterol And Lipid Homeo... | 1.382343e-03 | 2.783886e-02 | 0 | 0 | 6.513569 | 42.88518 | ABCA1;SREBF1;HMGCS1;SCD;LDLR;MTOR |
36 | WikiPathways_2024_Human | Cholesterol Biosynthesis With Skeletal Dysplas... | 1.449333e-03 | 2.791906e-02 | 0 | 0 | 14.462000 | 94.53306 | EBP;SC5D;DHCR24;DHCR7 |
37 | WikiPathways_2024_Human | Metabolic Reprogramming In Colon Cancer WP4290 | 1.463344e-03 | 2.791906e-02 | 0 | 0 | 3.623684 | 23.65190 | GPI;ACLY;PKM;PSAT1;IDH2;PGK1;PYCR1;SUCLG2;PGD;GLS |
38 | WikiPathways_2024_Human | 7Q11 23 Copy Number Variation Syndrome WP4932 | 1.505861e-03 | 2.799357e-02 | 0 | 0 | 2.420969 | 15.73240 | RB1;RFC5;HDAC2;PCNA;RFC2;LIMK1;ATP5MC2;ATP5MC3... |
39 | WikiPathways_2024_Human | HDAC6 Interactions In The Central Nervous Syst... | 1.689985e-03 | 3.063098e-02 | 0 | 0 | 2.326163 | 14.84798 | HSPA8;HSP90AA1;BDNF;CSNK2A2;PXN;HTT;MIF;EGFR;H... |
40 | WikiPathways_2024_Human | Ciliary Landscape WP4352 | 2.751952e-03 | 4.802548e-02 | 0 | 0 | 1.839842 | 10.84669 | RB1;HDAC2;RALB;MCM7;DYNLT2B;VPS4A;SMC4;DNPEP;E... |
41 | WikiPathways_2024_Human | Fluoropyrimidine Activity WP1601 | 2.782166e-03 | 4.802548e-02 | 0 | 0 | 3.949892 | 23.24324 | ABCC3;RRM1;RRM2;GGH;UPP1;TK1;TYMS;CES2 |
dropped_datafileORA_df6=filtereddatafileORA_6.drop(['Adjusted P-value','Odds Ratio','Old P-value','Gene_set','P-value','Old adjusted P-value','Combined Score'],axis=1)
droppeddatafileORAdf6=dropped_datafileORA_df6.copy()
droppeddatafileORAdf6['Genes']= droppeddatafileORAdf6['Genes'].replace({';':','},regex=True)
df6_ORApathwaytable=droppeddatafileORAdf6.copy()
df6_ORApathwaytable['Genes'] = df6_ORApathwaytable['Genes'].astype(str)
df6_ORApathwaytable['Genes'] = df6_ORApathwaytable['Genes'].str.split(',')
exploded_df6_ORApathwaytable = df6_ORApathwaytable.explode('Genes', ignore_index=True)
Section 10.5.3 For loop to get overlapping genes
In this section, the number of overlapping genes between the significant enrichment score-based Key Events and enriched pathways from ORA are calculated.
Step 100. Next, two sets are created by converting the significant KE table and ORA pathway table into dictionaries where the values of the genes are grouped together per key. This is followed by running a for loop to calculate the number of overlapping genes along with the symbols.
ORA_gene_sets6 = exploded_df6_ORApathwaytable.groupby('Term')['Genes'].apply(set).to_dict()
SignificantKE_gene_sets6= significantKEIDgenetable6.groupby('KEID')['gene'].apply(set).to_dict()
overlapping_genes_betweenORA_and_significantKEs6 = {}
for term, ORA_genes in ORA_gene_sets6.items():
for KEID, KEID_genes in SignificantKE_gene_sets6.items():
overlap = ORA_genes.intersection(KEID_genes)
print(f"{term} x {KEID}: {len(overlap)} overlaps")
overlapping_genes_betweenORA_and_significantKEs6[(term, KEID)] = {
'overlapping genes': overlap,
'number of genes that overlap': len(overlap)
}
if overlapping_genes_betweenORA_and_significantKEs6:
print("\ntitle of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:")
for (term, KEID), result in overlapping_genes_betweenORA_and_significantKEs6.items():
print(f"Term: {term}, KEID: {KEID}, Title of overlapping gene(s): {result['overlapping genes']}, number: {result['number of genes that overlap']}")
else:
print("No overlapping genes")
7Q11 23 Copy Number Variation Syndrome WP4932 x https://identifiers.org/aop.events/1585: 0 overlaps
7Q11 23 Copy Number Variation Syndrome WP4932 x https://identifiers.org/aop.events/1815: 0 overlaps
7Q11 23 Copy Number Variation Syndrome WP4932 x https://identifiers.org/aop.events/2013: 0 overlaps
7Q11 23 Copy Number Variation Syndrome WP4932 x https://identifiers.org/aop.events/68: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1585: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1815: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2013: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/68: 3 overlaps
Arsenic Metabolism And Reactive Oxygen Species Generation WP5233 x https://identifiers.org/aop.events/1585: 0 overlaps
Arsenic Metabolism And Reactive Oxygen Species Generation WP5233 x https://identifiers.org/aop.events/1815: 0 overlaps
Arsenic Metabolism And Reactive Oxygen Species Generation WP5233 x https://identifiers.org/aop.events/2013: 0 overlaps
Arsenic Metabolism And Reactive Oxygen Species Generation WP5233 x https://identifiers.org/aop.events/68: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1585: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1815: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/2013: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Biosynthesis Pathway In Hepatocytes WP5329 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Biosynthesis Pathway In Hepatocytes WP5329 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Biosynthesis Pathway In Hepatocytes WP5329 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Biosynthesis Pathway In Hepatocytes WP5329 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Biosynthesis Pathway WP197 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Biosynthesis With Skeletal Dysplasias WP4804 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Biosynthesis With Skeletal Dysplasias WP4804 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Biosynthesis With Skeletal Dysplasias WP4804 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Biosynthesis With Skeletal Dysplasias WP4804 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1585: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/2013: 0 overlaps
Cholesterol Synthesis Disorders WP5193 x https://identifiers.org/aop.events/68: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1585: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/1815: 0 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/2013: 1 overlaps
Ciliary Landscape WP4352 x https://identifiers.org/aop.events/68: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1585: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/1815: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/2013: 0 overlaps
Clear Cell Renal Cell Carcinoma Pathways WP4018 x https://identifiers.org/aop.events/68: 2 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1585: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/1815: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/2013: 0 overlaps
Cohesin Complex Cornelia De Lange Syndrome WP5117 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1585: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/1815: 1 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Damage Response WP707 x https://identifiers.org/aop.events/68: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Mismatch Repair WP531 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Repair Pathways Full Network WP4946 x https://identifiers.org/aop.events/68: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1585: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/1815: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/2013: 0 overlaps
DNA Replication WP466 x https://identifiers.org/aop.events/68: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1585: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/1815: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/2013: 0 overlaps
Enterocyte Cholesterol Metabolism WP5333 x https://identifiers.org/aop.events/68: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1585: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/1815: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/2013: 0 overlaps
Fatty Acid Biosynthesis WP357 x https://identifiers.org/aop.events/68: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1585: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1815: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/2013: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/68: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1585: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/1815: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/2013: 0 overlaps
G1 To S Cell Cycle Control WP45 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/2013: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/68: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1585: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/2013: 0 overlaps
Gastric Cancer Network 2 WP2363 x https://identifiers.org/aop.events/68: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1585: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/1815: 0 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/2013: 1 overlaps
HDAC6 Interactions In The Central Nervous System WP5426 x https://identifiers.org/aop.events/68: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1585: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/1815: 0 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/2013: 1 overlaps
Integrated Cancer Pathway WP1971 x https://identifiers.org/aop.events/68: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1585: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/2013: 0 overlaps
Metabolic Reprogramming In Colon Cancer WP4290 x https://identifiers.org/aop.events/68: 4 overlaps
N Glycan Biosynthesis WP5153 x https://identifiers.org/aop.events/1585: 0 overlaps
N Glycan Biosynthesis WP5153 x https://identifiers.org/aop.events/1815: 0 overlaps
N Glycan Biosynthesis WP5153 x https://identifiers.org/aop.events/2013: 0 overlaps
N Glycan Biosynthesis WP5153 x https://identifiers.org/aop.events/68: 1 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1585: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1815: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/2013: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/68: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1585: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1815: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/2013: 4 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/68: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1585: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/1815: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/2013: 0 overlaps
Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577 x https://identifiers.org/aop.events/68: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1585: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/1815: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/2013: 0 overlaps
Nucleotide Excision Repair WP4753 x https://identifiers.org/aop.events/68: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1585: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1815: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/2013: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/68: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1585: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1815: 1 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/2013: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/68: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1585: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1815: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/2013: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/68: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1585: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1815: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/2013: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/68: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1585: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/1815: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/2013: 0 overlaps
SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011 x https://identifiers.org/aop.events/68: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1585: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1815: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/2013: 1 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/68: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1585: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/1815: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/2013: 0 overlaps
Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982 x https://identifiers.org/aop.events/68: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1585: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1815: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/2013: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/68: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1585: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1815: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2013: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/68: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1585: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/1815: 1 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/2013: 0 overlaps
miRNA Regulation Of DNA Damage Response WP1530 x https://identifiers.org/aop.events/68: 0 overlaps
title of Overlapping Gene(s) and the number between enriched pathways from ORA and significant KEs:
Term: 7Q11 23 Copy Number Variation Syndrome WP4932, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: 7Q11 23 Copy Number Variation Syndrome WP4932, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: 7Q11 23 Copy Number Variation Syndrome WP4932, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: 7Q11 23 Copy Number Variation Syndrome WP4932, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PYCR1', 'P4HA2', 'GLS'}, number: 3
Term: Arsenic Metabolism And Reactive Oxygen Species Generation WP5233, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Arsenic Metabolism And Reactive Oxygen Species Generation WP5233, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Arsenic Metabolism And Reactive Oxygen Species Generation WP5233, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Arsenic Metabolism And Reactive Oxygen Species Generation WP5233, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway In Hepatocytes WP5329, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway In Hepatocytes WP5329, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway In Hepatocytes WP5329, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway In Hepatocytes WP5329, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis Pathway WP197, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis With Skeletal Dysplasias WP4804, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis With Skeletal Dysplasias WP4804, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis With Skeletal Dysplasias WP4804, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Biosynthesis With Skeletal Dysplasias WP4804, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metab With Bloch And Kandutsch Russell Pathways WP4718, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Synthesis Disorders WP5193, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'CALM1'}, number: 1
Term: Ciliary Landscape WP4352, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Clear Cell Renal Cell Carcinoma Pathways WP4018, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1', 'GPI'}, number: 2
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Cohesin Complex Cornelia De Lange Syndrome WP5117, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response WP707, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Mismatch Repair WP531, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Repair Pathways Full Network WP4946, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: DNA Replication WP466, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Enterocyte Cholesterol Metabolism WP5333, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Biosynthesis WP357, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: G1 To S Cell Cycle Control WP45, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Gastric Cancer Network 2 WP2363, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'BIRC5'}, number: 1
Term: HDAC6 Interactions In The Central Nervous System WP5426, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'STAT1'}, number: 1
Term: Integrated Cancer Pathway WP1971, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Reprogramming In Colon Cancer WP4290, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1', 'GLS', 'GPI', 'PYCR1'}, number: 4
Term: N Glycan Biosynthesis WP5153, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: N Glycan Biosynthesis WP5153, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: N Glycan Biosynthesis WP5153, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: N Glycan Biosynthesis WP5153, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GPI'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'STAT1', 'BIRC5', 'CEBPB', 'FOS'}, number: 4
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Neurodegeneration W Brain Fe Accumulation NBIA Subtypes Pathway WP4577, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Nucleotide Excision Repair WP4753, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'FOS'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: SREBF And miR33 In Cholesterol And Lipid Homeostasis WP2011, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'FOS'}, number: 1
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Sterol Regulatory Element Binding Proteins SREBP Signaling WP1982, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PSAT1'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): {'BIRC5', 'STAT1', 'RPS6KB1'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1585, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'TNFRSF10B'}, number: 1
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/2013, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of DNA Damage Response WP1530, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Section 10.5.4 Tabulation gene overlap
In this section, a table is created that contains the number of overlapping genes and number of total genes in preparation for section 10.5.5.
final_geneoverlaptable_C6=pd.DataFrame.from_dict(overlapping_genes_betweenORA_and_significantKEs6,orient='index')
Section 10.5.5 Percent overlap calculation
In this section, the percent overlap for the genesets are calculated.
Step 101. Lastly, the percent overlap is calculated and add the result as a column to the dataframe. This is first done by running a for loop to calculate the total number of genes belonging to the enriched pathways of ORA.
variable_count6= {}
for index, row in exploded_df6_ORApathwaytable.iterrows():
unique_KE = row['Term']
gene_expression_value = row['Genes']
if unique_KE not in variable_count6:
variable_count6[unique_KE] = 1
else:
variable_count6[unique_KE] += 1
print("The total number of genes: ")
Step 102. The result is converted into a dataframe and added to the final dataframe. This is followed by some data manipulation prior to calculation of gene set overlap.
variable_count_df6=pd.DataFrame.from_dict(variable_count6,orient='index')
reset_variable_count_df6 = variable_count_df6.reset_index()
reset_variable_count_df6.columns = ['Term', 'Total number of genes']
Genesetoverlaptable_C6=final_geneoverlaptable_C6.reset_index(level=[1])
Genesetoverlaptable_C6.reset_index(inplace=True)
Genesetoverlaptable_C6.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C6=pd.merge(reset_variable_count_df6,Genesetoverlaptable_C6, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_C6.loc[:,'Percent geneset overlap']= tabulation_C6.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_C6
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Retinoblastoma Gene In Cancer WP2446 | 45 | https://identifiers.org/aop.events/1585 | {} | 0 | 0.0 |
1 | Retinoblastoma Gene In Cancer WP2446 | 45 | https://identifiers.org/aop.events/1815 | {} | 0 | 0.0 |
2 | Retinoblastoma Gene In Cancer WP2446 | 45 | https://identifiers.org/aop.events/2013 | {} | 0 | 0.0 |
3 | Retinoblastoma Gene In Cancer WP2446 | 45 | https://identifiers.org/aop.events/68 | {} | 0 | 0.0 |
4 | DNA Replication WP466 | 25 | https://identifiers.org/aop.events/1585 | {} | 0 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
163 | Ciliary Landscape WP4352 | 30 | https://identifiers.org/aop.events/68 | {} | 0 | 0.0 |
164 | Fluoropyrimidine Activity WP1601 | 8 | https://identifiers.org/aop.events/1585 | {} | 0 | 0.0 |
165 | Fluoropyrimidine Activity WP1601 | 8 | https://identifiers.org/aop.events/1815 | {} | 0 | 0.0 |
166 | Fluoropyrimidine Activity WP1601 | 8 | https://identifiers.org/aop.events/2013 | {} | 0 | 0.0 |
167 | Fluoropyrimidine Activity WP1601 | 8 | https://identifiers.org/aop.events/68 | {} | 0 | 0.0 |
168 rows × 6 columns
Section 11. Metadata
Step 103. At last, the metadata belonging to this Jupyter Notebook is displayed which contains the version numbers of packages and system-set-up for interested users. This requires the usage of packages:Watermark and print_versions.
%load_ext watermark
!pip install print-versions
Requirement already satisfied: print-versions in c:\users\shaki\anaconda3\lib\site-packages (0.1.0)
%watermark
Last updated: 2025-06-03T08:30:26.690544+02:00
Python implementation: CPython
Python version : 3.12.3
IPython version : 8.25.0
Compiler : MSC v.1938 64 bit (AMD64)
OS : Windows
Release : 11
Machine : AMD64
Processor : Intel64 Family 6 Model 140 Stepping 1, GenuineIntel
CPU cores : 8
Architecture: 64bit
from print_versions import print_versions
print_versions(globals())
pandas==2.2.3
json==2.0.9
ipykernel==6.28.0
numpy==1.26.4
scipy==1.13.1
py4cytoscape==1.9.0